argos/dmp-backend/core/src/main/java/eu/eudat/commons/types/descriptiontemplate/fielddata/ExternalDatasetDataEntity.java

28 lines
866 B
Java
Raw Normal View History

2023-10-27 17:46:34 +02:00
package eu.eudat.commons.types.descriptiontemplate.fielddata;
2023-10-27 17:46:34 +02:00
import eu.eudat.commons.enums.FieldDataExternalDatasetType;
2023-10-30 14:07:59 +01:00
import eu.eudat.commons.enums.FieldType;
2024-01-30 15:31:03 +01:00
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import java.util.HashMap;
import java.util.Map;
2024-01-30 15:31:03 +01:00
@XmlAccessorType(XmlAccessType.FIELD)
2024-01-31 09:44:48 +01:00
public class ExternalDatasetDataEntity extends LabelAndMultiplicityDataEntity {
2024-01-31 13:33:24 +01:00
public static final String XmlElementName = "externalDatasetsData";
2024-01-30 15:31:03 +01:00
@XmlAttribute(name="type")
2023-10-27 17:46:34 +02:00
private FieldDataExternalDatasetType type;
2023-10-27 17:46:34 +02:00
public FieldDataExternalDatasetType getType() {
2021-06-22 17:29:58 +02:00
return type;
}
2023-10-27 17:46:34 +02:00
public void setType(FieldDataExternalDatasetType type) {
2021-06-22 17:29:58 +02:00
this.type = type;
}
}