package eu.eudat.commons.types.descriptiontemplate; import jakarta.xml.bind.annotation.XmlAccessType; import jakarta.xml.bind.annotation.XmlAccessorType; import jakarta.xml.bind.annotation.XmlAttribute; @XmlAccessorType(XmlAccessType.FIELD) public class RuleEntity { @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; } }