package eu.dnetlib.dhp.schema.dli; import java.io.Serializable; import java.util.List; public class Entity implements Serializable { private String identifier; private List pid; private List title; private List date; private String typology; private List authors; private List subject; private String description; private String completionStatus; private List collectedFrom; private List publisher; public String getIdentifier() { return identifier; } public void setIdentifier(String identifier) { this.identifier = identifier; } public List getPid() { return pid; } public void setPid(List pid) { this.pid = pid; } public List getTitle() { return title; } public void setTitle(List title) { this.title = title; } public List getDate() { return date; } public void setDate(List date) { this.date = date; } public String getTypology() { return typology; } public void setTypology(String typology) { this.typology = typology; } public List getAuthors() { return authors; } public void setAuthors(List authors) { this.authors = authors; } public List getSubject() { return subject; } public void setSubject(List subject) { this.subject = subject; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public List getCollectedFrom() { return collectedFrom; } public void setCollectedFrom(List collectedFrom) { this.collectedFrom = collectedFrom; } public List getPublisher() { return publisher; } public void setPublisher(List publisher) { this.publisher = publisher; } public String getCompletionStatus() { return completionStatus; } public void setCompletionStatus(String completionStatus) { this.completionStatus = completionStatus; } }