com.opensymphony.xwork.config.entities
Interface Parameterizable

All Known Implementing Classes:
ActionConfig, InterceptorConfig, ResultConfig

public interface Parameterizable

Actions implementing Parameterizable will receive a map of the static parameters defined in the action configuration.

The StaticParametersInterceptor must be in the action's interceptor queue for this to work.

Author:
Jason Carreira

Method Summary
 void addParam(java.lang.String name, java.lang.Object value)
           
 java.util.Map getParams()
           
 void setParams(java.util.Map params)
           
 

Method Detail

addParam

void addParam(java.lang.String name,
              java.lang.Object value)

setParams

void setParams(java.util.Map params)

getParams

java.util.Map getParams()

XWork Project Page