[Indicators] chenaged type of indicators according to https://support.openaire.eu/issues/9741
This commit is contained in:
parent
071fc385fc
commit
1bc0d5fb03
|
@ -12,42 +12,16 @@ import com.fasterxml.jackson.annotation.JsonSetter;
|
|||
* @Date 07/11/22
|
||||
*/
|
||||
public class BipIndicators implements Serializable {
|
||||
private Integer citationCount;
|
||||
private Double citationCount;
|
||||
private Double influence;
|
||||
private Double influenceAlt;
|
||||
private Double popularity;
|
||||
private Double popularityAlt;
|
||||
private Double impulse;
|
||||
private String citationClass;
|
||||
private String influenceClass;
|
||||
private String influenceAltClass;
|
||||
private String impulseClass;
|
||||
private String popularityClass;
|
||||
private String popularityAltClass;
|
||||
|
||||
public Double getInfluenceAlt() {
|
||||
return influenceAlt;
|
||||
}
|
||||
|
||||
public void setInfluenceAlt(Double influenceAlt) {
|
||||
this.influenceAlt = influenceAlt;
|
||||
}
|
||||
|
||||
public Double getPopularityAlt() {
|
||||
return popularityAlt;
|
||||
}
|
||||
|
||||
public void setPopularityAlt(Double popularityAlt) {
|
||||
this.popularityAlt = popularityAlt;
|
||||
}
|
||||
|
||||
public String getInfluenceAltClass() {
|
||||
return influenceAltClass;
|
||||
}
|
||||
|
||||
public void setInfluenceAltClass(String influenceAltClass) {
|
||||
this.influenceAltClass = influenceAltClass;
|
||||
}
|
||||
|
||||
public String getPopularityAltClass() {
|
||||
return popularityAltClass;
|
||||
|
@ -65,11 +39,11 @@ public class BipIndicators implements Serializable {
|
|||
this.popularityClass = popularityClass;
|
||||
}
|
||||
|
||||
public Integer getCitationCount() {
|
||||
public Double getCitationCount() {
|
||||
return citationCount;
|
||||
}
|
||||
|
||||
public void setCitationCount(Integer citationCount) {
|
||||
public void setCitationCount(Double citationCount) {
|
||||
this.citationCount = citationCount;
|
||||
}
|
||||
|
||||
|
|
|
@ -8,22 +8,22 @@ import java.io.Serializable;
|
|||
* @Date 07/11/22
|
||||
*/
|
||||
public class UsageCounts implements Serializable {
|
||||
private String downloads;
|
||||
private String views;
|
||||
private Integer downloads;
|
||||
private Integer views;
|
||||
|
||||
public String getDownloads() {
|
||||
public Integer getDownloads() {
|
||||
return downloads;
|
||||
}
|
||||
|
||||
public void setDownloads(String downloads) {
|
||||
public void setDownloads(Integer downloads) {
|
||||
this.downloads = downloads;
|
||||
}
|
||||
|
||||
public String getViews() {
|
||||
public Integer getViews() {
|
||||
return views;
|
||||
}
|
||||
|
||||
public void setViews(String views) {
|
||||
public void setViews(Integer views) {
|
||||
this.views = views;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue