forked from D-Net/dnet-hadoop
changed the field pid: left only if the author as orcid
This commit is contained in:
parent
da9b012c15
commit
34973615ec
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue