Class ActionHandler
java.lang.Object
com.mendix.core.actionmanagement.internal.ActionHandler
Provides access to (internal) action handlers. This is an internal class that is not to be used and may change any time.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final ConcurrentHashMap<String, HandlerFactory> All action handlers by Mendix instance ID.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic StringconvertToActionName(String classOrActionName) Returns the name of a custom Java action from its name.static CoreActionHandlercreateCoreHandler(IContext context) Creates a new action handler for the specified context.static LoginActionHandlercreateLoginHandler(IContext context, Map<String, ? extends Object> params) Creates a new action handler with parameters for the specified context.static voidsetHandlerFactory(HandlerFactory handlerFactory) Initializes the handler factory.
- 
Field Details- 
handlerFactoriesAll action handlers by Mendix instance ID.
 
- 
- 
Constructor Details- 
ActionHandlerpublic ActionHandler()
 
- 
- 
Method Details- 
createCoreHandlerCreates a new action handler for the specified context.- Parameters:
- context- the context for executing the action in
 
- 
createLoginHandlerpublic static LoginActionHandler createLoginHandler(IContext context, Map<String, ? extends Object> params) Creates a new action handler with parameters for the specified context.- Parameters:
- context- the context for executing the action in
- params- the parameters for the action by name
 
- 
convertToActionNameReturns the name of a custom Java action from its name.- Parameters:
- classOrActionName- the name of the action
- Returns:
- the action name
 
- 
setHandlerFactoryInitializes the handler factory.- Parameters:
- handlerFactory- the factory to set
 
 
-