argos/dmp-backend/core/src/main/java/eu/eudat/commons/types/referencetype/ReferenceTypeStaticOptionEn...

30 lines
618 B
Java
Raw Normal View History

2023-11-15 15:09:24 +01:00
package eu.eudat.commons.types.referencetype;
2024-02-12 16:43:41 +01:00
import eu.eudat.service.remotefetcher.config.entities.StaticOption;
2023-11-15 15:09:24 +01:00
import jakarta.xml.bind.annotation.XmlElement;
2024-02-12 16:43:41 +01:00
public class ReferenceTypeStaticOptionEntity implements StaticOption {
2023-11-15 15:09:24 +01:00
private String code;
private String value;
public String getCode() {
return code;
}
@XmlElement(name = "code")
public void setCode(String code) {
this.code = code;
}
public String getValue() {
return value;
}
@XmlElement(name = "value")
public void setValue(String value) {
this.value = value;
}
}