|
|
|
@ -28,13 +28,13 @@ import java.util.List;
|
|
|
|
|
/**
|
|
|
|
|
* Represents the tenant configuration for a device platform.
|
|
|
|
|
*/
|
|
|
|
|
@XmlRootElement(name="tenantConfiguration")
|
|
|
|
|
@XmlRootElement(name = "tenantConfiguration")
|
|
|
|
|
@XmlAccessorType(XmlAccessType.NONE)
|
|
|
|
|
public class TenantConfiguration implements Serializable{
|
|
|
|
|
public class TenantConfiguration implements Serializable {
|
|
|
|
|
|
|
|
|
|
@XmlElement(name="type")
|
|
|
|
|
@XmlElement(name = "type")
|
|
|
|
|
private String type;
|
|
|
|
|
@XmlElement(name="configuration")
|
|
|
|
|
@XmlElement(name = "configuration")
|
|
|
|
|
private List<ConfigurationEntry> configuration;
|
|
|
|
|
|
|
|
|
|
public String getType() {
|
|
|
|
|