Package com.opensymphony.webwork.dispatcher.mapper

Interface Summary
ActionMapper The ActionMapper is responsible for providing a mapping between HTTP requests and action invocation requests and vice-versa.
 

Class Summary
ActionMapperFactory Factory that creates ActionMappers.
ActionMapping Simple class that holds the action mapping information used to invoke a WebWork action.
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).
CompositeActionMapper This is an ActionMapper that could take in ActionMappers and consult each ActionMapper in the order they are given where ActionMapper with higher order will take precedence.
DefaultActionMapper Default action mapper implementation, using the standard *.[ext] (where ext usually "action") pattern.
RestfulActionMapper A custom action mapper using the following format:

http://HOST/ACTION_NAME/PARAM_NAME1/PARAM_VALUE1/PARAM_NAME2/PARAM_VALUE2

You can have as many parameters you'd like to use.

 


WebWork Project Page