mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Code cleanup
This commit is contained in:
parent
a10a693507
commit
aef892fece
@ -28,29 +28,29 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* Represents the tenant configuration for a device platform.
|
* Represents the tenant configuration for a device platform.
|
||||||
*/
|
*/
|
||||||
@XmlRootElement(name="tenantConfiguration")
|
@XmlRootElement(name = "tenantConfiguration")
|
||||||
@XmlAccessorType(XmlAccessType.NONE)
|
@XmlAccessorType(XmlAccessType.NONE)
|
||||||
public class TenantConfiguration implements Serializable{
|
public class TenantConfiguration implements Serializable {
|
||||||
|
|
||||||
@XmlElement(name="type")
|
@XmlElement(name = "type")
|
||||||
private String type;
|
private String type;
|
||||||
@XmlElement(name="configuration")
|
@XmlElement(name = "configuration")
|
||||||
private List<ConfigurationEntry> configuration;
|
private List<ConfigurationEntry> configuration;
|
||||||
|
|
||||||
public String getType() {
|
public String getType() {
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setType(String type) {
|
public void setType(String type) {
|
||||||
this.type = type;
|
this.type = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<ConfigurationEntry> getConfiguration() {
|
public List<ConfigurationEntry> getConfiguration() {
|
||||||
return configuration;
|
return configuration;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setConfiguration(List<ConfigurationEntry> configuration) {
|
public void setConfiguration(List<ConfigurationEntry> configuration) {
|
||||||
this.configuration = configuration;
|
this.configuration = configuration;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user