public class GroovyPagesUriSupport extends java.lang.Object
Methods to establish template names, paths and so on.
| Modifiers | Name | Description | 
|---|---|---|
| protected static java.lang.String | EXTENSION | |
| static java.lang.String | PATH_TO_VIEWS | |
| static java.lang.String | RELATIVE_STRING | |
| protected static java.lang.String | SUFFIX | 
| Type Params | Return Type | Name and description | 
|---|---|---|
|  | void | clear() | 
|  | java.lang.String | getAbsoluteTemplateURI(java.lang.String templateName, boolean includeExtension)Used to resolve template names that are not relative to a controller. | 
|  | java.lang.String | getAbsoluteViewURI(java.lang.String viewName)Obtains a view URI that is not relative to any given controller | 
|  | java.lang.String | getDeployedAbsoluteViewURI(java.lang.String viewName)Obtains a view URI when deployed within the /WEB-INF/grails-app/views context | 
|  | java.lang.String | getDeployedViewURI(java.lang.String controllerName, java.lang.String viewName)Obtains a view URI when deployed within the /WEB-INF/grails-app/views context | 
|  | java.lang.String | getLogicalControllerName(groovy.lang.GroovyObject controller) | 
|  | java.lang.String | getNoSuffixViewURI(groovy.lang.GroovyObject controller, java.lang.String viewName)Obtains a view URI of the given controller and view name without the suffix | 
|  | java.lang.String | getNoSuffixViewURI(java.lang.String controllerName, java.lang.String viewName)Obtains a view URI of the given controller name and view name without the suffix | 
|  | java.lang.String | getTemplateURI(groovy.lang.GroovyObject controller, java.lang.String templateName)Obtains a template URI for the given controller instance and template name | 
|  | java.lang.String | getTemplateURI(groovy.lang.GroovyObject controller, java.lang.String templateName, boolean includeExtension) | 
|  | java.lang.String | getTemplateURI(java.lang.String controllerName, java.lang.String templateName)Obtains the URI to a template using the controller name and template name | 
|  | java.lang.String | getTemplateURI(java.lang.String controllerName, java.lang.String templateName, boolean includeExtension)Obtains the URI to a template using the controller name and template name | 
|  | java.lang.String | getViewURI(groovy.lang.GroovyObject controller, java.lang.String viewName)Obtains a view URI of the given controller and view name | 
|  | java.lang.String | getViewURI(java.lang.String controllerName, java.lang.String viewName)Obtains a view URI of the given controller name and view name | 
| 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() | 
Used to resolve template names that are not relative to a controller.
templateName -  The template name normally beginning with /includeExtension -  The flag to include the template extensionObtains a view URI that is not relative to any given controller
viewName -  The name of the viewObtains a view URI when deployed within the /WEB-INF/grails-app/views context
viewName -  The name of the viewObtains a view URI when deployed within the /WEB-INF/grails-app/views context
controllerName -  The name of the controllerviewName -  The name of the viewObtains a view URI of the given controller and view name without the suffix
controller -  The name of the controllerviewName -  The name of the viewObtains a view URI of the given controller name and view name without the suffix
controllerName -  The name of the controllerviewName -  The name of the viewObtains a template URI for the given controller instance and template name
controller -  The controller instancetemplateName -  The template nameObtains the URI to a template using the controller name and template name
controllerName -  The controller nametemplateName -  The template nameObtains the URI to a template using the controller name and template name
controllerName -  The controller nametemplateName -  The template nameincludeExtension -  The flag to include the template extensionObtains a view URI of the given controller and view name
controller -  The name of the controllerviewName -  The name of the viewObtains a view URI of the given controller name and view name
controllerName -  The name of the controllerviewName -  The name of the view