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 SummaryEnum Constants Enum Constant Description FULLThe full authorization was carried out.NONENo authorization was carried out yet.PRELIMINARYOnly preliminary authorization was carried out (without e.g.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static LensContext.AuthorizationStatevalueOf(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- 
NONEpublic static final LensContext.AuthorizationState NONE No authorization was carried out yet.
 - 
PRELIMINARYpublic static final LensContext.AuthorizationState PRELIMINARY Only preliminary authorization was carried out (without e.g. org or tenant clauses).
 - 
FULLpublic static final LensContext.AuthorizationState FULL The full authorization was carried out.
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-