mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Add properties to store mobile app specific meta data
This commit is contained in:
parent
567f78abb6
commit
65b1ea70ab
@ -18,6 +18,9 @@
|
||||
*/
|
||||
package org.wso2.carbon.device.mgt.common.app.mgt;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
||||
|
||||
public class Application {
|
||||
|
||||
private String id;
|
||||
@ -29,6 +32,7 @@ public class Application {
|
||||
private String imageUrl;
|
||||
private String version;
|
||||
private String type;
|
||||
private List<Properties> appProperties;
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
@ -105,4 +109,12 @@ public class Application {
|
||||
this.category = category;
|
||||
}
|
||||
|
||||
public List<Properties> getAppProperties() {
|
||||
return appProperties;
|
||||
}
|
||||
|
||||
public void setAppProperties(List<Properties> appProperties) {
|
||||
this.appProperties = appProperties;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user