|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.sun.grizzly.http.portunif.HttpRedirector
public class HttpRedirector
Utility class used to redirect an HTTP(s) request to another protocol and endpoint. The following scenarios are supported: (1) http://host:port1 to https://host:port1 (2) https://host:port1 to http://host:port1 (3) http://host:port2 to https://host:port1 (4) https://host:port2 to https://host:port1 (5) http://host:port2 to http://host:port1 (6) https://host:port2 to http://host:port1 This class internally start an NIO Selector listening on an 'external' port to a 'redirect' port. All requests to the external port, independently of the protocol are redirected to the 'redirect' port.
Method Summary | |
---|---|
static void |
redirect(Context context,
PUProtocolRequest protocolRequest)
Redirect a un-secure request (http) to http or https. |
static void |
redirect(Context context,
PUProtocolRequest protocolRequest,
boolean redirectToSecure)
Redirect a un-secure request (http) to http or https. |
static void |
redirectSSL(Context context,
PUProtocolRequest protocolRequest)
Redirect a secure request (https) to http or https. |
static void |
redirectSSL(Context context,
PUProtocolRequest protocolRequest,
boolean redirectToSecure)
Redirect a secure request (https) to http or https. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static final void redirectSSL(Context context, PUProtocolRequest protocolRequest) throws IOException
context
- Context
of the occured
SelectionKey
eventprotocolRequest
- PortUnification protocol request information
IOException
public static final void redirectSSL(Context context, PUProtocolRequest protocolRequest, boolean redirectToSecure) throws IOException
context
- Context
of the occured
SelectionKey
eventprotocolRequest
- PortUnification protocol request informationredirectToSecure
- if true - request will be redirected to
HTTPS protocol, otherwise HTTP
IOException
public static final void redirect(Context context, PUProtocolRequest protocolRequest) throws IOException
context
- Context
of the occured
SelectionKey
eventprotocolRequest
- PortUnification protocol request information
IOException
public static final void redirect(Context context, PUProtocolRequest protocolRequest, boolean redirectToSecure) throws IOException
context
- Context
of the occured
SelectionKey
eventprotocolRequest
- PortUnification protocol request informationredirectToSecure
- if true - request will be redirected to
HTTPS protocol, otherwise HTTP
IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |