Enum AreaCategoryType

  • All Implemented Interfaces:
    Serializable, Comparable<AreaCategoryType>

    public enum AreaCategoryType
    extends Enum<AreaCategoryType>

    Java class for AreaCategoryType.

    The following schema fragment specifies the expected content contained within this class.

     <simpleType name="AreaCategoryType">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="administration"/>
         <enumeration value="organization"/>
         <enumeration value="governance"/>
         <enumeration value="policy"/>
         <enumeration value="selfService"/>
         <enumeration value="dataProtection"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • ADMINISTRATION

        public static final AreaCategoryType ADMINISTRATION
        General identity administration (IDM). Functionality available to a common identity administrator.
      • ORGANIZATION

        public static final AreaCategoryType ORGANIZATION
        Organizational management category: management of organizational trees, organizational unit membership, unit managers, etc.
      • GOVERNANCE

        public static final AreaCategoryType GOVERNANCE
        Identity governance: approvers, owners, governance policies, remediation.
      • POLICY

        public static final AreaCategoryType POLICY
        General policy management: RBAC, provisioning policies, policy rules, etc.
      • SELF_SERVICE

        public static final AreaCategoryType SELF_SERVICE
        End-user self service: profile update, password change, role request, etc.
      • DATA_PROTECTION

        public static final AreaCategoryType DATA_PROTECTION
        Data protection: management of consent, lawful bases, data regulation compliance, etc.
    • Method Detail

      • values

        public static AreaCategoryType[] 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 (AreaCategoryType c : AreaCategoryType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AreaCategoryType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • value

        public String value()