mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fixed tenant configuration persisting issue
This commit is contained in:
parent
c41f6c3002
commit
58c45c92be
@ -18,14 +18,23 @@
|
||||
|
||||
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;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
@XmlElement(name="configuration")
|
||||
private List<ConfigurationEntry> configuration;
|
||||
|
||||
public String getType() {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user