mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
reformatting code
This commit is contained in:
parent
e3453f5bb1
commit
a115cff4db
@ -92,13 +92,19 @@ public class DeviceTaskManagerImpl implements DeviceTaskManager {
|
|||||||
operations = this.getValidOperationNames(); //list operations for each device type
|
operations = this.getValidOperationNames(); //list operations for each device type
|
||||||
devices = deviceManagementProviderService.getAllDevices(deviceType, false);//list devices for each type
|
devices = deviceManagementProviderService.getAllDevices(deviceType, false);//list devices for each type
|
||||||
if (!devices.isEmpty()) {
|
if (!devices.isEmpty()) {
|
||||||
for (String str : operations) {
|
if (operations != null) {
|
||||||
CommandOperation operation = new CommandOperation();
|
for (String str : operations) {
|
||||||
operation.setEnabled(true);
|
CommandOperation operation = new CommandOperation();
|
||||||
operation.setType(Operation.Type.COMMAND);
|
operation.setEnabled(true);
|
||||||
operation.setCode(str);
|
operation.setType(Operation.Type.COMMAND);
|
||||||
deviceManagementProviderService.addOperation(deviceType, operation,
|
operation.setCode(str);
|
||||||
DeviceManagerUtil.getValidDeviceIdentifiers(devices));
|
deviceManagementProviderService.addOperation(deviceType, operation,
|
||||||
|
DeviceManagerUtil.getValidDeviceIdentifiers(devices));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (log.isDebugEnabled()) {
|
||||||
|
log.debug("No operations are available.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (log.isDebugEnabled()) {
|
if (log.isDebugEnabled()) {
|
||||||
|
|||||||
@ -53,7 +53,6 @@ public class DeviceTaskManagerServiceImpl implements DeviceTaskManagerService {
|
|||||||
log.info("Task adding for " + deviceType);
|
log.info("Task adding for " + deviceType);
|
||||||
|
|
||||||
int tenantId = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId();
|
int tenantId = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
TaskService taskService = DeviceManagementDataHolder.getInstance().getTaskService();
|
TaskService taskService = DeviceManagementDataHolder.getInstance().getTaskService();
|
||||||
taskService.registerTaskType(TASK_TYPE);
|
taskService.registerTaskType(TASK_TYPE);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user