added support class to store the couple organizationId representativeId gaot from sql query on hive

This commit is contained in:
Miriam Baglioni 2020-07-30 16:32:04 +02:00
parent cf6d80b2ab
commit ff7d05abb4
1 changed files with 25 additions and 0 deletions

View File

@ -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;
}
}