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 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() {
|
||||||
|
|
Loading…
Reference in New Issue