mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Update Select bean
This commit is contained in:
parent
d89277a8e7
commit
90c45dc387
@ -27,6 +27,7 @@ public class Select {
|
|||||||
|
|
||||||
private String valueType;
|
private String valueType;
|
||||||
private List<Option> options;
|
private List<Option> options;
|
||||||
|
private String mode;
|
||||||
|
|
||||||
@XmlElement(name = "ValueType", required = true)
|
@XmlElement(name = "ValueType", required = true)
|
||||||
public String getValueType() {
|
public String getValueType() {
|
||||||
@ -46,4 +47,13 @@ public class Select {
|
|||||||
public void setOptions(List<Option> options) {
|
public void setOptions(List<Option> options) {
|
||||||
this.options = options;
|
this.options = options;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@XmlElement(name = "Mode")
|
||||||
|
public String getMode() {
|
||||||
|
return mode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMode(String mode) {
|
||||||
|
this.mode = mode;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user