mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Add additional attributes to policy UI beans
This commit is contained in:
parent
d7ccaa559b
commit
301a7e7009
@ -32,6 +32,7 @@ public class Column {
|
||||
private Input input;
|
||||
private Upload upload;
|
||||
private Checkbox checkbox;
|
||||
private boolean isRequired;
|
||||
|
||||
@XmlAttribute(name = "name", required = true)
|
||||
public String getName() { return name; }
|
||||
@ -96,4 +97,13 @@ public class Column {
|
||||
public void setCheckbox(Checkbox checkbox) {
|
||||
this.checkbox = checkbox;
|
||||
}
|
||||
|
||||
@XmlElement(name = "RequiredItem")
|
||||
public boolean isRequired() {
|
||||
return isRequired;
|
||||
}
|
||||
|
||||
public void setRequired(boolean required) {
|
||||
isRequired = required;
|
||||
}
|
||||
}
|
||||
|
||||
@ -31,6 +31,7 @@ public class Item {
|
||||
private String key;
|
||||
private String value;
|
||||
private boolean isRequired;
|
||||
private boolean isNoneEmptyTable;
|
||||
private String subTitle;
|
||||
private List<Condition> conditions;
|
||||
private Checkbox checkbox;
|
||||
@ -103,6 +104,15 @@ public class Item {
|
||||
isRequired = required;
|
||||
}
|
||||
|
||||
@XmlElement(name = "NoneEmptyTable")
|
||||
public boolean isNoneEmptyTable() {
|
||||
return isNoneEmptyTable;
|
||||
}
|
||||
|
||||
public void setNoneEmptyTable(boolean noneEmptyTable) {
|
||||
isNoneEmptyTable = noneEmptyTable;
|
||||
}
|
||||
|
||||
@XmlElement(name = "SubTitle")
|
||||
public String getSubTitle() { return subTitle; }
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user