argos/dmp-backend/web/src/main/java/eu/eudat/models/data/dmp/AssociatedProfileImportMode...

32 lines
910 B
Java
Raw Normal View History

2019-03-05 12:59:34 +01:00
package eu.eudat.models.data.dmp;
import java.util.List;
2019-03-05 12:59:34 +01:00
import java.util.UUID;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
2019-03-05 12:59:34 +01:00
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "profile")
public class AssociatedProfileImportModels {
private UUID id;
private String label;
private List<Integer> section;
2019-03-05 12:59:34 +01:00
@XmlElement(name = "profileId")
public UUID getId() { return id; }
public void setId(UUID id) { this.id = id; }
2023-10-05 08:33:28 +02:00
@XmlElement(name = "profileLabel")
2019-03-05 12:59:34 +01:00
public String getLabel() { return label; }
public void setLabel(String label) { this.label = label; }
@XmlElementWrapper(name="profileInSections")
@XmlElement(name = "section")
public List<Integer> getSection() {
return section;
}
public void setSection(List<Integer> section) {
this.section = section;
}
2019-03-05 12:59:34 +01:00
}