Enum AreaCategoryType
- java.lang.Object
-
- java.lang.Enum<AreaCategoryType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.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 Summary
Enum Constants Enum Constant Description ADMINISTRATION
General identity administration (IDM).DATA_PROTECTION
Data protection: management of consent, lawful bases, data regulation compliance, etc.GOVERNANCE
Identity governance: approvers, owners, governance policies, remediation.ORGANIZATION
Organizational management category: management of organizational trees, organizational unit membership, unit managers, etc.POLICY
General policy management: RBAC, provisioning policies, policy rules, etc.SELF_SERVICE
End-user self service: profile update, password change, role request, etc.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AreaCategoryType
fromValue(String v)
String
value()
static AreaCategoryType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AreaCategoryType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException
- if the argument is null
-
value
public String value()
-
fromValue
public static AreaCategoryType fromValue(String v)
-
-