dnet-hadoop/dhp-workflows/dhp-graph-provision-scholex.../src/main/java/eu/dnetlib/dhp/provision/scholix/summary/TypedIdentifier.java

34 lines
503 B
Java
Raw Normal View History

2020-02-26 10:51:35 +01:00
package eu.dnetlib.dhp.provision.scholix.summary;
2020-02-24 10:15:55 +01:00
import java.io.Serializable;
public class TypedIdentifier implements Serializable {
private String id;
private String type;
2020-02-24 10:15:55 +01:00
public TypedIdentifier() {
}
2020-02-24 10:15:55 +01:00
public TypedIdentifier(String id, String type) {
this.id = id;
this.type = type;
}
2020-02-24 10:15:55 +01:00
public String getId() {
return id;
}
2020-02-24 10:15:55 +01:00
public void setId(String id) {
this.id = id;
}
2020-02-24 10:15:55 +01:00
public String getType() {
return type;
}
2020-02-24 10:15:55 +01:00
public void setType(String type) {
this.type = type;
}
}