package eu.eudat.commons.types.descriptiontemplate.importexport; import jakarta.xml.bind.annotation.XmlAccessType; import jakarta.xml.bind.annotation.XmlAccessorType; import jakarta.xml.bind.annotation.XmlAttribute; @XmlAccessorType(XmlAccessType.FIELD) public class ExternalIdentifierImportExport { @XmlAttribute(name="identifier") private String identifier; @XmlAttribute(name="type") private String type; public String getIdentifier() { return identifier; } public void setIdentifier(String identifier) { this.identifier = identifier; } public String getType() { return type; } public void setType(String type) { this.type = type; } }