Interface ScanRunManager
-
Method Summary
Modifier and TypeMethodDescriptioncreateAccessRequestPreventivePreviewScan
(RequestData requestData) Deprecated.11.1.2.3.0 This method is for OIM internal use only and might be removed in a future release.createDetectivePreviewScan
(BasicSelectionCriteria userCriteria, String policyId) Perform an asynchronous detective preview scan of the specified users using the specified audit policy.boolean
createDetectiveScan
(String scanDefinitionName, String jobName, Trigger trigger) Create and schedule a job to run a detective scan using the given IDA Scan definition.createRoleLCMPreventivePreviewScan
(Role role, String requestId) Deprecated.11.1.2.3.0 This method is for OIM internal use only and might be removed in a future release.createRolePreventivePreviewScan
(Role role, boolean useDefaultPolicySet, Set<String> auditPolicyIds) Perform a synchronous audit policy scan to find the set of violations that would be introduced if the specified role were to be modified by the addition or removal of the access policies as specified in the Role attributes.createUserPreventivePreviewScan
(RequestData requestData, boolean useDefaultPolicySet, Set<String> policyIds) Perform a synchronous audit policy scan to find the set of violations that would be introduced if the specified request (requestData) were granted.void
deleteByScanToken
(String scanToken) Delete the ScanRun entity identified by the supplied scanToken.findPolicyScanRuns
(String policyId, SearchCriteria criteria, Set<String> retAttrs, Map<String, Object> configParams) Return list of ScanRun entities matching the search criteria for the policy Id.findPolicyViolations
(String scanRunId, SearchCriteria policyViolationCriteria, Set<String> retAttrs, Map<String, Object> configParams) For the specified scan run find the PolicyViolation entities matching the search criteria.getDetails
(String scanRunId, Set<String> retAttrs) Return specified ScanRun entity populated with specified attributes.Return list of ScanRun entities matching the search criteria.void
stopDetectivePreviewScan
(String scanToken) Stop the asynchronous policy preview scan.
-
Method Details
-
createAccessRequestPreventivePreviewScan
@Deprecated String createAccessRequestPreventivePreviewScan(RequestData requestData) throws InvalidArgumentException Deprecated.11.1.2.3.0 This method is for OIM internal use only and might be removed in a future release. UsecreateUserPreventivePreviewScan(oracle.iam.request.vo.RequestData, boolean, java.util.Set<java.lang.String>)
Authorization: Caller must be authorized to submit
requestData
- Parameters:
requestData
-- Returns:
- Throws:
InvalidArgumentException
-
createDetectivePreviewScan
String createDetectivePreviewScan(BasicSelectionCriteria userCriteria, String policyId) throws InvalidArgumentException Perform an asynchronous detective preview scan of the specified users using the specified audit policy.- Parameters:
userCriteria
- criteria to be used when selecting users for the scanpolicyId
- ID of the audit policy to be used for the scan- Returns:
- the token associated with the scan run. The token can be used to
manage the scan run and to retrieve PolicyViolations produced by the
scan;
null
if no violations were produced. - Throws:
InvalidArgumentException
-
createDetectiveScan
boolean createDetectiveScan(String scanDefinitionName, String jobName, Trigger trigger) throws AlreadyExistsException, InvalidArgumentException Create and schedule a job to run a detective scan using the given IDA Scan definition.- Parameters:
scanDefinitionName
- - name of the definition to use for the jobjobName
- - name for the jobtrigger
- - scheduling information. If trigger is null, job will be added in the system but will not run.- Returns:
- true if successful
- Throws:
AlreadyExistsException
InvalidArgumentException
-
createRoleLCMPreventivePreviewScan
@Deprecated String createRoleLCMPreventivePreviewScan(Role role, String requestId) throws InvalidArgumentException Deprecated.11.1.2.3.0 This method is for OIM internal use only and might be removed in a future release. UsecreateRolePreventivePreviewScan(oracle.iam.identity.rolemgmt.vo.Role, boolean, java.util.Set<java.lang.String>)
Perform a synchronous audit policy scan to find the set of violations that would be introduced if the specified role were to be modified by the addition or removal of the access policies as specified in the Role attributes- Parameters:
role
- theRole
instance to examinerequestId
- required during request approval (supposing the request was submitted with one or more outstanding violations)- Returns:
- a token that can be used to retrieve PolicyViolations produced by
the scan;
null
if no violations were produced - Throws:
InvalidArgumentException
-
createRolePreventivePreviewScan
String createRolePreventivePreviewScan(Role role, boolean useDefaultPolicySet, Set<String> auditPolicyIds) throws InvalidArgumentException Perform a synchronous audit policy scan to find the set of violations that would be introduced if the specified role were to be modified by the addition or removal of the access policies as specified in the Role attributes.Caller may set useDefaultPolicySet to TRUE and provide zero or more audit policy IDs to augment the default list, or may set the flag to false and provide one or more audit policy IDs to be scanned.
- Parameters:
role
- theRole
instance to examineuseDefaultPolicySet
- iftrue
, the scan will use default and any additional policies specified; otherwise, the scan will not use default policiesauditPolicyIds
- Additional policies to apply- Returns:
- a token that can be used to retrieve PolicyViolations produced by
the scan;
null
if no violations were produced - Throws:
InvalidArgumentException
-
createUserPreventivePreviewScan
String createUserPreventivePreviewScan(RequestData requestData, boolean useDefaultPolicySet, Set<String> policyIds) throws InvalidArgumentException Perform a synchronous audit policy scan to find the set of violations that would be introduced if the specified request (requestData) were granted. Caller may set useDefaultPolicySet to TRUE and provide zero or more policy IDs to augment the default list, or may set the flag to false and provide one or more policy IDs to be scanned.- Parameters:
requestData
- Request data which includes users (Beneficiary
) and requested access (RequestBeneficiaryEntity
)useDefaultPolicySet
- iftrue
, the scan will use default and any additional policies specified; otherwise, the scan will not use default policiespolicyIds
- Additional policies to apply- Returns:
- a token that can be used to retrieve PolicyViolations produced by
the scan;
null
if no violations were produced - Throws:
InvalidArgumentException
-
deleteByScanToken
Delete the ScanRun entity identified by the supplied scanToken. Any associated preview policy violations will also be deleted.- Parameters:
scanToken
- Token associated with a preview scan and violations- Throws:
InvalidArgumentException
-
getDetails
Return specified ScanRun entity populated with specified attributes.- Parameters:
scanRunId
- - ID of entity to be retrieved.retAttrs
- - Attributes to be loaded. Usenull
to get all attributes.- Returns:
- ScanRun object containing specified attributes.
- Throws:
InvalidArgumentException
-
search
List<ScanRun> search(SearchCriteria criteria, Set<String> retAttrs, Map<String, Object> configParams) Return list of ScanRun entities matching the search criteria. Each returned entity will be populated with specified attributes. Range of items can be specified using configParams Ordering of items can be specified using configParams- Parameters:
criteria
- search criteria indicating which objects to retrieve. Usenull
to get all objects.retAttrs
- attributes to be filled in for each object returned. Usenull
to get all attributes.configParams
- Parameters to configure ordering and range of results. Usenull
to get all results without sorting. There are four configuration parameters: STARTROW, ENDROW, SORTEDBY and SORTORDER. Defined as String constants in package oracle.iam.identity.utils.Constants: SEARCH_STARTROW, SEARCH_ENDROW, SEARCH_SORTEDBY and SEARCH_SORTORDERThe STARTROW and ENDROW parameters indicate the subset of the complete search result to be fetched. Default values are -1 (complete results are returned). If ENDROW < STARTROW then an IllegalArgumentException is thrown
The SORTEDBY parameter indicates the attribute used for sorting. This parameter is optional and set to null by default.
The SORTORDER parameter indicates order of sorting: ASCENDING or DESCENDING. Defined as an enum in package oracle.iam.platform.entitymgr.spi.entity.Searchable.SortOrder. This parameter is optional and is ASCENDING by default.
- Returns:
- list of ScanRun objects containing specified attributes.
NOTE: Can throw IDAEngineException - A runtime exception containing information on how to find detailed information in a server log.
-
findPolicyViolations
List<PolicyViolation> findPolicyViolations(String scanRunId, SearchCriteria policyViolationCriteria, Set<String> retAttrs, Map<String, Object> configParams) For the specified scan run find the PolicyViolation entities matching the search criteria. Each returned entity will be populated with specified attributes. Range of items can be specified using configParams Ordering of items can be specified using configParams- Parameters:
policyViolationCriteria
- Search criteria indicating which objects to retrieve. Usenull
to get all objects.retAttrs
- Attributes to be filled in for each object returned. Usenull
to get all attributes.configParams
- Parameters to configure ordering and range of results. Usenull
to get all results without sorting. There are four configuration parameters: STARTROW, ENDROW, SORTEDBY and SORTORDER. Defined as String constants in package oracle.iam.identity.utils.Constants: SEARCH_STARTROW, SEARCH_ENDROW, SEARCH_SORTEDBY and SEARCH_SORTORDERThe STARTROW and ENDROW parameters indicate the subset of the complete search result to be fetched. Default values are -1 (complete results are returned). If ENDROW < STARTROW then an IllegalArgumentException is thrown
The SORTEDBY parameter indicates the attribute used for sorting. This parameter is optional and set to null by default.
The SORTORDER parameter indicates order of sorting: ASCENDING or DESCENDING. Defined as an enum in package oracle.iam.platform.entitymgr.spi.entity.Searchable.SortOrder. This parameter is optional and is ASCENDING by default.
- Returns:
- List of PolicyViolation objects containing specified attributes.
NOTE: Can throw IDAEngineException - A runtime exception containing information on how to find detailed information in a server log.
-
findPolicyScanRuns
List<ScanRun> findPolicyScanRuns(String policyId, SearchCriteria criteria, Set<String> retAttrs, Map<String, Object> configParams) Return list of ScanRun entities matching the search criteria for the policy Id. Each returned entity will be populated with specified attributes. Range of items can be specified using configParams Ordering of items can be specified using configParams- Parameters:
policyId
- PolicyId in question for associated preview scan runs.criteria
- Search criteria indicating which objects to retrieve. Usenull
to get all objects.retAttrs
- Attributes to be filled in for each object returned. Usenull
to get all attributes.configParams
- Parameters to configure ordering and range of results. Usenull
to get all results without sorting. There are four configuration parameters: STARTROW, ENDROW, SORTEDBY and SORTORDER. Defined as String constants in package oracle.iam.identity.utils.Constants: SEARCH_STARTROW, SEARCH_ENDROW, SEARCH_SORTEDBY and SEARCH_SORTORDERThe STARTROW and ENDROW parameters indicate the subset of the complete search result to be fetched. Default values are -1 (complete results are returned). If ENDROW < STARTROW then an IllegalArgumentException is thrown
The SORTEDBY parameter indicates the attribute used for sorting. This parameter is optional and set to null by default.
The SORTORDER parameter indicates order of sorting: ASCENDING or DESCENDING. Defined as an enum in package oracle.iam.platform.entitymgr.spi.entity.Searchable.SortOrder. This parameter is optional and is ASCENDING by default.
- Returns:
- List of ScanRun objects containing specified attributes. NOTE: Can throw IDAEngineException - A runtime exception containing information on how to find detailed information in a server log.
-
stopDetectivePreviewScan
Stop the asynchronous policy preview scan.- Parameters:
scanToken
- token returned bycreateDetectivePreviewScan(oracle.iam.certification.vo.BasicSelectionCriteria, java.lang.String)
- Throws:
InvalidArgumentException
-