Class AbstractUserNameGenerationPolicy

java.lang.Object
oracle.iam.identity.usermgmt.api.AbstractUserNameGenerationPolicy
All Implemented Interfaces:
UserNameGenerationPolicy, UserNamePolicy

public abstract class AbstractUserNameGenerationPolicy extends Object implements UserNameGenerationPolicy
Abstract class that implements deprecated API's so that custom policy implementations have no need to implement them.
Author:
madsharm TODO: Should we expose this to customers? If we dont, then customers will have to implement all the methods (both that accepts MAP<String,String> and MAP<String,Object> ).)
  • Field Details

    • EXISTING_DATA

      public static final String EXISTING_DATA
      Key/Constant to retrieve the User's existing attributes from the input parameter Map.
      See Also:
  • Constructor Details

    • AbstractUserNameGenerationPolicy

      public AbstractUserNameGenerationPolicy()
  • Method Details

    • getUserNameFromPolicy

      public String getUserNameFromPolicy(Map<String,String> reqData) throws UserNameGenerationException
      Description copied from interface: UserNamePolicy
      Generates a user name based on the user name generation policy using the user data available in the input Map
      Specified by:
      getUserNameFromPolicy in interface UserNamePolicy
      Parameters:
      reqData - the Map containing the user data
      Returns:
      the generated user name
      Throws:
      UserNameGenerationException - if there is an exception while generating the user name
    • isUserNameValid

      public boolean isUserNameValid(String userName, Map<String,String> reqData)
      Description copied from interface: UserNamePolicy
      Validates if the user name based on the user data specified in the input Map is valid as per the user name generation policy
      Specified by:
      isUserNameValid in interface UserNamePolicy
      Parameters:
      userName - the user name to be validated against the policy
      reqData - the Map containing the user data
      Returns:
      True if the user name is valid as per the policy, false otherwise