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.
  • Field Details

  • 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 loaded
      requiredAttributeFlags - AccountService constant to indicate which type of attributes should be loaded for the account
      certCreationContext - Context to hold messages generated during certification creation
      Returns:
      Map of user id to list of accounts
    • getUserAccountsMap

      Map<Long,List<Account>> getUserAccountsMap(List<Long> userIds, int requiredAttributeFlags, boolean includeAppInstanceCatalogs, CertificationCreationContext certCreationContext, int accountStatus)
    • 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 loaded
      requiredAttributeFlags - AccountService constant to indicate which type of attributes should be loaded for the account
      context - RiskContext
      accountStatus - 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 loaded
      resourceIds - Required resources
      requiredAttributeFlags - 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 loaded
      appInstanceIds - Required app Instance Ids
      requiredAttributeFlags - 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, boolean includeAppInstanceCatalogs, CertificationCreationContext certCreationContext, int accountStatus)
    • getAccountsByEntitlementDefinition

      List<Account> getAccountsByEntitlementDefinition(Long entitlementDefinitionId)
      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

      List<Account> getAccountsByDataOwner(Long ownerId)
    • getUserAccountsByResourceTypes

      Map<Long,List<Account>> getUserAccountsByResourceTypes(List<Long> userIds, List<Long> certifiableResourceTypeIds, int attributeType)
    • getUserAccountsByResourceTypes

      Map<Long,List<Account>> getUserAccountsByResourceTypes(List<Long> userIds, List<Long> certifiableResourceTypeIds, int attributeType, boolean includeAppInstanceCatalog)
    • updateAccountsRiskAttributes

      void updateAccountsRiskAttributes(List<Account> accountsToUpdate)
    • 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

      List<Catalog> findCatalogs(List<Long> appInstancesIds)
    • getUserAccountsMap

      Map<Long,List<Account>> getUserAccountsMap(List<Long> userIds, int i, Object context)
    • getAccountsByAttributeValue

      List<Account> getAccountsByAttributeValue(Long attributeValueId, Long endPointId, CertificationCreationContext certCreationContext)
    • getAccountAttributes

      Map<Long,AccountAttributeValue> getAccountAttributes(Long attributeId, Long iamAttributeValueId, Long endpointId)
    • getAppInstanceIDByEntityId

      Long getAppInstanceIDByEntityId(Long id)
    • getAttributeValueByEntityId

      String getAttributeValueByEntityId(Long id)
    • getAttributeIdByEntityId

      Long getAttributeIdByEntityId(Long id)
    • getItemRiskByEntityId

      Integer getItemRiskByEntityId(Long id)
    • filterHighItemAttributeValueIds

      List<IDCEndPointAttributeValue> filterHighItemAttributeValueIds(List<IDCEndPointAttributeValue> values)
    • findCatalogsByEntitlementIds

      List<Catalog> findCatalogsByEntitlementIds(List<Long> entitlementIds)
    • getEntityIdsByDataOwnerId

      List<Long> getEntityIdsByDataOwnerId(Long id)
    • getDataOwnerIdByEntityId

      Long getDataOwnerIdByEntityId(Long id)
    • setDefaultItemRisksInCatalog

      void setDefaultItemRisksInCatalog(Integer defaultApplicationInstanceRiskLevel, Integer defaultEntitlementDefinitionRiskLevel)
    • getAttributeMapByEntitlementIds

      @Deprecated Map<Long,Long> getAttributeMapByEntitlementIds(List<Long> entitlementIds)
      Deprecated.
      returns a map where entitlement id is key and attribute id is value.
      Parameters:
      entitlementIds -
      Returns:
      map of attrbute ids.
    • getAttributesByEntitlementIds

      Map<Long,AccountAttributeValue> getAttributesByEntitlementIds(List<Long> entitlementIds)
      returns a map where entitlement id is key and attribute id is value.
      Parameters:
      entitlementIds -
      Returns:
      map of AccountAttributeValue.
    • getAppInstanceMapByEntitlementIds

      Map<Long,Long> getAppInstanceMapByEntitlementIds(List<Long> entitlementIds)
      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

      Set<Long> getDataOwnerIdsByEntityType(String entityType)
      retrieves distinct certifier users from catalog based on the given entity_type( Role, ApplicationInstance, Entitlement )
      Parameters:
      entityType -
      Returns:
      list of Longs ( certifier user keys )