argos/dmp-backend/web/src/main/java/eu/eudat/logic/proxy/config/entities/PrefillingConfig.java

42 lines
1.0 KiB
Java
Raw Normal View History

2021-12-10 14:37:39 +01:00
package eu.eudat.logic.proxy.config.entities;
2022-02-22 14:53:25 +01:00
import javax.xml.bind.annotation.XmlAttribute;
2021-12-10 14:37:39 +01:00
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "config")
public class PrefillingConfig {
private PrefillingSearch prefillingSearch;
private PrefillingGet prefillingGet;
2022-02-22 14:53:25 +01:00
private String type;
2021-12-10 14:37:39 +01:00
public PrefillingSearch getPrefillingSearch() {
return prefillingSearch;
}
@XmlElement(name = "prefillingSearch")
public void setPrefillingSearch(PrefillingSearch prefillingSearch) {
this.prefillingSearch = prefillingSearch;
}
public PrefillingGet getPrefillingGet() {
return prefillingGet;
}
@XmlElement(name = "prefillingGet")
public void setPrefillingGet(PrefillingGet prefillingGet) {
this.prefillingGet = prefillingGet;
}
2022-02-22 14:53:25 +01:00
@XmlAttribute(name = "type")
public void setType(String type) {
this.type = type;
}
public String getType(){
return type;
}
2021-12-10 14:37:39 +01:00
}