mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge branch 'master' of https://github.com/wso2/carbon-device-mgt
This commit is contained in:
commit
ed1eb217ea
@ -48,6 +48,9 @@
|
||||
<Export-Package>
|
||||
org.wso2.carbon.device.mgt.common.*
|
||||
</Export-Package>
|
||||
<Import-Package>
|
||||
*;resolution:=optional,
|
||||
</Import-Package>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
@ -18,13 +18,23 @@
|
||||
|
||||
package org.wso2.carbon.device.mgt.common.configuration.mgt;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* Represents an individual configuration entry.
|
||||
*/
|
||||
@ApiModel(value = "ConfigurationEntry", description = "This class carries all information related to Tenant Configuration" +
|
||||
"Settings")
|
||||
public class ConfigurationEntry {
|
||||
|
||||
@ApiModelProperty(name = "name", value = "Name of the configuration", required = true)
|
||||
private String name;
|
||||
|
||||
@ApiModelProperty(name = "contentType", value = "Type of the configuration", required = true)
|
||||
private String contentType;
|
||||
|
||||
@ApiModelProperty(name = "value", value = "Value of the configuration", required = true)
|
||||
private Object value;
|
||||
|
||||
public String getName() {
|
||||
|
||||
@ -83,6 +83,8 @@
|
||||
org.apache.catalina.core,
|
||||
org.apache.commons.collections,
|
||||
org.wso2.carbon.email.sender.*,
|
||||
io.swagger.annotations.*,
|
||||
*;resolution:=optional,
|
||||
org.wso2.carbon,
|
||||
org.wso2.carbon.base
|
||||
</Import-Package>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user