mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge branch 'policy-ui' into 'master'
Improve policy UI bean classes See merge request entgra/carbon-device-mgt!735
This commit is contained in:
commit
9e08535eb4
@ -0,0 +1,43 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2021, 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;
|
||||||
|
|
||||||
|
@XmlRootElement(name = "APIContent")
|
||||||
|
public class APIContent {
|
||||||
|
|
||||||
|
private String apiContentKey;
|
||||||
|
private Item item;
|
||||||
|
|
||||||
|
@XmlElement(name = "APIContentKey")
|
||||||
|
public String getApiContentKey() {
|
||||||
|
return apiContentKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setApiContentKey(String apiContentKey) {
|
||||||
|
this.apiContentKey = apiContentKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
@XmlElement(name = "Item")
|
||||||
|
public Item getItem() { return item; }
|
||||||
|
|
||||||
|
public void setItem(Item item) { this.item = item; }
|
||||||
|
}
|
||||||
@ -18,9 +18,7 @@
|
|||||||
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 = "APITable")
|
@XmlRootElement(name = "APITable")
|
||||||
public class APITable {
|
public class APITable {
|
||||||
@ -28,9 +26,7 @@ public class APITable {
|
|||||||
private String url;
|
private String url;
|
||||||
private String payload;
|
private String payload;
|
||||||
private String mainAttribute;
|
private String mainAttribute;
|
||||||
private String cardTitle;
|
private Card card;
|
||||||
private String cardKey;
|
|
||||||
private Modal modal;
|
|
||||||
|
|
||||||
@XmlElement(name = "RequestMethod")
|
@XmlElement(name = "RequestMethod")
|
||||||
public String getRequestMethod() {
|
public String getRequestMethod() {
|
||||||
@ -59,15 +55,6 @@ public class APITable {
|
|||||||
this.payload = payload;
|
this.payload = payload;
|
||||||
}
|
}
|
||||||
|
|
||||||
@XmlElement(name = "Modal")
|
|
||||||
public Modal getModal() {
|
|
||||||
return modal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setModal(Modal modal) {
|
|
||||||
this.modal = modal;
|
|
||||||
}
|
|
||||||
|
|
||||||
@XmlElement(name = "MainAttribute")
|
@XmlElement(name = "MainAttribute")
|
||||||
public String getMainAttribute() {
|
public String getMainAttribute() {
|
||||||
return mainAttribute;
|
return mainAttribute;
|
||||||
@ -77,21 +64,8 @@ public class APITable {
|
|||||||
this.mainAttribute = mainAttribute;
|
this.mainAttribute = mainAttribute;
|
||||||
}
|
}
|
||||||
|
|
||||||
@XmlElement(name = "CardTitle")
|
@XmlElement(name = "Card")
|
||||||
public String getCardTitle() {
|
public Card getCard() { return card; }
|
||||||
return cardTitle;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCardTitle(String cardTitle) {
|
public void setCard(Card card) { this.card = card; }
|
||||||
this.cardTitle = cardTitle;
|
|
||||||
}
|
|
||||||
|
|
||||||
@XmlElement(name = "CardKey")
|
|
||||||
public String getCardKey() {
|
|
||||||
return cardKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCardKey(String cardKey) {
|
|
||||||
this.cardKey = cardKey;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,103 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2021, 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.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElementWrapper;
|
||||||
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@XmlRootElement(name = "Card")
|
||||||
|
public class Card {
|
||||||
|
|
||||||
|
private String title;
|
||||||
|
private String key;
|
||||||
|
private List<APIContent> apiContents;
|
||||||
|
private APIContent apiContent;
|
||||||
|
private Item item;
|
||||||
|
private List<Item> items;
|
||||||
|
private List<SubContent> subContents;
|
||||||
|
|
||||||
|
@XmlAttribute(name = "title", required = true)
|
||||||
|
public String getTitle() {
|
||||||
|
return title;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTitle(String title) {
|
||||||
|
this.title = title;
|
||||||
|
}
|
||||||
|
|
||||||
|
@XmlAttribute(name = "key", required = true)
|
||||||
|
public String getKey() {
|
||||||
|
return key;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKey(String key) {
|
||||||
|
this.key = key;
|
||||||
|
}
|
||||||
|
|
||||||
|
@XmlElementWrapper(name = "APIContents")
|
||||||
|
@XmlElement(name = "APIContent")
|
||||||
|
public List<APIContent> getApiContents() {
|
||||||
|
return apiContents;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setApiContents(List<APIContent> apiContents) {
|
||||||
|
this.apiContents = apiContents;
|
||||||
|
}
|
||||||
|
|
||||||
|
@XmlElement(name = "APIContent")
|
||||||
|
public APIContent getApiContent() {
|
||||||
|
return apiContent;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setApiContent(APIContent apiContent) {
|
||||||
|
this.apiContent = apiContent;
|
||||||
|
}
|
||||||
|
|
||||||
|
@XmlElement(name = "Item")
|
||||||
|
public Item getItem() {
|
||||||
|
return item;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setItem(Item item) {
|
||||||
|
this.item = item;
|
||||||
|
}
|
||||||
|
|
||||||
|
@XmlElementWrapper(name = "Items")
|
||||||
|
@XmlElement(name = "Item")
|
||||||
|
public List<Item> getItems() {
|
||||||
|
return items;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setItems(List<Item> items) {
|
||||||
|
this.items = items;
|
||||||
|
}
|
||||||
|
|
||||||
|
@XmlElementWrapper(name = "SubContents")
|
||||||
|
@XmlElement(name = "SubContent")
|
||||||
|
public List<SubContent> getSubContents() {
|
||||||
|
return subContents;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSubContents(List<SubContent> subContents) {
|
||||||
|
this.subContents = subContents;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user