mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Improve bean structure in policy UI config
This commit is contained in:
parent
8414679608
commit
660935e0d6
@ -18,20 +18,24 @@
|
|||||||
package org.wso2.carbon.device.mgt.common.policy.mgt.ui;
|
package org.wso2.carbon.device.mgt.common.policy.mgt.ui;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElementWrapper;
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@XmlRootElement(name = "ConditionList")
|
@XmlRootElement(name = "Condition")
|
||||||
public class ConditionList {
|
public class Condition {
|
||||||
|
|
||||||
List<Key> conditions;
|
String key;
|
||||||
|
List<String> values;
|
||||||
|
|
||||||
@XmlElement(name = "Key")
|
@XmlElement(name = "Key")
|
||||||
public List<Key> getConditions() {
|
public String getKey() { return key; }
|
||||||
return conditions;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setConditions(List<Key> conditions) {
|
public void setKey(String key) { this.key = key; }
|
||||||
this.conditions = conditions;
|
|
||||||
}
|
@XmlElementWrapper(name = "Values")
|
||||||
|
@XmlElement(name = "Value")
|
||||||
|
public List<String> getValues() { return values; }
|
||||||
|
|
||||||
|
public void setValues(List<String> values) { this.values = values; }
|
||||||
}
|
}
|
||||||
@ -29,7 +29,6 @@ public class Content {
|
|||||||
private String key;
|
private String key;
|
||||||
private List<Item> items;
|
private List<Item> items;
|
||||||
private List<SubContent> subContents;
|
private List<SubContent> subContents;
|
||||||
private ConditionList conditionList;
|
|
||||||
|
|
||||||
@XmlAttribute(name = "key", required = true)
|
@XmlAttribute(name = "key", required = true)
|
||||||
public String getKey() {
|
public String getKey() {
|
||||||
@ -56,12 +55,4 @@ public class Content {
|
|||||||
|
|
||||||
public void setSubContents(List<SubContent> subContents) { this.subContents = subContents; }
|
public void setSubContents(List<SubContent> subContents) { this.subContents = subContents; }
|
||||||
|
|
||||||
@XmlElement(name = "ConditionList")
|
|
||||||
public ConditionList getConditionList() {
|
|
||||||
return conditionList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setConditionList(ConditionList conditionList) {
|
|
||||||
this.conditionList = conditionList;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,15 +18,16 @@
|
|||||||
package org.wso2.carbon.device.mgt.common.policy.mgt.ui;
|
package org.wso2.carbon.device.mgt.common.policy.mgt.ui;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElementWrapper;
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
@XmlRootElement(name = "Input")
|
@XmlRootElement(name = "Input")
|
||||||
public class Input {
|
public class Input {
|
||||||
|
|
||||||
private String type;
|
private String type;
|
||||||
private String placeholderValue;
|
private String placeholderValue;
|
||||||
private String regEx;
|
private List<Rule> rules;
|
||||||
private String validationMessage;
|
|
||||||
|
|
||||||
@XmlElement(name = "Type")
|
@XmlElement(name = "Type")
|
||||||
public String getType() {
|
public String getType() {
|
||||||
@ -46,21 +47,9 @@ public class Input {
|
|||||||
this.placeholderValue = placeholderValue;
|
this.placeholderValue = placeholderValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@XmlElement(name = "Regex")
|
@XmlElementWrapper(name = "Rules")
|
||||||
public String getRegEx() {
|
@XmlElement(name = "Rule")
|
||||||
return regEx;
|
public List<Rule> getRules() { return rules; }
|
||||||
}
|
|
||||||
|
|
||||||
public void setRegEx(String regEx) {
|
public void setRules(List<Rule> rules) { this.rules = rules; }
|
||||||
this.regEx = regEx;
|
|
||||||
}
|
|
||||||
|
|
||||||
@XmlElement(name = "ValidationMsg")
|
|
||||||
public String getValidationMessage() {
|
|
||||||
return validationMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setValidationMessage(String validationMessage) {
|
|
||||||
this.validationMessage = validationMessage;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,7 +18,9 @@
|
|||||||
package org.wso2.carbon.device.mgt.common.policy.mgt.ui;
|
package org.wso2.carbon.device.mgt.common.policy.mgt.ui;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElementWrapper;
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
@XmlRootElement(name = "Item")
|
@XmlRootElement(name = "Item")
|
||||||
public class Item {
|
public class Item {
|
||||||
@ -29,14 +31,14 @@ public class Item {
|
|||||||
private String value;
|
private String value;
|
||||||
private boolean isRequired;
|
private boolean isRequired;
|
||||||
private String subTitle;
|
private String subTitle;
|
||||||
private ConditionList conditionList;
|
private List<Condition> conditions;
|
||||||
private Checkbox checkbox;
|
private Checkbox checkbox;
|
||||||
private Select select;
|
private Select select;
|
||||||
private Input input;
|
private Input input;
|
||||||
private TimeSelector timeSelector;
|
private TimeSelector timeSelector;
|
||||||
private Table table;
|
private Table table;
|
||||||
private RadioGroup radioGroup;
|
private RadioGroup radioGroup;
|
||||||
private NotificationList notificationList;
|
private List<Notification> notifications;
|
||||||
|
|
||||||
@XmlElement(name = "Label")
|
@XmlElement(name = "Label")
|
||||||
public String getLabel() {
|
public String getLabel() {
|
||||||
@ -88,10 +90,11 @@ public class Item {
|
|||||||
|
|
||||||
public void setSubTitle(String subTitle) { this.subTitle = subTitle; }
|
public void setSubTitle(String subTitle) { this.subTitle = subTitle; }
|
||||||
|
|
||||||
@XmlElement(name = "ConditionList")
|
@XmlElementWrapper(name = "Conditions")
|
||||||
public ConditionList getConditionList() { return conditionList; }
|
@XmlElement(name = "Condition")
|
||||||
|
public List<Condition> getConditions() { return conditions; }
|
||||||
|
|
||||||
public void setConditionList(ConditionList conditionList) { this.conditionList = conditionList; }
|
public void setConditions(List<Condition> conditions) { this.conditions = conditions; }
|
||||||
|
|
||||||
@XmlElement(name = "Checkbox")
|
@XmlElement(name = "Checkbox")
|
||||||
public Checkbox getCheckbox() {
|
public Checkbox getCheckbox() {
|
||||||
@ -139,8 +142,9 @@ public class Item {
|
|||||||
this.radioGroup = radioGroup;
|
this.radioGroup = radioGroup;
|
||||||
}
|
}
|
||||||
|
|
||||||
@XmlElement(name = "NotificationList")
|
@XmlElementWrapper(name = "Notifications")
|
||||||
public NotificationList getNotificationList() { return notificationList; }
|
@XmlElement(name = "Notification")
|
||||||
|
public List<Notification> getNotifications() { return notifications; }
|
||||||
|
|
||||||
public void setNotificationList(NotificationList notificationList) { this.notificationList = notificationList; }
|
public void setNotifications(List<Notification> notifications) { this.notifications = notifications; }
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,46 +0,0 @@
|
|||||||
/* Copyright (c) 2020, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (Pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package org.wso2.carbon.device.mgt.common.policy.mgt.ui;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAttribute;
|
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
|
||||||
|
|
||||||
@XmlRootElement(name = "Key")
|
|
||||||
public class Key {
|
|
||||||
|
|
||||||
private String name;
|
|
||||||
private String value;
|
|
||||||
|
|
||||||
@XmlAttribute(name = "name")
|
|
||||||
public String getName() {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setName(String name) {
|
|
||||||
this.name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
@XmlAttribute(name = "value")
|
|
||||||
public String getValue() {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setValue(String value) {
|
|
||||||
this.value = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
/* Copyright (c) 2020, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (Pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package org.wso2.carbon.device.mgt.common.policy.mgt.ui;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@XmlRootElement(name = "NotificationList")
|
|
||||||
public class NotificationList {
|
|
||||||
|
|
||||||
List<Notification> notification;
|
|
||||||
|
|
||||||
@XmlElement(name = "Notification")
|
|
||||||
public List<Notification> getConditions() {
|
|
||||||
return notification;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setConditions(List<Notification> notification) {
|
|
||||||
this.notification = notification;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -0,0 +1,40 @@
|
|||||||
|
package org.wso2.carbon.device.mgt.common.policy.mgt.ui;/* Copyright (c) 2020, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Entgra (Pvt) Ltd. licenses this file to you under the Apache License,
|
||||||
|
* Version 2.0 (the "License"); you may not use this file except
|
||||||
|
* in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
|
||||||
|
public class Rule {
|
||||||
|
|
||||||
|
private String type;
|
||||||
|
private String logic;
|
||||||
|
private String validationMessage;
|
||||||
|
|
||||||
|
@XmlElement(name = "Type")
|
||||||
|
public String getType() { return type; }
|
||||||
|
|
||||||
|
public void setType(String type) { this.type = type; }
|
||||||
|
|
||||||
|
@XmlElement(name = "Logic")
|
||||||
|
public String getLogic() { return logic; }
|
||||||
|
|
||||||
|
public void setLogic(String logic) { this.logic = logic; }
|
||||||
|
|
||||||
|
@XmlElement(name = "ValidationMsg")
|
||||||
|
public String getValidationMessage() { return validationMessage; }
|
||||||
|
|
||||||
|
public void setValidationMessage(String validationMessage) { this.validationMessage = validationMessage; }
|
||||||
|
}
|
||||||
@ -28,7 +28,7 @@ public class SubContent {
|
|||||||
|
|
||||||
private String key;
|
private String key;
|
||||||
private List<Item> items;
|
private List<Item> items;
|
||||||
private ConditionList conditionList;
|
private List<Condition> conditions;
|
||||||
private List<SubContent> subContents;
|
private List<SubContent> subContents;
|
||||||
|
|
||||||
@XmlAttribute(name = "key", required = true)
|
@XmlAttribute(name = "key", required = true)
|
||||||
@ -50,13 +50,14 @@ public class SubContent {
|
|||||||
this.items = items;
|
this.items = items;
|
||||||
}
|
}
|
||||||
|
|
||||||
@XmlElement(name = "ConditionList")
|
@XmlElementWrapper(name = "Conditions")
|
||||||
public ConditionList getConditionList() {
|
@XmlElement(name = "Condition")
|
||||||
return conditionList;
|
public List<Condition> getConditions() {
|
||||||
|
return conditions;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setConditionList(ConditionList conditionList) {
|
public void setConditions(List<Condition> conditions) {
|
||||||
this.conditionList = conditionList;
|
this.conditions = conditions;
|
||||||
}
|
}
|
||||||
|
|
||||||
@XmlElementWrapper(name = "SubContents")
|
@XmlElementWrapper(name = "SubContents")
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user