public abstract class AbstractHttpLogicHandler extends AbstractProxyLogicHandler
AbstractProxyLogicHandler
implementations.
Provides HTTP request encoding/response decoding functionality.Constructor and Description |
---|
AbstractHttpLogicHandler(ProxyIoSession proxyIoSession)
Creates a new
AbstractHttpLogicHandler . |
Modifier and Type | Method and Description |
---|---|
protected HttpProxyResponse |
decodeResponse(String response)
Parse a HTTP response from the proxy server.
|
abstract void |
handleResponse(HttpProxyResponse response)
Handles a HTTP response from the proxy server.
|
void |
messageReceived(IoFilter.NextFilter nextFilter,
IoBuffer buf)
Handles incoming data during the handshake process.
|
void |
writeRequest(IoFilter.NextFilter nextFilter,
HttpProxyRequest request)
Calls writeRequest0(NextFilter, HttpProxyRequest) to write the request.
|
closeSession, closeSession, enqueueWriteRequest, flushPendingWriteRequests, getProxyFilter, getProxyIoSession, getSession, isHandshakeComplete, setHandshakeComplete, writeData
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
doHandshake
public AbstractHttpLogicHandler(ProxyIoSession proxyIoSession)
AbstractHttpLogicHandler
.proxyIoSession
- the ProxyIoSession
in use.public void messageReceived(IoFilter.NextFilter nextFilter, IoBuffer buf) throws ProxyAuthException
nextFilter
- the next filterbuf
- the buffer holding received dataProxyAuthException
- if authentication failspublic abstract void handleResponse(HttpProxyResponse response) throws ProxyAuthException
response
- The response.ProxyAuthException
- If we get an error during the proxy authenticationpublic void writeRequest(IoFilter.NextFilter nextFilter, HttpProxyRequest request)
nextFilter
- the next filterrequest
- the http requestprotected HttpProxyResponse decodeResponse(String response) throws Exception
response
- The response string.Exception
- If we get an error while decoding the responseCopyright © 2004–2016 Apache MINA Project. All rights reserved.