Package org.projectnessie.client.http
Interface ResponseContext
-
public interface ResponseContextInterface for the important parts of a response. This is created after executing the request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputStreamgetErrorStream()InputStreamgetInputStream()StatusgetResponseCode()
-
-
-
Method Detail
-
getResponseCode
Status getResponseCode() throws IOException
- Throws:
IOException
-
getInputStream
InputStream getInputStream() throws IOException
- Throws:
IOException
-
getErrorStream
InputStream getErrorStream() throws IOException
- Throws:
IOException
-
-