BrBETA_dnet-hadoop/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/bipmodel/Score.java

31 lines
466 B
Java
Raw Normal View History

2020-12-01 14:31:34 +01:00
package eu.dnetlib.dhp.actionmanager.bipmodel;
import java.io.Serializable;
import java.util.List;
2020-12-01 18:36:29 +01:00
/**
* represents the score in the input file
*/
public class Score implements Serializable {
2020-12-01 14:31:34 +01:00
private String id;
private List<KeyValue> unit;
2020-12-01 14:31:34 +01:00
public String getId() {
return id;
}
2020-12-01 14:31:34 +01:00
public void setId(String id) {
this.id = id;
}
2020-12-01 14:31:34 +01:00
public List<KeyValue> getUnit() {
return unit;
}
2020-12-01 14:31:34 +01:00
public void setUnit(List<KeyValue> unit) {
this.unit = unit;
}
}