Interface AxisHttpConnection
-
- All Superinterfaces:
AutoCloseable,Closeable,org.apache.http.HttpConnection,org.apache.http.HttpInetConnection
- All Known Implementing Classes:
AxisHttpConnectionImpl
public interface AxisHttpConnection extends org.apache.http.HttpConnection, org.apache.http.HttpInetConnection
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidflush()InputStreamgetInputStream()OutputStreamgetOutputStream()org.apache.http.HttpRequestreceiveRequest()voidreset()voidsendResponse(org.apache.http.HttpResponse response)
-
-
-
Method Detail
-
receiveRequest
org.apache.http.HttpRequest receiveRequest() throws org.apache.http.HttpException, IOException- Throws:
org.apache.http.HttpExceptionIOException
-
getInputStream
InputStream getInputStream()
-
sendResponse
void sendResponse(org.apache.http.HttpResponse response) throws org.apache.http.HttpException, IOException- Throws:
org.apache.http.HttpExceptionIOException
-
getOutputStream
OutputStream getOutputStream()
-
flush
void flush() throws IOException- Throws:
IOException
-
reset
void reset() throws IOException- Throws:
IOException
-
-