Interface HandlerFactory
public interface HandlerFactory
Provides the interface for creating action handlers. This is an internal interface that is not to be used and may change any time.
-
Method Summary
Modifier and TypeMethodDescriptioncreateCoreActionHandler
(IContext context) Creates an action handler for the specified context.createLoginActionHandler
(IContext context, Map<String, ? extends Object> params) Creates a login handler for the specified context.validateAndConvertToActionName
(String classOrActionName) Returns the name of a custom Java action from its name.
-
Method Details
-
createCoreActionHandler
Creates an action handler for the specified context.- Parameters:
context
- the context to execute the action in- Returns:
- the created action handler
-
createLoginActionHandler
Creates a login handler for the specified context.- Parameters:
context
- the context to execute the action inparams
- the parameters for the login action- Returns:
- the created login handler
-
validateAndConvertToActionName
Returns the name of a custom Java action from its name.- Parameters:
classOrActionName
- the name of the action- Returns:
- the action name
-