org.kohsuke.stapler
Class HttpRedirect
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.kohsuke.stapler.HttpRedirect
- All Implemented Interfaces:
- Serializable, HttpResponse
public final class HttpRedirect
- extends RuntimeException
- implements HttpResponse
HttpResponse
that dose HTTP 302 redirect.
Extends from RuntimeException
so that you can throw it.
- Author:
- Kohsuke Kawaguchi
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
DOT
public static HttpRedirect DOT
- Redirect to "."
CONTEXT_ROOT
public static HttpResponse CONTEXT_ROOT
- Redirect to the context root
HttpRedirect
public HttpRedirect(String url)
HttpRedirect
public HttpRedirect(int statusCode,
String url)
generateResponse
public void generateResponse(StaplerRequest req,
StaplerResponse rsp,
Object node)
throws IOException,
javax.servlet.ServletException
- Specified by:
generateResponse
in interface HttpResponse
node
- The object whose "doXyz" method created this object.
- Throws:
IOException
javax.servlet.ServletException
fromContextPath
public static HttpResponse fromContextPath(String relative)
- Deprecated. Use
HttpResponses.redirectViaContextPath(String)
.
- Parameters:
relative
- The path relative to the context path. The context path + this value
is sent to the user.
Copyright © 2013. All Rights Reserved.