changed the field pid: left only if the author as orcid

This commit is contained in:
Miriam Baglioni 2020-08-07 15:28:52 +02:00
parent da9b012c15
commit 34973615ec
1 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ public class Author implements Serializable {
private Integer rank;
private List<Pid> pids;
private Pid pid;
private List<String> affiliation;
@ -50,12 +50,12 @@ public class Author implements Serializable {
this.rank = rank;
}
public List<Pid> getPids() {
return pids;
public Pid getPid() {
return pid;
}
public void setPids(List<Pid> pids) {
this.pids = pids;
public void setPid(Pid pid) {
this.pid = pid;
}
public List<String> getAffiliation() {