package eu.eudat.commons.types.description; import java.time.Instant; import java.util.List; public class FieldEntity { private String textValue; private List textListValue; private Instant dateValue; private ExternalIdentifierEntity externalIdentifier; public String getTextValue() { return textValue; } public void setTextValue(String textValue) { this.textValue = textValue; } public List getTextListValue() { return textListValue; } public void setTextListValue(List textListValue) { this.textListValue = textListValue; } public Instant getDateValue() { return dateValue; } public void setDateValue(Instant dateValue) { this.dateValue = dateValue; } public ExternalIdentifierEntity getExternalIdentifier() { return externalIdentifier; } public void setExternalIdentifier(ExternalIdentifierEntity externalIdentifier) { this.externalIdentifier = externalIdentifier; } }