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 Created Jun 2, 2003 9:56:10 PM

Method Summary
 void addParam(String name, Object value)
           
 Map getParams()
           
 void setParams(Map params)
           
 

Method Detail

addParam

public void addParam(String name,
                     Object value)

setParams

public void setParams(Map params)

getParams

public Map getParams()

XWork Project Page