class FilterConfig extends java.lang.Object
Type | Name and description |
---|---|
groovy.lang.Closure |
after |
groovy.lang.Closure |
afterView |
groovy.lang.Closure |
before |
java.lang.Object |
filtersDefinition This is the filters definition bean that declared the filter config. |
boolean |
initialised |
org.springframework.web.servlet.ModelAndView |
modelAndView |
java.lang.String |
name |
java.util.Map |
scope |
Constructor and description |
---|
FilterConfig
() |
Type | Name and description |
---|---|
org.springframework.validation.Errors |
getErrors() |
GrailsApplication |
getGrailsApplication() |
java.lang.Object |
getWiredFiltersDefinition() |
void |
initializeMetaClass() |
java.lang.Object |
methodMissing(java.lang.String methodName, java.lang.Object args) When the filter does not have a particular method, it passes the call on to the filter definition class. |
java.lang.Object |
propertyMissing(java.lang.String propertyName) When the filter does not have a particular property, it passes the request on to the filter definition class. |
java.lang.String |
toString() |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
This is the filters definition bean that declared the filter config. Since it may contain injected services, etc., we delegate any missing properties or methods to it.
When the filter does not have a particular method, it passes the call on to the filter definition class.
When the filter does not have a particular property, it passes the request on to the filter definition class.
Groovy Documentation