mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Add operation type for policy operation
This commit is contained in:
parent
8a03c7a368
commit
a4e6b02e60
@ -27,7 +27,7 @@ import java.util.Properties;
|
|||||||
public class Operation implements Serializable {
|
public class Operation implements Serializable {
|
||||||
|
|
||||||
public enum Type {
|
public enum Type {
|
||||||
CONFIG, MESSAGE, INFO, COMMAND, PROFILE
|
CONFIG, MESSAGE, INFO, COMMAND, PROFILE, POLICY
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum Status {
|
public enum Status {
|
||||||
|
|||||||
@ -33,6 +33,7 @@ import org.wso2.carbon.policy.mgt.core.internal.PolicyManagementDataHolder;
|
|||||||
import org.wso2.carbon.policy.mgt.core.util.PolicyManagementConstants;
|
import org.wso2.carbon.policy.mgt.core.util.PolicyManagementConstants;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class PolicyManagerServiceImpl implements PolicyManagerService {
|
public class PolicyManagerServiceImpl implements PolicyManagerService {
|
||||||
@ -101,6 +102,8 @@ public class PolicyManagerServiceImpl implements PolicyManagerService {
|
|||||||
List<ProfileOperation> profileOperationList = new ArrayList<ProfileOperation>();
|
List<ProfileOperation> profileOperationList = new ArrayList<ProfileOperation>();
|
||||||
|
|
||||||
PolicyOperation policyOperation = new PolicyOperation();
|
PolicyOperation policyOperation = new PolicyOperation();
|
||||||
|
policyOperation.setEnabled(true);
|
||||||
|
policyOperation.setType(Operation.Type.POLICY);
|
||||||
|
|
||||||
for (ProfileFeature feature : effectiveFeatures) {
|
for (ProfileFeature feature : effectiveFeatures) {
|
||||||
ProfileOperation profileOperation = new ProfileOperation();
|
ProfileOperation profileOperation = new ProfileOperation();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user