mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Update Item bean
This commit is contained in:
parent
b3f395b284
commit
b3278d010f
@ -44,6 +44,7 @@ public class Item {
|
|||||||
private Text text;
|
private Text text;
|
||||||
private InputList inputList;
|
private InputList inputList;
|
||||||
private String nullableValue;
|
private String nullableValue;
|
||||||
|
private String divider;
|
||||||
|
|
||||||
@XmlElement(name = "Label")
|
@XmlElement(name = "Label")
|
||||||
public String getLabel() {
|
public String getLabel() {
|
||||||
@ -197,4 +198,13 @@ public class Item {
|
|||||||
public void setNullableValue(String nullableValue) {
|
public void setNullableValue(String nullableValue) {
|
||||||
this.nullableValue = nullableValue;
|
this.nullableValue = nullableValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@XmlElement(name = "Divider")
|
||||||
|
public String getDivider() {
|
||||||
|
return divider;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDivider(String divider) {
|
||||||
|
this.divider = divider;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user