merge-requests/7/head
geethkokila 9 years ago
commit 149b743a2e

@ -18,14 +18,23 @@
package org.wso2.carbon.device.mgt.common.configuration.mgt; package org.wso2.carbon.device.mgt.common.configuration.mgt;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;
import java.util.List; import java.util.List;
/** /**
* Represents the tenant configuration for a device platform. * Represents the tenant configuration for a device platform.
*/ */
public class TenantConfiguration { @XmlRootElement(name="tenantConfiguration")
@XmlAccessorType(XmlAccessType.NONE)
public class TenantConfiguration implements Serializable{
@XmlElement(name="type")
private String type; private String type;
@XmlElement(name="configuration")
private List<ConfigurationEntry> configuration; private List<ConfigurationEntry> configuration;
public String getType() { public String getType() {

Loading…
Cancel
Save