package eu.dnetlib.dhp.schema.sx.scholix; import java.util.List; public class ScholixFlat { private String identifier; private String relationType; private String sourceId; private String sourceType; private String sourceSubType; private List sourcePid; private List sourcePidType; private List sourcePublisher; private String targetId; private String targetType; private String targetSubType; private List targetPid; private List targetPidType; private List targetPublisher; private List linkProviders; private String publicationDate; private String blob; public String getIdentifier() { return identifier; } public void setIdentifier(String identifier) { this.identifier = identifier; } public String getRelationType() { return relationType; } public void setRelationType(String relationType) { this.relationType = relationType; } public String getSourceId() { return sourceId; } public void setSourceId(String sourceId) { this.sourceId = sourceId; } public String getSourceType() { return sourceType; } public void setSourceType(String sourceType) { this.sourceType = sourceType; } public String getSourceSubType() { return sourceSubType; } public void setSourceSubType(String sourceSubType) { this.sourceSubType = sourceSubType; } public List getSourcePid() { return sourcePid; } public void setSourcePid(List sourcePid) { this.sourcePid = sourcePid; } public List getSourcePidType() { return sourcePidType; } public void setSourcePidType(List sourcePidType) { this.sourcePidType = sourcePidType; } public List getSourcePublisher() { return sourcePublisher; } public void setSourcePublisher(List sourcePublisher) { this.sourcePublisher = sourcePublisher; } public String getTargetId() { return targetId; } public void setTargetId(String targetId) { this.targetId = targetId; } public String getTargetType() { return targetType; } public void setTargetType(String targetType) { this.targetType = targetType; } public String getTargetSubType() { return targetSubType; } public void setTargetSubType(String targetSubType) { this.targetSubType = targetSubType; } public List getTargetPid() { return targetPid; } public void setTargetPid(List targetPid) { this.targetPid = targetPid; } public List getTargetPidType() { return targetPidType; } public void setTargetPidType(List targetPidType) { this.targetPidType = targetPidType; } public List getTargetPublisher() { return targetPublisher; } public void setTargetPublisher(List targetPublisher) { this.targetPublisher = targetPublisher; } public List getLinkProviders() { return linkProviders; } public void setLinkProviders(List linkProviders) { this.linkProviders = linkProviders; } public String getPublicationDate() { return publicationDate; } public void setPublicationDate(String publicationDate) { this.publicationDate = publicationDate; } public String getBlob() { return blob; } public void setBlob(String blob) { this.blob = blob; } }