Enum LensContext.AuthorizationState
- java.lang.Object
-
- java.lang.Enum<LensContext.AuthorizationState>
-
- com.evolveum.midpoint.model.impl.lens.LensContext.AuthorizationState
-
- All Implemented Interfaces:
Serializable
,Comparable<LensContext.AuthorizationState>
- Enclosing class:
- LensContext<F extends ObjectType>
public static enum LensContext.AuthorizationState extends Enum<LensContext.AuthorizationState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FULL
The full authorization was carried out.NONE
No authorization was carried out yet.PRELIMINARY
Only preliminary authorization was carried out (without e.g.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LensContext.AuthorizationState
valueOf(String name)
Returns the enum constant of this type with the specified name.static LensContext.AuthorizationState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final LensContext.AuthorizationState NONE
No authorization was carried out yet.
-
PRELIMINARY
public static final LensContext.AuthorizationState PRELIMINARY
Only preliminary authorization was carried out (without e.g. org or tenant clauses).
-
FULL
public static final LensContext.AuthorizationState FULL
The full authorization was carried out.
-
-
Method Detail
-
values
public static LensContext.AuthorizationState[] 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 (LensContext.AuthorizationState c : LensContext.AuthorizationState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LensContext.AuthorizationState 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
-
-