Add operation type for policy operation

revert-70aa11f8
manoj 9 years ago
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…
Cancel
Save