Package oracle.iam.policyengine.api
Interface PolicyManager
public interface PolicyManager
-
Method Summary
Modifier and TypeMethodDescriptionassignRuleToPolicy
(String policyId, String ruleId, Long index) Assign the rule specified by the rule entity id to the policy specified by the policy entity id.Create a policy using specified policy entity attributes.Delete the policy and all rule assignment relationships, i.e.Disable the policy associated with the specified policy entity id.Enable the policy associated with the specified policy entity id.getDetails
(String entityId, Set<String> retAttrs) Retrieve the attributes of the policy specified by the entity id.getRulesAssignedToPolicy
(String policyId) Return rules assigned to the policy specified by the policy entity id.Lock the policy associated with the specified policy entity id.Modify the policy attributes specified in the policy entity.reorderPolicyRules
(String policyId, Map<String, Long> orderedPolicyRules) Reorder the rules of the policy associated with specified policy entity id.replacePolicyRules
(String policyId, List<String> ruleIds) Replace all of the rules of the policy associated with the specified policy entity id, with the list of rule entity ids.Search the policies in the system that match the specified search criteria.unAssignRuleFromPolicy
(String policyId, String ruleId) Unassign the rule specified by the rule entity id from the policy specified by the policy entity id.Unlock the policy associated with the specified policy entity id.
-
Method Details
-
create
PolicyManagerResult create(Policy entity) throws ValidationFailedException, EntityAlreadyExistsException, EntityCreateException, AccessDeniedException Create a policy using specified policy entity attributes.- Parameters:
entity
- policy entity- Returns:
- PolicyManagerResult result that contains entity id of the newly created policy
- Throws:
ValidationFailedException
EntityAlreadyExistsException
EntityCreateException
AccessDeniedException
-
modify
PolicyManagerResult modify(Policy entity) throws ValidationFailedException, EntityModifyException, oracle.iam.platform.entitymgr.NoSuchEntityException, AccessDeniedException, EntityLockedException Modify the policy attributes specified in the policy entity. The policy entity must constain an policy entity id.- Parameters:
entity
- the policy entity- Returns:
- PolicyManagerResult result of the policy modify
- Throws:
ValidationFailedException
EntityModifyException
oracle.iam.platform.entitymgr.NoSuchEntityException
AccessDeniedException
EntityLockedException
-
delete
PolicyManagerResult delete(String entityId) throws EntityDeleteException, oracle.iam.platform.entitymgr.NoSuchEntityException, AccessDeniedException, ValidationFailedException, EntityLockedException Delete the policy and all rule assignment relationships, i.e. remove rules from this policy.- Parameters:
entityId
- policy entity Id- Returns:
- PolicyManagerResult result of the policy delete
- Throws:
EntityDeleteException
oracle.iam.platform.entitymgr.NoSuchEntityException
AccessDeniedException
ValidationFailedException
EntityLockedException
-
getDetails
Policy getDetails(String entityId, Set<String> retAttrs) throws ValidationFailedException, oracle.iam.platform.entitymgr.NoSuchEntityException, AccessDeniedException, EntitySearchException Retrieve the attributes of the policy specified by the entity id. The retAttrs set specifies the attribute set to be returned.- Parameters:
entityId
- the policy entity idretAttrs
- the attributes of the policy to be returned- Returns:
- Policy entity associated with the entity id
- Throws:
ValidationFailedException
oracle.iam.platform.entitymgr.NoSuchEntityException
AccessDeniedException
EntitySearchException
-
search
List<Policy> search(SearchCriteria sc, Set<String> retAttrs, Map<String, Object> config) throws EntitySearchException, AccessDeniedException, oracle.iam.platform.entitymgr.NoSuchEntityException, ValidationFailedExceptionSearch the policies in the system that match the specified search criteria. The retAttrs set specifies the attribute set to be returned. The config map can used to specify parameters such as pagination and sorting.- Parameters:
sc
- the search criteriaretAttrs
- set of attributes of the policy to returnconfig
- map of configuration parameters- Returns:
- list of policy entities matching the search criteria
- Throws:
EntitySearchException
AccessDeniedException
oracle.iam.platform.entitymgr.NoSuchEntityException
ValidationFailedException
-
lock
PolicyManagerResult lock(String policyId) throws ValidationFailedException, oracle.iam.platform.entitymgr.NoSuchEntityException, AccessDeniedException, EntityLockException Lock the policy associated with the specified policy entity id.- Parameters:
policyId
- the policy entity id to lock- Returns:
- PolicyManagerResult result of policy lock
- Throws:
ValidationFailedException
oracle.iam.platform.entitymgr.NoSuchEntityException
AccessDeniedException
EntityLockException
-
unlock
PolicyManagerResult unlock(String policyId) throws ValidationFailedException, oracle.iam.platform.entitymgr.NoSuchEntityException, AccessDeniedException, EntityLockException Unlock the policy associated with the specified policy entity id.- Parameters:
policyId
- the policy entity id to unlock- Returns:
- PolicyManagerResult result of policy unlock
- Throws:
ValidationFailedException
oracle.iam.platform.entitymgr.NoSuchEntityException
AccessDeniedException
EntityLockException
-
enable
PolicyManagerResult enable(String policyId) throws ValidationFailedException, EntityDisableException, oracle.iam.platform.entitymgr.NoSuchEntityException, AccessDeniedException, EntitySearchException, EntityModifyException, EntityLockedException Enable the policy associated with the specified policy entity id.- Parameters:
policyId
- the policy entity id to enable- Returns:
- PolicyManagerResult result of policy enable
- Throws:
ValidationFailedException
EntityDisableException
oracle.iam.platform.entitymgr.NoSuchEntityException
AccessDeniedException
EntitySearchException
EntityModifyException
EntityLockedException
-
disable
PolicyManagerResult disable(String policyId) throws ValidationFailedException, EntityDisableException, oracle.iam.platform.entitymgr.NoSuchEntityException, AccessDeniedException, EntitySearchException, EntityModifyException, EntityLockedException Disable the policy associated with the specified policy entity id.- Parameters:
policyId
- the policy entity id to disable- Returns:
- PolicyManagerResult result of policy disable
- Throws:
ValidationFailedException
EntityDisableException
oracle.iam.platform.entitymgr.NoSuchEntityException
AccessDeniedException
EntitySearchException
EntityModifyException
EntityLockedException
-
assignRuleToPolicy
PolicyManagerResult assignRuleToPolicy(String policyId, String ruleId, Long index) throws oracle.iam.platform.entitymgr.NoSuchEntityException, PolicyManagerException, AccessDeniedException, ValidationFailedException, EntityModifyException, EntitySearchException, EntityLockedException Assign the rule specified by the rule entity id to the policy specified by the policy entity id. The index parameter specifies the position in the rule set to insert the rule.- Parameters:
policyId
- the policy entity idruleId
- the rule entity idindex
- specifies the position in the rule set to insert the rule- Returns:
- PolicyManagerResult result of the polivy rule assigment
- Throws:
oracle.iam.platform.entitymgr.NoSuchEntityException
PolicyManagerException
AccessDeniedException
ValidationFailedException
EntityModifyException
EntitySearchException
EntityLockedException
-
unAssignRuleFromPolicy
PolicyManagerResult unAssignRuleFromPolicy(String policyId, String ruleId) throws oracle.iam.platform.entitymgr.NoSuchEntityException, PolicyManagerException, AccessDeniedException, EntityModifyException, ValidationFailedException, EntitySearchException, EntityLockedException Unassign the rule specified by the rule entity id from the policy specified by the policy entity id.- Parameters:
policyId
- the policy entity idruleId
- the rule entity id- Returns:
- PolicyManagerResult result of the policy rule unassignment
- Throws:
oracle.iam.platform.entitymgr.NoSuchEntityException
PolicyManagerException
AccessDeniedException
EntityModifyException
ValidationFailedException
EntitySearchException
EntityLockedException
-
getRulesAssignedToPolicy
List<Rule> getRulesAssignedToPolicy(String policyId) throws oracle.iam.platform.entitymgr.NoSuchEntityException, PolicyManagerException, AccessDeniedException, EntitySearchException, ValidationFailedException Return rules assigned to the policy specified by the policy entity id.- Parameters:
policyId
- the policy id- Returns:
- list of rules assigned to the policy
- Throws:
oracle.iam.platform.entitymgr.NoSuchEntityException
PolicyManagerException
AccessDeniedException
EntitySearchException
ValidationFailedException
-
reorderPolicyRules
PolicyManagerResult reorderPolicyRules(String policyId, Map<String, Long> orderedPolicyRules) throws oracle.iam.platform.entitymgr.NoSuchEntityException, EntityLockedException, ValidationFailedException, AccessDeniedException, EntityModifyExceptionReorder the rules of the policy associated with specified policy entity id. The orderedPolicyRules map specifies the new order of the rules.- Parameters:
policyId
- the policy entity idorderedPolicyRules
- map specifiying the new rule order- Returns:
- PolicyManagerResult result of the policy rule re-ordering
- Throws:
oracle.iam.platform.entitymgr.NoSuchEntityException
EntityLockedException
ValidationFailedException
AccessDeniedException
EntityModifyException
-
replacePolicyRules
PolicyManagerResult replacePolicyRules(String policyId, List<String> ruleIds) throws PolicyManagerException Replace all of the rules of the policy associated with the specified policy entity id, with the list of rule entity ids.- Parameters:
policyId
- the policy entity idruleIds
- list of rules defining new policy rule set and ordering- Returns:
- PolicyManagerResult result of the policy rule replacement
- Throws:
PolicyManagerException
-