|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
public interface UrlMappingInfo
Defines that data that was produced when matching a URI with a UrlMapping instance.
Method Summary | |
---|---|
void
|
configure(GrailsWebRequest webRequest)
Configure this UrlMappingInfo the for the given GrailsWebRequest |
java.lang.String
|
getActionName()
The name of the action that the URL mappping maps to |
java.lang.String
|
getControllerName()
The name of the controller that the URL mapping maps to |
java.lang.String
|
getHttpMethod()
The HTTP method that this URL mapping maps to |
java.lang.String
|
getId()
The id part of the URL mapping if any |
java.lang.String
|
getNamespace()
@return the namespace of the corresponding controller, null if none was specified |
java.util.Map
|
getParameters()
The parameters that were extracted from the URI that was matched |
java.lang.String
|
getPluginName()
The name of the plugin that this UrlMappingInfo maps to |
java.lang.Object
|
getRedirectInfo()
The redirect information should be a String or a Map. |
java.lang.String
|
getURI()
The URI to map to. |
java.lang.String
|
getVersion()
@return The version of the API (for REST) |
java.lang.String
|
getViewName()
The name of the view that the URL mappping maps to |
boolean
|
isParsingRequest()
Returns true of the request body should be parsed. |
Method Detail |
---|
public void configure(GrailsWebRequest webRequest)
webRequest
- The GrailsWebRequest instance
public java.lang.String getActionName()
public java.lang.String getControllerName()
public java.lang.String getHttpMethod()
public java.lang.String getId()
public java.lang.String getNamespace()
@java.lang.SuppressWarnings("rawtypes") public java.util.Map getParameters()
public java.lang.String getPluginName()
public java.lang.Object getRedirectInfo()
public java.lang.String getURI()
public java.lang.String getVersion()
public java.lang.String getViewName()
public boolean isParsingRequest()
Groovy Documentation