Uses of Class
com.opensymphony.webwork.dispatcher.mapper.ActionMapping

Packages that use ActionMapping
com.opensymphony.webwork.dispatcher Classes for action dispatching in WebWork (the Controller part of MVC). 
com.opensymphony.webwork.dispatcher.mapper   
com.opensymphony.webwork.portlet.dispatcher   
 

Uses of ActionMapping in com.opensymphony.webwork.dispatcher
 

Methods in com.opensymphony.webwork.dispatcher with parameters of type ActionMapping
 Map DispatcherUtils.createContextMap(HttpServletRequest request, HttpServletResponse response, ActionMapping mapping, ServletContext context)
           
 void DispatcherUtils.serviceAction(HttpServletRequest request, HttpServletResponse response, ServletContext context, ActionMapping mapping)
          Loads the action and executes it.
 

Uses of ActionMapping in com.opensymphony.webwork.dispatcher.mapper
 

Subclasses of ActionMapping in com.opensymphony.webwork.dispatcher.mapper
 class ActionMappingEx
          An extension of ActionMapping including arguments like :- scheme includeContext encodeResult escapeAmp HttpServletRequest JttpServletResponse such that ActionMapper's implementation could used it to generate url through ActionMapper.getUriFromActionMapping(ActionMapping).
 

Methods in com.opensymphony.webwork.dispatcher.mapper that return ActionMapping
 ActionMapping ActionMapper.getMapping(HttpServletRequest request)
          Return the ActionMapping for the given HttpServletRequest, the format of HttpServletRequest url depends on the implementation of ActionMapper, eg.
 ActionMapping CompositeActionMapper.getMapping(HttpServletRequest request)
          This method will go through all the pre-configured ActionMappers in the order defined, and return the ActionMapping of the first ActionMapper that returns a valid (non-null) ActionMapping
 ActionMapping DefaultActionMapper.getMapping(HttpServletRequest request)
           
 ActionMapping RestfulActionMapper.getMapping(HttpServletRequest request)
          Attempt to return an ActionMapping for the supplied HttpServletRequest.
 

Methods in com.opensymphony.webwork.dispatcher.mapper with parameters of type ActionMapping
 String ActionMapper.getUriFromActionMapping(ActionMapping mapping)
          Return the uri of the ActionMapping passed in as the argument.
 String CompositeActionMapper.getUriFromActionMapping(ActionMapping mapping)
          This method will go through all the pre-configured ActionMappers in the order defined, and return the URI of the first that returns a valid (non-null) URI.
 String DefaultActionMapper.getUriFromActionMapping(ActionMapping mapping)
           
 String RestfulActionMapper.getUriFromActionMapping(ActionMapping mapping)
          Attempt to return a url, for the given ActionMapping passed in as its argument.
protected  void DefaultActionMapper.handleSpecialParameters(HttpServletRequest request, ActionMapping mapping)
          Extension hook, that handle special parameters, namely those with prefix eg.
protected  void DefaultActionMapper.parseNameAndNamespace(String uri, ActionMapping mapping)
           
 

Uses of ActionMapping in com.opensymphony.webwork.portlet.dispatcher
 

Methods in com.opensymphony.webwork.portlet.dispatcher that return ActionMapping
protected  ActionMapping Jsr168Dispatcher.getActionMapping(javax.portlet.PortletRequest request)
          Gets the namespace of the action from the request.
 

Methods in com.opensymphony.webwork.portlet.dispatcher with parameters of type ActionMapping
 void Jsr168Dispatcher.serviceAction(javax.portlet.PortletRequest request, javax.portlet.PortletResponse response, ActionMapping mapping, Map requestMap, Map parameterMap, Map sessionMap, Map applicationMap, String portletNamespace, Integer phase)
          Loads the action and executes it.
 


WebWork Project Page