Enum AreaCategoryType

  • All Implemented Interfaces:
    Serializable, Comparable<AreaCategoryType>

    public enum AreaCategoryType
    extends Enum<AreaCategoryType>
    Specifies category or "area" of a particular concept. Such category can be used to display the concepts in appropriate parts of user interface. For example the category may be used to display only governance-related relations in the governance UI panels.
    • 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()