Improve policy UI bean classes

4.x.x
Shamalka Navod 4 years ago committed by Dharmakeerthi Lasantha
parent 31dc6fc839
commit ee5676d815

@ -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;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.List;
@XmlRootElement(name = "APITable")
public class APITable {
@ -28,9 +26,7 @@ public class APITable {
private String url;
private String payload;
private String mainAttribute;
private String cardTitle;
private String cardKey;
private Modal modal;
private Card card;
@XmlElement(name = "RequestMethod")
public String getRequestMethod() {
@ -59,15 +55,6 @@ public class APITable {
this.payload = payload;
}
@XmlElement(name = "Modal")
public Modal getModal() {
return modal;
}
public void setModal(Modal modal) {
this.modal = modal;
}
@XmlElement(name = "MainAttribute")
public String getMainAttribute() {
return mainAttribute;
@ -77,21 +64,8 @@ public class APITable {
this.mainAttribute = mainAttribute;
}
@XmlElement(name = "CardTitle")
public String getCardTitle() {
return cardTitle;
}
public void setCardTitle(String cardTitle) {
this.cardTitle = cardTitle;
}
@XmlElement(name = "Card")
public Card getCard() { return card; }
@XmlElement(name = "CardKey")
public String getCardKey() {
return cardKey;
}
public void setCardKey(String cardKey) {
this.cardKey = cardKey;
}
public void setCard(Card card) { this.card = card; }
}

@ -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…
Cancel
Save