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

20 lines
560 B
Java

package eu.eudat.models.data.dmp;
import java.util.UUID;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "profile")
public class AssociatedProfileImportModels {
private UUID id;
private String label;
@XmlElement(name = "profileId")
public UUID getId() { return id; }
public void setId(UUID id) { this.id = id; }
@XmlElement(name = "profilelabel")
public String getLabel() { return label; }
public void setLabel(String label) { this.label = label; }
}