Package grails.core
Interface GrailsUrlMappingsClass
-
- All Superinterfaces:
org.springframework.beans.factory.Aware,GrailsApplicationAware,GrailsClass
- All Known Implementing Classes:
DefaultGrailsUrlMappingsClass
public interface GrailsUrlMappingsClass extends GrailsClass
Loads the UrlMappings.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.ListgetExcludePatterns()Returns a List of URI patterns to exclude.groovy.lang.ClosuregetMappingsClosure()Returns the mappings closure which is called to evaluate the url mappings.-
Methods inherited from interface grails.core.support.GrailsApplicationAware
setGrailsApplication
-
Methods inherited from interface grails.core.GrailsClass
getApplication, getClazz, getFullName, getLogicalPropertyName, getMetaClass, getName, getNaturalName, getPackageName, getPluginName, getPropertyName, getPropertyValue, getPropertyValue, getReferenceInstance, getShortName, hasProperty, isAbstract, newInstance
-
-
-
-
Method Detail
-
getMappingsClosure
groovy.lang.Closure getMappingsClosure()
Returns the mappings closure which is called to evaluate the url mappings.- Returns:
- A Closure instance
-
getExcludePatterns
java.util.List getExcludePatterns()
Returns a List of URI patterns to exclude.- Returns:
- the patterns (Strings)
-
-