package eu.eudat.file.transformer.models.descriptiontemplate.definition.fielddata; import eu.eudat.file.transformer.enums.FieldType; public abstract class BaseFieldDataFileTransformerModel { private String label; private FieldType fieldType; private String value; public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } public FieldType getFieldType() { return fieldType; } public void setFieldType(FieldType fieldType) { this.fieldType = fieldType; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } }