| |
|
| java.lang.Object es.udc.mypersonalizer.kernel.config.MyPersonalizerRequestProcessorConfig
MyPersonalizerRequestProcessorConfig | public class MyPersonalizerRequestProcessorConfig (Code) | | This is the configuration bean for the MyPersonalizerRequestProcessor. It
takes its data from the controller's
mypersonalizer-request-processor tag in the Kernel
configuration file. It contains a list of filter names
(its class names) that will be applied (in order) to the requests
that come through the MyPersonalizerRequestProcessor.
author: Daniel Fernandez since: 1.0 |
Method Summary | |
public void | addFilterClassName(String filterClassName) Add a new filter class name (a String) to the list. | public List | getFilterClassNames() Returns a List with the class names for the filters that have been
registered for applying. |
MyPersonalizerRequestProcessorConfig | public MyPersonalizerRequestProcessorConfig()(Code) | | Creates a new instance of MyPersonalizerRequestProcessorConfig.
|
addFilterClassName | public void addFilterClassName(String filterClassName)(Code) | | Add a new filter class name (a String) to the list. Order is important
because these filters will be applied in the same order that they're
registered.
Parameters: filterClassName - the new filter class name. |
getFilterClassNames | public List getFilterClassNames()(Code) | | Returns a List with the class names for the filters that have been
registered for applying. Each of these class names is a String object.
a List with the class names as Strings. |
|
|
|