Package org.smooks.api.lifecycle
Interface PreExecutionLifecycle
-
- All Known Implementing Classes:
CounterVisitor
,NestedSmooksVisitor
,StaticProxyInterceptor
public interface PreExecutionLifecycle
Execution Lifecycle Initializable resource.- Author:
- tom.fennelly@gmail.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onPreExecution(ExecutionContext executionContext)
Initialize the resources allocated by this resource for the specified ExecutionContext.
-
-
-
Method Detail
-
onPreExecution
void onPreExecution(ExecutionContext executionContext)
Initialize the resources allocated by this resource for the specified ExecutionContext. Executes the initialization at the start of the filter execution.- Parameters:
executionContext
- The ExecutionContext.
-
-