Package org.xwiki.context
Interface ExecutionContextInitializer
-
@Role public interface ExecutionContextInitializer
Role which allows different components to initialize every new execution context created, by adding, altering, or removing properties.- Version:
- $Id: c8f2feb6ff05c0ba8d5c7bda5cc3dda99a5c5a87 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
initialize(ExecutionContext context)
The method that will be called when a context is created.
-
-
-
Method Detail
-
initialize
void initialize(ExecutionContext context) throws ExecutionContextException
The method that will be called when a context is created.- Parameters:
context
- the execution context being created- Throws:
ExecutionContextException
- if the context is not in a state valid for an initializer
-
-