Author PIDs include also provenance information

This commit is contained in:
Claudio Atzori 2019-11-07 17:38:37 +01:00
parent 5308f05a02
commit 2243089b78
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}