Uses of Interface
org.codehaus.groovy.grails.web.mapping.UrlMappingInfo

Packages that use UrlMappingInfo
org.codehaus.groovy.grails.web.mapping   
org.codehaus.groovy.grails.web.util   
 

Uses of UrlMappingInfo in org.codehaus.groovy.grails.web.mapping
 

Classes in org.codehaus.groovy.grails.web.mapping that implement UrlMappingInfo
 class AbstractUrlMappingInfo
          Abstract super class providing pass functionality for configuring a UrlMappingInfo
 class DefaultUrlMappingInfo
          A Class that implements the UrlMappingInfo interface and holds information established from a matched URL
 class ForwardUrlMappingInfo
           
 

Methods in org.codehaus.groovy.grails.web.mapping that return UrlMappingInfo
 UrlMappingInfo ResponseCodeUrlMapping.match(int responseCode)
           
 UrlMappingInfo UrlMappingsHolder.match(String uri)
          Match and return the first UrlMappingInfo instance possible
 UrlMappingInfo UrlMapping.match(String uri)
          Matches the given URI and returns an instance of the UrlMappingInfo interface or null if a match couldn't be established
 UrlMappingInfo ResponseCodeUrlMapping.match(String uri)
           
 UrlMappingInfo RegexUrlMapping.match(String uri)
          Matches the given URI and returns a DefaultUrlMappingInfo instance or null
 UrlMappingInfo DefaultUrlMappingsHolder.match(String uri)
           
 UrlMappingInfo[] UrlMappingsHolder.matchAll(String uri)
          Matches all possible UrlMappingInfo instances to the given URI and returns them all
 UrlMappingInfo[] DefaultUrlMappingsHolder.matchAll(String uri)
           
 UrlMappingInfo[] UrlMappingsHolder.matchAll(String uri, String httpMethod)
          Match all possible UrlMappingInfo instances to the given URI and HTTP method
 UrlMappingInfo[] DefaultUrlMappingsHolder.matchAll(String uri, String httpMethod)
           
 UrlMappingInfo UrlMappingsHolder.matchStatusCode(int responseCode)
          Match and return the first UrlMappingInfo instance possible
 UrlMappingInfo DefaultUrlMappingsHolder.matchStatusCode(int responseCode)
           
 UrlMappingInfo UrlMappingsHolder.matchStatusCode(int responseCode, Throwable e)
          Match and return for first UrlMappingInfo for the give response code and exception
 UrlMappingInfo DefaultUrlMappingsHolder.matchStatusCode(int responseCode, Throwable e)
           
 

Uses of UrlMappingInfo in org.codehaus.groovy.grails.web.util
 

Methods in org.codehaus.groovy.grails.web.util with parameters of type UrlMappingInfo
static String WebUtils.buildDispatchUrlForMapping(UrlMappingInfo info)
          Constructs the URI to forward to using the given request and UrlMappingInfo instance
static String WebUtils.forwardRequestForUrlMappingInfo(HttpServletRequest request, HttpServletResponse response, UrlMappingInfo info)
           
static String WebUtils.forwardRequestForUrlMappingInfo(HttpServletRequest request, HttpServletResponse response, UrlMappingInfo info, Map model)
           
static String WebUtils.forwardRequestForUrlMappingInfo(HttpServletRequest request, HttpServletResponse response, UrlMappingInfo info, Map model, boolean includeParams)
          Forwards a request for the given UrlMappingInfo object and model
static IncludedContent WebUtils.includeForUrlMappingInfo(HttpServletRequest request, HttpServletResponse response, UrlMappingInfo info, Map model)
          Include whatever the given UrlMappingInfo maps to within the current response
static View WebUtils.resolveView(HttpServletRequest request, UrlMappingInfo info, String viewName, ViewResolver viewResolver)
          Resolves a view for the given view and UrlMappingInfo instance
 



Copyright (c) 2005-2009 The Grails project