Package org.apache.mina.proxy.handlers
Class ProxyRequest
- java.lang.Object
-
- org.apache.mina.proxy.handlers.ProxyRequest
-
- Direct Known Subclasses:
HttpProxyRequest,SocksProxyRequest
public abstract class ProxyRequest extends Object
ProxyRequest.java - Abstract wrapper class for proxy requests.- Since:
- MINA 2.0.0-M3
- Author:
- Apache MINA Project
-
-
Constructor Summary
Constructors Constructor Description ProxyRequest()Implicit constructor.ProxyRequest(InetSocketAddress endpointAddress)Basic constructor of aProxyRequestthat only sets the address of the request endpoint.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InetSocketAddressgetEndpointAddress()
-
-
-
Constructor Detail
-
ProxyRequest
public ProxyRequest()
Implicit constructor.
-
ProxyRequest
public ProxyRequest(InetSocketAddress endpointAddress)
Basic constructor of aProxyRequestthat only sets the address of the request endpoint.- Parameters:
endpointAddress- the address of the request endpoint.
-
-
Method Detail
-
getEndpointAddress
public InetSocketAddress getEndpointAddress()
- Returns:
- the address of the request endpoint
-
-