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

23 lines
546 B
Java
Raw Normal View History

2023-11-02 17:37:12 +01:00
package eu.eudat.commons.types.descriptiontemplate.importexport.fielddata;
import eu.eudat.commons.enums.FieldType;
import eu.eudat.commons.types.xml.XmlSerializable;
2024-01-30 15:31:03 +01:00
import jakarta.xml.bind.annotation.XmlAttribute;
2023-11-02 17:37:12 +01:00
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import java.util.Map;
public abstract class BaseFieldDataImportExport {
2024-01-30 15:31:03 +01:00
@XmlAttribute(name = "label")
2023-11-02 17:37:12 +01:00
private String label;
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
}