Uses of Interface
com.opensymphony.webwork.dispatcher.mapper.ActionMapper

Packages that use ActionMapper
com.opensymphony.webwork.dispatcher.mapper   
 

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

Classes in com.opensymphony.webwork.dispatcher.mapper that implement ActionMapper
 class 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.
 class DefaultActionMapper
          Default action mapper implementation, using the standard *.[ext] (where ext usually "action") pattern.
 class 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.

 

Methods in com.opensymphony.webwork.dispatcher.mapper that return ActionMapper
 ActionMapper CompositeActionMapper.ActionMapperInfo.getActionMapper()
          returns the ActionMapper.
static ActionMapper ActionMapperFactory.getMapper()
           
 

Constructors in com.opensymphony.webwork.dispatcher.mapper with parameters of type ActionMapper
CompositeActionMapper(ActionMapper[] actionMappers)
          Creates an instance of CompositeActionMapper with the pre-configured ActionMappers passed in as an array.
 


WebWork Project Page