package eu.eudat.commons.types.descriptiontemplate.importexport; import eu.eudat.model.persist.descriptiontemplatedefinition.RulePersist; import jakarta.xml.bind.annotation.*; @XmlAccessorType(XmlAccessType.FIELD) public class RuleImportExport { @XmlAttribute(name="target") private String target; @XmlAttribute(name="value") private String value; public String getTarget() { return target; } public void setTarget(String target) { this.target = target; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } }