package eu.eudat.logic.utilities.documents.xml.dmpXml.dmpProfileModel; import jakarta.xml.bind.annotation.XmlAttribute; import jakarta.xml.bind.annotation.XmlRootElement; @XmlRootElement(name = "type") public class DMPProfileType { private int type; @XmlAttribute(name = "type") public int getType() { return type; } public void setType(int type) { this.type = type; } public eu.eudat.models.data.entities.xmlmodels.dmpprofiledefinition.types.DMPProfileType toDmpProfileCompositeModel() { return eu.eudat.models.data.entities.xmlmodels.dmpprofiledefinition.types.DMPProfileType.fromInteger(type); } }