|
|
@ -19,10 +19,15 @@ package org.wso2.carbon.device.mgt.mobile.impl;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Constants used by Mobile device Management classes.
|
|
|
|
* Constants used by Mobile device Management classes.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public class MobileDeviceManagementConstants {
|
|
|
|
public final class MobileDeviceManagementConstants {
|
|
|
|
|
|
|
|
|
|
|
|
public final static String MOBILE_DEVICE_TYPE_ANDROID = "android";
|
|
|
|
public static class PlatformTypes {
|
|
|
|
public final static String MOBILE_DEVICE_TYPE_IOS = "ios";
|
|
|
|
private PlatformTypes() {
|
|
|
|
public final static String MOBILE_DEVICE_TYPE_WINDOWS = "windows";
|
|
|
|
throw new AssertionError();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public final static String MOBILE_DEVICE_TYPE_ANDROID = "android";
|
|
|
|
|
|
|
|
public final static String MOBILE_DEVICE_TYPE_IOS = "ios";
|
|
|
|
|
|
|
|
public final static String MOBILE_DEVICE_TYPE_WINDOWS = "windows";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|