package eu.dnetlib.dhp.schema.sx.summary; import java.io.Serializable; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty; import eu.dnetlib.dhp.schema.sx.scholix.ScholixIdentifier; public class ScholixSummary implements Serializable { private String id; private List localIdentifier; private Typology typology; private String subType; private List title; private List author; private List date; private String description; private List subject; private List publisher; private long relatedPublications; private long relatedDatasets; private long relatedUnknown; private List datasources; public String getId() { return id; } public void setId(String id) { this.id = id; } public List getLocalIdentifier() { return localIdentifier; } public void setLocalIdentifier(List localIdentifier) { this.localIdentifier = localIdentifier; } public Typology getTypology() { return typology; } public void setTypology(Typology typology) { this.typology = typology; } public List getTitle() { return title; } public void setTitle(List title) { this.title = title; } public List getAuthor() { return author; } public void setAuthor(List author) { this.author = author; } public List getDate() { return date; } public void setDate(List date) { this.date = date; } @JsonProperty("abstract") public String getDescription() { return description; } @JsonProperty("abstract") public void setDescription(String description) { this.description = description; } public List getSubject() { return subject; } public void setSubject(List subject) { this.subject = subject; } public List getPublisher() { return publisher; } public void setPublisher(List publisher) { this.publisher = publisher; } public long getRelatedPublications() { return relatedPublications; } public void setRelatedPublications(long relatedPublications) { this.relatedPublications = relatedPublications; } public long getRelatedDatasets() { return relatedDatasets; } public void setRelatedDatasets(long relatedDatasets) { this.relatedDatasets = relatedDatasets; } public long getRelatedUnknown() { return relatedUnknown; } public void setRelatedUnknown(long relatedUnknown) { this.relatedUnknown = relatedUnknown; } public List getDatasources() { return datasources; } public void setDatasources(List datasources) { this.datasources = datasources; } public String getSubType() { return subType; } public void setSubType(String subType) { this.subType = subType; } }