Enum Class AreaCategoryType

java.lang.Object
java.lang.Enum<AreaCategoryType>
com.evolveum.midpoint.xml.ns._public.common.common_3.AreaCategoryType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<AreaCategoryType>, Constable

public enum AreaCategoryType extends Enum<AreaCategoryType> implements TypeSafeEnum
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 Details

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

    • values

      public static AreaCategoryType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AreaCategoryType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static AreaCategoryType fromValue(String v)