Package oracle.iam.oimcommon.api
Interface AccountService
public interface AccountService
TODO: Discuss about how to define constants.
Service interface to facilitate all Account related APIs which will be made thorugh OIMClient. Wrapper around OIMClient to hide complex API call patterns.
Service interface to facilitate all Account related APIs which will be made thorugh OIMClient. Wrapper around OIMClient to hide complex API call patterns.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
static final int
static final int
static final int
static final int
static final int
static final int
static final int
static final int
static final int
static final int
static final int
-
Method Summary
Modifier and TypeMethodDescriptionfindCatalogs
(List<Long> appInstancesIds) findCatalogsByEntitlementIds
(List<Long> entitlementIds) getAccountAttributes
(Long attributeId, Long iamAttributeValueId, Long endpointId) getAccountsByAttributeValue
(Long attributeValueId, Long endPointId, CertificationCreationContext certCreationContext) getAccountsByDataOwner
(Long ownerId) getAccountsByEntitlementDefinition
(Long entitlementDefinitionId) Returns the list of accounts which are using the given entitlement definitiongetAccountsMapByEntitlementIds
(List<Long> entitlementIds, Long appInstanceId, int accountStatus, Set<Long> setOfUserIds, CertificationCreationContext certCreationContext) retrieves accounts by entitlement ids and app instance idgetAccountsMapByEntitlementIds
(List<Long> entitlementIds, Long appInstanceId, int accountStatus, CertificationCreationContext certCreationContext) retrieves accounts by entitlement ids and app instance id.getAppInstanceMapByEntitlementIds
(List<Long> entitlementIds) returns a map where entitlement id is key and app instance id is value.getAttributeMapByEntitlementIds
(List<Long> entitlementIds) Deprecated.getAttributesByEntitlementIds
(List<Long> entitlementIds) returns a map where entitlement id is key and attribute id is value.getDataOwnerIdsByEntityType
(String entityType) retrieves distinct certifier users from catalog based on the given entity_type( Role, ApplicationInstance, Entitlement )getUserAccountsByResourceTypes
(List<Long> userIds, List<Long> certifiableResourceTypeIds, int attributeType) getUserAccountsByResourceTypes
(List<Long> userIds, List<Long> certifiableResourceTypeIds, int attributeType, boolean includeAppInstanceCatalog) getUserAccountsMap
(List<Long> userIds, int requiredAttributeFlags, boolean includeAppInstanceCatalogs, CertificationCreationContext certCreationContext, int accountStatus) getUserAccountsMap
(List<Long> userIds, int i, Object context) getUserAccountsMap
(List<Long> userIds, int requiredAttributeFlags, CertificationCreationContext certCreationContext) Returns map of userId(key) to list of accounts(value) for given user ids.getUserAccountsMap
(List<Long> userIds, int requiredAttributeFlags, RiskContext context, int accountStatus, CertificationCreationContext certCreationContext) getUserAccountsMapByAppInstanceIds
(List<Long> userIds, List<Long> appInstanceIds, int requiredAttributeFlags, boolean includeAppInstanceCatalogs, CertificationCreationContext certCreationContext, int accountStatus) getUserAccountsMapByAppInstanceIds
(List<Long> userIds, List<Long> appInstanceIds, int requiredAttributeFlags, CertificationCreationContext certCreationContext, int accountStatus) Returns map of userId(key) to list of accounts(value) for given user ids from given resourcesgetUserAccountsMapByResource
(List<Long> userIds, List<Long> resourceIds, int requiredAttributeFlags) Returns map of userId(key) to list of accounts(value) for given user ids from given resourcesvoid
setDefaultItemRisksInCatalog
(Integer defaultApplicationInstanceRiskLevel, Integer defaultEntitlementDefinitionRiskLevel) void
updateAccountOpenSod
(long userId, long acctId, boolean openSod) Update OPEN_SOD attribute for specified Account (Table OIU) NOTE: risk update date set to null to indicate risk needs re-calculatingvoid
updateAccountsAttributeValueRiskAttributes
(List<AccountAttributeValue> accountAttributeValuesToUpdate) void
updateAccountsRiskAttributes
(List<Account> accountsToUpdate) void
updateEntAsgnOpenSod
(long userId, long acctId, long entAsgnId, boolean openSod) Update OPEN_SOD attribute for specified EntitlementAssignment (Table ENT_ASSIGN) NOTE: risk update date set to null to indicate risk needs re-calculating
-
Field Details
-
MANDATORY_ATTRIBUTES
static final int MANDATORY_ATTRIBUTES- See Also:
-
MANAGED_ATTRIBUTES
static final int MANAGED_ATTRIBUTES- See Also:
-
AUDITABLE_ATTRIBUTES
static final int AUDITABLE_ATTRIBUTES- See Also:
-
IMPORTABLE_ATTRIBUTES
static final int IMPORTABLE_ATTRIBUTES- See Also:
-
MINABLE_ATTRIBUTES
static final int MINABLE_ATTRIBUTES- See Also:
-
ENTITLEMENT_MINABLE_ATTRIBUTES
static final int ENTITLEMENT_MINABLE_ATTRIBUTES- See Also:
-
CERTIFIABLE_ATTRIBUTES
static final int CERTIFIABLE_ATTRIBUTES- See Also:
-
MANGED_MANDATORY_ATTRIBUTES
static final int MANGED_MANDATORY_ATTRIBUTES- See Also:
-
ALL_ATTRIBUTES
static final int ALL_ATTRIBUTES- See Also:
-
ALL_ACCOUNTS
static final int ALL_ACCOUNTS- See Also:
-
ACTIVE_ACCOUNTS
static final int ACTIVE_ACCOUNTS- See Also:
-
ACTIVE_AND_DISABLED_ACCOUNTS
static final int ACTIVE_AND_DISABLED_ACCOUNTS- See Also:
-
-
Method Details
-
getUserAccountsMap
Map<Long,List<Account>> getUserAccountsMap(List<Long> userIds, int requiredAttributeFlags, CertificationCreationContext certCreationContext) Returns map of userId(key) to list of accounts(value) for given user ids.- Parameters:
userIds
- List of user Ids for which accounts are to be loadedrequiredAttributeFlags
- AccountService constant to indicate which type of attributes should be loaded for the accountcertCreationContext
- Context to hold messages generated during certification creation- Returns:
- Map of user id to list of accounts
-
getUserAccountsMap
-
getUserAccountsMap
Map<Long,List<Account>> getUserAccountsMap(List<Long> userIds, int requiredAttributeFlags, RiskContext context, int accountStatus, CertificationCreationContext certCreationContext) - Parameters:
userIds
- List of user Ids for which accounts are to be loadedrequiredAttributeFlags
- AccountService constant to indicate which type of attributes should be loaded for the accountcontext
- RiskContextaccountStatus
- ALL_ACCOUNTS | ACTIVE_ACCOUNTS- Returns:
- Map of user id to list of accounts
-
getUserAccountsMapByResource
Map<Long,List<Account>> getUserAccountsMapByResource(List<Long> userIds, List<Long> resourceIds, int requiredAttributeFlags) Returns map of userId(key) to list of accounts(value) for given user ids from given resources- Parameters:
userIds
- List of user Ids for which accounts are to be loadedresourceIds
- Required resourcesrequiredAttributeFlags
- AccountService constant to indicate which type of attributes should be loaded for the account- Returns:
- Map of user id to list of accounts
-
getUserAccountsMapByAppInstanceIds
Map<Long,List<Account>> getUserAccountsMapByAppInstanceIds(List<Long> userIds, List<Long> appInstanceIds, int requiredAttributeFlags, CertificationCreationContext certCreationContext, int accountStatus) Returns map of userId(key) to list of accounts(value) for given user ids from given resources- Parameters:
userIds
- List of user Ids for which accounts are to be loadedappInstanceIds
- Required app Instance IdsrequiredAttributeFlags
- AccountService constant to indicate which type of attributes should be loaded for the account- Returns:
- Map of user id to list of accounts
-
getUserAccountsMapByAppInstanceIds
-
getAccountsByEntitlementDefinition
Returns the list of accounts which are using the given entitlement definition- Parameters:
entitlementDefinitionId
- Id of the entitlement definition for which accounts are to be queried- Returns:
- List of accounts which are using the given entitlement definition
-
getAccountsByDataOwner
-
getUserAccountsByResourceTypes
-
getUserAccountsByResourceTypes
-
updateAccountsRiskAttributes
-
updateAccountOpenSod
void updateAccountOpenSod(long userId, long acctId, boolean openSod) Update OPEN_SOD attribute for specified Account (Table OIU) NOTE: risk update date set to null to indicate risk needs re-calculating -
updateEntAsgnOpenSod
void updateEntAsgnOpenSod(long userId, long acctId, long entAsgnId, boolean openSod) Update OPEN_SOD attribute for specified EntitlementAssignment (Table ENT_ASSIGN) NOTE: risk update date set to null to indicate risk needs re-calculating -
updateAccountsAttributeValueRiskAttributes
void updateAccountsAttributeValueRiskAttributes(List<AccountAttributeValue> accountAttributeValuesToUpdate) -
findCatalogs
-
getUserAccountsMap
-
getAccountsByAttributeValue
List<Account> getAccountsByAttributeValue(Long attributeValueId, Long endPointId, CertificationCreationContext certCreationContext) -
getAccountAttributes
-
getAppInstanceIDByEntityId
-
getAttributeValueByEntityId
-
getAttributeIdByEntityId
-
getItemRiskByEntityId
-
filterHighItemAttributeValueIds
List<IDCEndPointAttributeValue> filterHighItemAttributeValueIds(List<IDCEndPointAttributeValue> values) -
findCatalogsByEntitlementIds
-
getEntityIdsByDataOwnerId
-
getDataOwnerIdByEntityId
-
setDefaultItemRisksInCatalog
-
getAttributeMapByEntitlementIds
Deprecated.returns a map where entitlement id is key and attribute id is value.- Parameters:
entitlementIds
-- Returns:
- map of attrbute ids.
-
getAttributesByEntitlementIds
returns a map where entitlement id is key and attribute id is value.- Parameters:
entitlementIds
-- Returns:
- map of AccountAttributeValue.
-
getAppInstanceMapByEntitlementIds
returns a map where entitlement id is key and app instance id is value.- Parameters:
entitlementIds
-- Returns:
-
getAccountsMapByEntitlementIds
Map<String,List<Account>> getAccountsMapByEntitlementIds(List<Long> entitlementIds, Long appInstanceId, int accountStatus, CertificationCreationContext certCreationContext) retrieves accounts by entitlement ids and app instance id.- Parameters:
entitlementIds
-appInstanceId
-- Returns:
- Map with key being entitlementId+@+AppInstanceId and value being the accounts for given entitlement in given app instance
-
getAccountsMapByEntitlementIds
Map<String,List<Account>> getAccountsMapByEntitlementIds(List<Long> entitlementIds, Long appInstanceId, int accountStatus, Set<Long> setOfUserIds, CertificationCreationContext certCreationContext) retrieves accounts by entitlement ids and app instance id- Parameters:
entitlementIds
-appInstanceId
-accountStatus
-certCreationContext
-setOfUserIds
-- Returns:
- Map with key being entitlementId+@+AppInstanceId and value being the accounts for given entitlement in given app instance
-
getDataOwnerIdsByEntityType
retrieves distinct certifier users from catalog based on the given entity_type( Role, ApplicationInstance, Entitlement )- Parameters:
entityType
-- Returns:
- list of Longs ( certifier user keys )
-