mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Code formatting
This commit is contained in:
parent
90bf818fc6
commit
c0ffb02420
@ -56,8 +56,8 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<DeviceIdentifier> installApplicationForUsers(String applicationUUID, List<String> userList, String versionName)
|
public List<DeviceIdentifier> installApplicationForUsers(String applicationUUID, List<String> userList,
|
||||||
throws ApplicationManagementException {
|
String versionName) throws ApplicationManagementException {
|
||||||
log.info("Install application: " + applicationUUID + " to: " + userList.size() + " users.");
|
log.info("Install application: " + applicationUUID + " to: " + userList.size() + " users.");
|
||||||
List<DeviceIdentifier> deviceList = new ArrayList<>();
|
List<DeviceIdentifier> deviceList = new ArrayList<>();
|
||||||
for (String user : userList) {
|
for (String user : userList) {
|
||||||
@ -75,8 +75,8 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<DeviceIdentifier> installApplicationForRoles(String applicationUUID, List<String> roleList, String versionName)
|
public List<DeviceIdentifier> installApplicationForRoles(String applicationUUID, List<String> roleList,
|
||||||
throws ApplicationManagementException {
|
String versionName) throws ApplicationManagementException {
|
||||||
log.info("Install application: " + applicationUUID + " to: " + roleList.size() + " roles.");
|
log.info("Install application: " + applicationUUID + " to: " + roleList.size() + " roles.");
|
||||||
List<DeviceIdentifier> deviceList = new ArrayList<>();
|
List<DeviceIdentifier> deviceList = new ArrayList<>();
|
||||||
for (String role : roleList) {
|
for (String role : roleList) {
|
||||||
@ -100,12 +100,13 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<DeviceIdentifier> installApplication(String applicationUUID, List<DeviceIdentifier> deviceList, String versionName)
|
private List<DeviceIdentifier> installApplication(String applicationUUID, List<DeviceIdentifier> deviceList,
|
||||||
throws ApplicationManagementException {
|
String versionName) throws ApplicationManagementException {
|
||||||
List<DeviceIdentifier> failedDeviceList = new ArrayList<>(deviceList);
|
List<DeviceIdentifier> failedDeviceList = new ArrayList<>(deviceList);
|
||||||
// Todo: try whether we can optimise this by sending bulk inserts to db
|
// Todo: try whether we can optimise this by sending bulk inserts to db
|
||||||
// Todo: atomicity is not maintained as deveice managment provider service uses separate db connection. fix this??
|
// Todo: atomicity is not maintained as deveice managment provider service uses separate db connection. fix this??
|
||||||
log.info("Install application: " + applicationUUID + "[" + versionName + "]" + " to: " + deviceList.size() + " devices.");
|
log.info("Install application: " + applicationUUID + "[" + versionName + "]" + " to: "
|
||||||
|
+ deviceList.size() + " devices.");
|
||||||
for (DeviceIdentifier device : deviceList) {
|
for (DeviceIdentifier device : deviceList) {
|
||||||
org.wso2.carbon.device.mgt.common.DeviceIdentifier deviceIdentifier = new org.wso2.carbon.device.mgt
|
org.wso2.carbon.device.mgt.common.DeviceIdentifier deviceIdentifier = new org.wso2.carbon.device.mgt
|
||||||
.common.DeviceIdentifier(device.getId(), device.getType());
|
.common.DeviceIdentifier(device.getId(), device.getType());
|
||||||
@ -123,7 +124,8 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
|||||||
ProfileOperation operation = new ProfileOperation();
|
ProfileOperation operation = new ProfileOperation();
|
||||||
operation.setCode("INSTALL_APPLICATION");
|
operation.setCode("INSTALL_APPLICATION");
|
||||||
operation.setType(Operation.Type.PROFILE);
|
operation.setType(Operation.Type.PROFILE);
|
||||||
operation.setPayLoad("{'type':'enterprise', 'url':'http://10.100.5.76:8000/app-debug.apk', 'app':'" + applicationUUID + "'}");
|
operation.setPayLoad("{'type':'enterprise', 'url':'http://10.100.5.76:8000/app-debug.apk', 'app':'"
|
||||||
|
+ applicationUUID + "'}");
|
||||||
List<org.wso2.carbon.device.mgt.common.DeviceIdentifier> deviceIdentifiers = new ArrayList<>();
|
List<org.wso2.carbon.device.mgt.common.DeviceIdentifier> deviceIdentifiers = new ArrayList<>();
|
||||||
deviceIdentifiers.add(deviceIdentifier);
|
deviceIdentifiers.add(deviceIdentifier);
|
||||||
dmpService.addOperation(DeviceManagementConstants.MobileDeviceTypes.MOBILE_DEVICE_TYPE_ANDROID,
|
dmpService.addOperation(DeviceManagementConstants.MobileDeviceTypes.MOBILE_DEVICE_TYPE_ANDROID,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user