org.mentawai.filter
Class AutoWiringFilter
java.lang.Object
org.mentawai.core.InputWrapper
org.mentawai.filter.AutoWiringFilter
- All Implemented Interfaces:
- java.util.Map, Filter, Input
public class AutoWiringFilter
- extends InputWrapper
- implements Filter
A filter that will do AUTO-WIRING of dependencies in a totaly transparent way.
- Author:
- Sergio Oliveira
| Nested classes/interfaces inherited from interface java.util.Map |
java.util.Map.Entry<K,V> |
|
Method Summary |
void |
destroy()
Gives a chance to the filter to deallocalte any resources before it is destroyed. |
java.lang.String |
filter(InvocationChain chain)
Executes the filter. |
java.lang.Object |
getValue(java.lang.String key)
Gets a parameter value (any object) with the given name. |
java.lang.Object |
getValueOld(java.lang.String key)
|
void |
setTryField(boolean tryField)
|
void |
setValue(java.lang.String key,
java.lang.Object value)
Sets a parameter value with the given name. |
java.lang.String |
toString()
|
| Methods inherited from class org.mentawai.core.InputWrapper |
clear, containsKey, containsValue, entries, entrySet, get, getBoolean, getBoolean, getBooleanValue, getBooleanValue, getDate, getDate, getDate, getDouble, getDouble, getDoubleValue, getDoubleValue, getEnum, getFloat, getFloat, getFloatValue, getFloatValue, getHeader, getHeaderKeys, getInt, getInt, getInts, getIntValue, getIntValue, getIntValues, getLong, getLong, getLongValue, getLongValue, getObject, getObject, getObject, getObject, getProperty, getString, getStrings, getStringValue, getStringValues, hasValue, isEmpty, keys, keySet, put, putAll, remove, removeValue, setInput, size, values |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.Map |
equals, hashCode |
AutoWiringFilter
public AutoWiringFilter(boolean tryField)
AutoWiringFilter
public AutoWiringFilter()
toString
public java.lang.String toString()
- Overrides:
toString in class java.lang.Object
setTryField
public void setTryField(boolean tryField)
filter
public java.lang.String filter(InvocationChain chain)
throws java.lang.Exception
- Description copied from interface:
Filter
- Executes the filter.
- Specified by:
filter in interface Filter
- Parameters:
chain - The InvocationChain for the action this filter is being applied to.
- Returns:
- The result of the filter or the action the filter is being applied to.
- Throws:
java.lang.Exception
setValue
public void setValue(java.lang.String key,
java.lang.Object value)
- Description copied from interface:
Input
- Sets a parameter value with the given name.
The parameter can be any object.
If the parameter already exists the old value is substituted by the new one.
- Specified by:
setValue in interface Input- Overrides:
setValue in class InputWrapper
- Parameters:
key - the name of the parametervalue - the parameter value (any object)
getValue
public java.lang.Object getValue(java.lang.String key)
- Description copied from interface:
Input
- Gets a parameter value (any object) with the given name.
- Specified by:
getValue in interface Input- Overrides:
getValue in class InputWrapper
- Parameters:
key - the name of the parameter
- Returns:
- the parameter value (any object) or null if it doesn't exist.
getValueOld
public java.lang.Object getValueOld(java.lang.String key)
destroy
public void destroy()
- Description copied from interface:
Filter
- Gives a chance to the filter to deallocalte any resources before it is destroyed.
This is called when the web application is stopped, in other words,
this has nothing to do with garbage collection.
- Specified by:
destroy in interface Filter
Copyright © 2005 Mentawai Team. All Rights Reserved.