mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Adding effective policy details
This commit is contained in:
parent
5a1c73b119
commit
652d776672
@ -35,6 +35,7 @@
|
|||||||
<Bundle-Description>Simple Policy Decision Point Bundle</Bundle-Description>
|
<Bundle-Description>Simple Policy Decision Point Bundle</Bundle-Description>
|
||||||
<Private-Package>org.wso2.carbon.simple.policy.decision.point.internal</Private-Package>
|
<Private-Package>org.wso2.carbon.simple.policy.decision.point.internal</Private-Package>
|
||||||
<Import-Package>
|
<Import-Package>
|
||||||
|
org.wso2.carbon.context.*;
|
||||||
org.osgi.framework,
|
org.osgi.framework,
|
||||||
org.osgi.service.component,
|
org.osgi.service.component,
|
||||||
org.apache.commons.logging,
|
org.apache.commons.logging,
|
||||||
|
|||||||
@ -20,24 +20,21 @@ package org.wso2.carbon.simple.policy.decision.point;
|
|||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
||||||
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||||
import org.wso2.carbon.policy.mgt.common.*;
|
import org.wso2.carbon.policy.mgt.common.*;
|
||||||
import org.wso2.carbon.policy.mgt.core.PolicyManagerService;
|
import org.wso2.carbon.policy.mgt.core.PolicyManagerService;
|
||||||
import org.wso2.carbon.simple.policy.decision.point.internal.PolicyDecisionPointDataHolder;
|
import org.wso2.carbon.simple.policy.decision.point.internal.PolicyDecisionPointDataHolder;
|
||||||
|
|
||||||
|
import java.sql.Timestamp;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
public class SimpleEvaluationPoint implements PolicyEvaluationPoint {
|
public class SimpleEvaluationPoint implements PolicyEvaluationPoint {
|
||||||
|
|
||||||
private static final Log log = LogFactory.getLog(SimpleEvaluationPoint.class);
|
private static final Log log = LogFactory.getLog(SimpleEvaluationPoint.class);
|
||||||
//TODO : to revove the stale reference
|
|
||||||
private PolicyManagerService policyManagerService;
|
private PolicyManagerService policyManagerService;
|
||||||
private List<Policy> policyList;
|
private List<Policy> policyList;
|
||||||
PIPDevice pipDevice;
|
PIPDevice pipDevice;
|
||||||
// public SimpleEvaluationPoint() {
|
|
||||||
// policyManagerService = PolicyDecisionPointDataHolder.getInstance().getPolicyManagerService();
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<ProfileFeature> getEffectiveFeatures(DeviceIdentifier deviceIdentifier) throws PolicyEvaluationException {
|
public List<ProfileFeature> getEffectiveFeatures(DeviceIdentifier deviceIdentifier) throws PolicyEvaluationException {
|
||||||
@ -88,6 +85,21 @@ public class SimpleEvaluationPoint implements PolicyEvaluationPoint {
|
|||||||
Profile profile = new Profile();
|
Profile profile = new Profile();
|
||||||
profile.setProfileFeaturesList(getEffectiveFeatures(deviceIdentifier));
|
profile.setProfileFeaturesList(getEffectiveFeatures(deviceIdentifier));
|
||||||
policy.setProfile(profile);
|
policy.setProfile(profile);
|
||||||
|
Timestamp currentTimestamp = new Timestamp(Calendar.getInstance().getTime().getTime());
|
||||||
|
profile.setCreatedDate(currentTimestamp);
|
||||||
|
profile.setUpdatedDate(currentTimestamp);
|
||||||
|
profile.setDeviceType(deviceIdentifier.getType());
|
||||||
|
profile.setTenantId(PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId());
|
||||||
|
policy.setPolicyName("Effective-Policy");
|
||||||
|
policy.setOwnershipType(pipDevice.getOwnershipType());
|
||||||
|
policy.setRoles(null);
|
||||||
|
policy.setDevices(null);
|
||||||
|
policy.setUsers(null);
|
||||||
|
policy.setActive(true);
|
||||||
|
policy.setUpdated(true);
|
||||||
|
policy.setTenantId(PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId());
|
||||||
|
policy.setDescription("This is a system generated effective policy by merging relevant policies.");
|
||||||
|
policy.setCompliance(policyList.get(0).getCompliance());
|
||||||
return policy;
|
return policy;
|
||||||
} catch (PolicyManagementException e) {
|
} catch (PolicyManagementException e) {
|
||||||
String msg = "Error occurred when retrieving the policy related data from policy management service.";
|
String msg = "Error occurred when retrieving the policy related data from policy management service.";
|
||||||
@ -126,7 +138,6 @@ public class SimpleEvaluationPoint implements PolicyEvaluationPoint {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void sortPolicies() throws PolicyEvaluationException {
|
public void sortPolicies() throws PolicyEvaluationException {
|
||||||
//Collections.sort(policyList);
|
|
||||||
Collections.sort(policyList, Collections.reverseOrder());
|
Collections.sort(policyList, Collections.reverseOrder());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user