Package play.mvc.results
Class Redirect
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- play.utils.FastRuntimeException
-
- play.mvc.results.Result
-
- play.mvc.results.Redirect
-
- All Implemented Interfaces:
java.io.Serializable
public class Redirect extends Result
302 Redirect- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Redirect(java.lang.String url)
Redirect(java.lang.String url, boolean permanent)
Redirect(java.lang.String url, int code)
Redirect(java.lang.String url, java.util.Map<java.lang.String,java.lang.String> parameters)
Redirects to a given URL with the parameters specified in aMap
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
apply(Http.Request request, Http.Response response)
int
getCode()
java.lang.String
getUrl()
-
Methods inherited from class play.mvc.results.Result
getEncoding, setContentTypeIfNotSet
-
Methods inherited from class play.utils.FastRuntimeException
fillInStackTrace
-
-
-
-
Constructor Detail
-
Redirect
public Redirect(java.lang.String url)
-
Redirect
public Redirect(java.lang.String url, java.util.Map<java.lang.String,java.lang.String> parameters)
Redirects to a given URL with the parameters specified in aMap
- Parameters:
url
- The URL to redirect to as aString
parameters
- Parameters to be included at the end of the URL as a HTTP GET. This is a map whose entries are written out as key1=value1&key2=value2 etc..
-
Redirect
public Redirect(java.lang.String url, boolean permanent)
-
Redirect
public Redirect(java.lang.String url, int code)
-
-
Method Detail
-
apply
public void apply(Http.Request request, Http.Response response)
-
getUrl
public java.lang.String getUrl()
-
getCode
public int getCode()
-
-