Author PIDs include also provenance information
This commit is contained in:
parent
5308f05a02
commit
2243089b78
|
@ -13,7 +13,7 @@ public class Author implements Serializable {
|
|||
|
||||
private Integer rank;
|
||||
|
||||
private List<KeyValue> pid;
|
||||
private List<StructuredProperty> pid;
|
||||
|
||||
private List<Field<String>> affiliation;
|
||||
|
||||
|
@ -49,11 +49,11 @@ public class Author implements Serializable {
|
|||
this.rank = rank;
|
||||
}
|
||||
|
||||
public List<KeyValue> getPid() {
|
||||
public List<StructuredProperty> getPid() {
|
||||
return pid;
|
||||
}
|
||||
|
||||
public void setPid(List<KeyValue> pid) {
|
||||
public void setPid(List<StructuredProperty> pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue