| |
|
| java.lang.Object com.opensymphony.xwork.util.location.Located com.opensymphony.xwork.config.entities.InterceptorStackConfig
InterceptorStackConfig | public class InterceptorStackConfig extends Located implements InterceptorListHolder,Serializable(Code) | | Configuration for InterceptorStack.
In the xml configuration file this is defined as the interceptor-stack tag.
author: Mike author: Rainer Hermanns author: tmjee version: $Date: 2007-05-20 19:57:53 +0200 (Sun, 20 May 2007) $ $Id: InterceptorStackConfig.java 1515 2007-05-20 17:57:53Z tm_jee $ |
InterceptorStackConfig | public InterceptorStackConfig()(Code) | | Creates an InterceptorStackConfig object.
|
InterceptorStackConfig | public InterceptorStackConfig(String name)(Code) | | Creates an InterceptorStackConfig object with a particular name .
Parameters: name - |
addInterceptors | public void addInterceptors(List interceptors)(Code) | | Add a List of InterceptorMapping objects.
|
equals | public boolean equals(Object o)(Code) | | An InterceptorStackConfig object is equals with o only if
- o is an InterceptorStackConfig object
- both names are equals
- all of their
InterceptorMapping s are equals
|
getInterceptors | public Collection getInterceptors()(Code) | | Returns a Collection of InterceptorMapping objects.
|
getName | public String getName()(Code) | | Get the name of this interceptor stack configuration.
String |
hashCode | public int hashCode()(Code) | | Generate hashcode based on InterceptorStackConfig 's name and its
InterceptorMapping s.
|
setName | public void setName(String name)(Code) | | Set the name of this interceptor stack configuration.
Parameters: name - |
|
|
|