mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge branch 'master' into 'master'
Update Select bean See merge request entgra/carbon-device-mgt!574
This commit is contained in:
commit
f97e3d0ee7
@ -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