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 void
flush()
InputStream
getInputStream()
OutputStream
getOutputStream()
org.apache.http.HttpRequest
receiveRequest()
void
reset()
void
sendResponse(org.apache.http.HttpResponse response)
-
-
-
Method Detail
-
receiveRequest
org.apache.http.HttpRequest receiveRequest() throws org.apache.http.HttpException, IOException
- Throws:
org.apache.http.HttpException
IOException
-
getInputStream
InputStream getInputStream()
-
sendResponse
void sendResponse(org.apache.http.HttpResponse response) throws org.apache.http.HttpException, IOException
- Throws:
org.apache.http.HttpException
IOException
-
getOutputStream
OutputStream getOutputStream()
-
flush
void flush() throws IOException
- Throws:
IOException
-
reset
void reset() throws IOException
- Throws:
IOException
-
-