Package com.evolveum.midpoint.ninja.impl
Enum Class NinjaApplicationContextLevel
java.lang.Object
java.lang.Enum<NinjaApplicationContextLevel>
com.evolveum.midpoint.ninja.impl.NinjaApplicationContextLevel
- All Implemented Interfaces:
- Serializable,- Comparable<NinjaApplicationContextLevel>,- Constable
Represents different levels of Spring application context initialization for midpoint.
 Each ninja action requires different levels of midpoint being initialized, starting from 
NONE
 up to FULL_REPOSITORY with full repository/audit initialization.- Author:
- Viliam Repan
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionFull repository and audit layer initialization.Midpoint configuration and prism related beans are initialized.No initialization required.Only midpoint configuration related beans are initialized.
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionbooleanstatic NinjaApplicationContextLevelReturns the enum constant of this class with the specified name.static NinjaApplicationContextLevel[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
NONENo initialization required.
- 
STARTUP_CONFIGURATIONOnly midpoint configuration related beans are initialized.
- 
NO_REPOSITORYMidpoint configuration and prism related beans are initialized.
- 
FULL_REPOSITORYFull repository and audit layer initialization.
 
- 
- 
Field Details- 
contexts
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
- 
containsPrismInitializationpublic boolean containsPrismInitialization()
 
-