forked from D-Net/dnet-hadoop
added support class to store the couple organizationId representativeId gaot from sql query on hive
This commit is contained in:
parent
cf6d80b2ab
commit
ff7d05abb4
|
@ -0,0 +1,25 @@
|
||||||
|
|
||||||
|
package eu.dnetlib.dhp.oa.graph.dump.graph;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
public class MergedRels implements Serializable {
|
||||||
|
private String organizationId;
|
||||||
|
private String representativeId;
|
||||||
|
|
||||||
|
public String getOrganizationId() {
|
||||||
|
return organizationId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setOrganizationId(String organizationId) {
|
||||||
|
this.organizationId = organizationId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRepresentativeId() {
|
||||||
|
return representativeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRepresentativeId(String representativeId) {
|
||||||
|
this.representativeId = representativeId;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue