mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fixed a bug in add operation function
This commit is contained in:
parent
2d5f8fe937
commit
3dda515add
@ -20,6 +20,7 @@ package org.wso2.carbon.device.mgt.core.operation.mgt;
|
||||
|
||||
import org.wso2.carbon.device.mgt.common.operation.mgt.Operation;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
@ -39,7 +40,7 @@ public class ConfigOperation extends Operation {
|
||||
properties.add(new Property(name, value, type));
|
||||
}
|
||||
|
||||
public class Property {
|
||||
public class Property implements Serializable{
|
||||
private String name;
|
||||
private Object value;
|
||||
private Class<?> type;
|
||||
|
||||
@ -76,6 +76,8 @@ public class OperationManagerImpl implements OperationManager {
|
||||
OperationManagementDAOFactory.beginTransaction();
|
||||
org.wso2.carbon.device.mgt.core.dto.operation.mgt.Operation operationDto =
|
||||
OperationDAOUtil.convertOperation(operation);
|
||||
operationDto.setStatus(org.wso2.carbon.device.mgt.core.dto.operation.mgt.Operation.Status.PENDING);
|
||||
|
||||
int operationId = this.lookupOperationDAO(operation).addOperation(operationDto);
|
||||
org.wso2.carbon.device.mgt.common.Device device;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user