Merge branch 'master' into 'master'

Update Item bean

Closes product-iots#595

See merge request entgra/carbon-device-mgt!589
This commit is contained in:
Dharmakeerthi Lasantha 2020-07-07 14:52:46 +00:00
commit 338413bf1b

View File

@ -44,6 +44,7 @@ public class Item {
private Text text;
private InputList inputList;
private String nullableValue;
private String divider;
@XmlElement(name = "Label")
public String getLabel() {
@ -197,4 +198,13 @@ public class Item {
public void setNullableValue(String nullableValue) {
this.nullableValue = nullableValue;
}
@XmlElement(name = "Divider")
public String getDivider() {
return divider;
}
public void setDivider(String divider) {
this.divider = divider;
}
}