package eu.dnetlib.dhp.schema.sx.scholix; import java.io.Serializable; import java.util.List; public class ScholixResource implements Serializable { private List identifier; private String dnetIdentifier; private String objectType; private String objectSubType; private String title; private List creator; private String publicationDate; private List publisher; private List collectedFrom; public List getIdentifier() { return identifier; } public void setIdentifier(List identifier) { this.identifier = identifier; } public String getDnetIdentifier() { return dnetIdentifier; } public void setDnetIdentifier(String dnetIdentifier) { this.dnetIdentifier = dnetIdentifier; } public String getObjectType() { return objectType; } public void setObjectType(String objectType) { this.objectType = objectType; } public String getObjectSubType() { return objectSubType; } public void setObjectSubType(String objectSubType) { this.objectSubType = objectSubType; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public List getCreator() { return creator; } public void setCreator(List creator) { this.creator = creator; } public String getPublicationDate() { return publicationDate; } public void setPublicationDate(String publicationDate) { this.publicationDate = publicationDate; } public List getPublisher() { return publisher; } public void setPublisher(List publisher) { this.publisher = publisher; } public List getCollectedFrom() { return collectedFrom; } public void setCollectedFrom(List collectedFrom) { this.collectedFrom = collectedFrom; } }