package eu.eudat.models.data.dmp; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement(name = "extraField") public class ExtraFieldsImportModels { private String id; private String label; private String value; @XmlElement(name = "id") public String getId() { return id; } public void setId(String id) { this.id = id; } @XmlElement(name = "label") public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } @XmlElement(name = "value") public String getValue() { return value; } public void setValue(String value) { this.value = value; } }