package eu.dnetlib.dhp.actionmanager.bipfinder; import java.io.Serializable; import java.util.List; /** * Rewriting of the bipFinder input data by extracting the identifier of the result (doi) */ public class BipScore implements Serializable { private String id; // doi private List scoreList; // unit as given in the inputfile public String getId() { return id; } public void setId(String id) { this.id = id; } public List getScoreList() { return scoreList; } public void setScoreList(List scoreList) { this.scoreList = scoreList; } }