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