Package org.jeyzer.publish
Interface JzrActionHandler
- 
public interface JzrActionHandlerEach JzrAction handler object :
- is a reference to a current action declared with Jeyzer.
 - handles only one action at a time.
 - must be unique per thread.
 
Handlers are obtained from the Jeyzer Publisher instance and must be called on startAction to register the action with Jeyzer.
Once the action is completed, the closeAction method must be called to release the action context.
Thread safe 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcloseAction()Close the actionvoidsetContextParameter(java.lang.String param, java.lang.String value)Set the action context parametervoidstartAction(JzrActionContext context)Declare a starting action with Jeyzer 
 - 
 
- 
- 
Method Detail
- 
startAction
void startAction(JzrActionContext context)
Declare a starting action with Jeyzer- Parameters:
 context- the associated action context.
 
- 
closeAction
void closeAction()
Close the action 
- 
setContextParameter
void setContextParameter(java.lang.String param, java.lang.String value)Set the action context parameter- Parameters:
 param- the context parametervalue- the context value
 
 - 
 
 -