argos/backend/core/src/main/java/org/opencdmp/commons/types/dmp/importexport/DmpBlueprintValueImportExpo...

36 lines
773 B
Java

package org.opencdmp.commons.types.dmp.importexport;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import java.util.UUID;
@XmlAccessorType(XmlAccessType.FIELD)
public class DmpBlueprintValueImportExport {
@XmlElement(name = "fieldId")
private UUID fieldId;
@XmlElement(name = "value")
private String value;
public UUID getFieldId() {
return this.fieldId;
}
public void setFieldId(UUID fieldId) {
this.fieldId = fieldId;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}