Class ActionHandler

java.lang.Object
com.mendix.core.actionmanagement.internal.ActionHandler

public class ActionHandler extends Object
Provides access to (internal) action handlers. This is an internal class that is not to be used and may change any time.
  • Field Details

  • Constructor Details

    • ActionHandler

      public ActionHandler()
  • Method Details

    • createCoreHandler

      public static CoreActionHandler createCoreHandler(IContext context)
      Creates a new action handler for the specified context.
      Parameters:
      context - the context for executing the action in
    • createLoginHandler

      public 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
    • convertToActionName

      public static String convertToActionName(String classOrActionName)
      Returns the name of a custom Java action from its name.
      Parameters:
      classOrActionName - the name of the action
      Returns:
      the action name
    • setHandlerFactory

      public static void setHandlerFactory(HandlerFactory handlerFactory)
      Initializes the handler factory.
      Parameters:
      handlerFactory - the factory to set