Enum UserRecordType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<UserRecordType>

    public enum UserRecordType
    extends java.lang.Enum<UserRecordType>
    List all possible change of elements of the identity service
    Author:
    Baptiste Mesta, Matthieu Chaffotte
    • Enum Constant Detail

      • UPDATE_USER_PASSWORD

        public static final UserRecordType UPDATE_USER_PASSWORD
      • ADD_PROFILE_METADATA_DEFINITION

        public static final UserRecordType ADD_PROFILE_METADATA_DEFINITION
      • ADD_PROFILE_METADATA_VALUE

        public static final UserRecordType ADD_PROFILE_METADATA_VALUE
      • DELETE_PROFILE_METADATA_DEFINITION

        public static final UserRecordType DELETE_PROFILE_METADATA_DEFINITION
      • DELETE_PROFILE_METADATA_VALUE

        public static final UserRecordType DELETE_PROFILE_METADATA_VALUE
      • DELETE_USER_MEMBERSHIP

        public static final UserRecordType DELETE_USER_MEMBERSHIP
      • setUsersMemberships

        public static final UserRecordType setUsersMemberships
      • ADD_USER_MEMBERSHIP

        public static final UserRecordType ADD_USER_MEMBERSHIP
      • UPDTAE_PROFILE_METADATA_DEFINITION

        public static final UserRecordType UPDTAE_PROFILE_METADATA_DEFINITION
      • UPDATE_PROFILE_METADATA_VALUE

        public static final UserRecordType UPDATE_PROFILE_METADATA_VALUE
      • UPDATE_USER_MEMBERSHIP

        public static final UserRecordType UPDATE_USER_MEMBERSHIP
    • Method Detail

      • values

        public static UserRecordType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (UserRecordType c : UserRecordType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UserRecordType valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null