removed person Pid type, relying on the List of StructuredProperty defined in the common OafEntity superclass

This commit is contained in:
Claudio Atzori 2024-07-29 10:18:49 +02:00
parent 0720af9c2c
commit f6063714cc
1 changed files with 0 additions and 31 deletions

View File

@ -1,31 +0,0 @@
package eu.dnetlib.dhp.schema.oaf;
import java.io.Serializable;
public class Pid implements Serializable {
private String schema;
private String value;
public String getSchema() {
return schema;
}
public void setSchema(String schema) {
this.schema = schema;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public static Pid newInstance(String schema, String value){
Pid pid = new Pid();
pid.schema = schema;
pid.value = value;
return pid;
}
}