dnet-hadoop/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/bipfinder/PreparedResult.java

29 lines
511 B
Java
Raw Normal View History

2020-12-01 14:31:34 +01:00
package eu.dnetlib.dhp.actionmanager.bipfinder;
import java.io.Serializable;
2020-12-01 18:36:29 +01:00
/**
* Subset of the information of the generic results that are needed to create the atomic action
*/
public class PreparedResult implements Serializable {
2020-12-01 14:31:34 +01:00
private String id; // openaire id
private String value; // doi
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 String getValue() {
return value;
}
2020-12-01 14:31:34 +01:00
public void setValue(String value) {
this.value = value;
}
}