Methods to establish template names, paths and so on. Replaced by GroovyPagesUriService / GroovyPagesUriSupport
| Modifiers | Name | Description | 
|---|---|---|
| static java.lang.String | PATH_TO_VIEWS | 
| Type | Name and description | 
|---|---|
| static 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 | 
| static 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 | 
| static 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 | 
| static java.lang.String | getTemplateURI(groovy.lang.GroovyObject controller, java.lang.String templateName)Obtains a template URI for the given controller instance and template name | 
| static 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 | 
| static java.lang.String | getViewURI(groovy.lang.GroovyObject controller, java.lang.String viewName)Obtains a view URI of the given controller and view name | 
| static 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() | 
Obtains 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 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