Interface IActionHandlerFactory

All Known Implementing Classes:
ActionHandlerFactory, DefaultHandlerFactory, LinkedHandlerFactory

public interface IActionHandlerFactory
The action handler factory is responsible for providing implementations for action handlers.
Since:
5.0
Author:
O. Kerpershoek
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the action handler implementation for the specified action handler name.
  • Method Details

    • getHandler

      IActionHandler getHandler(String name)
      This method returns the action handler implementation for the specified action handler name. When no handler is available for the specified name, this method should throw an exception.
      Parameters:
      name - The name of the action handler that is requested.
      Returns:
      The action handler implementation for the specified name.
      Throws:
      PortalException - This exception is thrown when no action handler can be found for the specified name.