Add properties to store mobile app specific meta data

revert-70aa11f8
manoj 9 years ago
parent 567f78abb6
commit 65b1ea70ab

@ -18,6 +18,9 @@
*/ */
package org.wso2.carbon.device.mgt.common.app.mgt; package org.wso2.carbon.device.mgt.common.app.mgt;
import java.util.List;
import java.util.Properties;
public class Application { public class Application {
private String id; private String id;
@ -29,6 +32,7 @@ public class Application {
private String imageUrl; private String imageUrl;
private String version; private String version;
private String type; private String type;
private List<Properties> appProperties;
public String getType() { public String getType() {
return type; return type;
@ -105,4 +109,12 @@ public class Application {
this.category = category; this.category = category;
} }
public List<Properties> getAppProperties() {
return appProperties;
}
public void setAppProperties(List<Properties> appProperties) {
this.appProperties = appProperties;
}
} }

Loading…
Cancel
Save