Interface HttpResponse<T>
-
- All Known Implementing Classes:
BaseHttpResponse,MultiPartHttpResponse
public interface HttpResponse<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconsume()TgetBody()Map<String,String>getHeaders()StringgetRequestId()List<InputStream>getResponseAsStreamList()intgetStatusCode()
-
-
-
Method Detail
-
getStatusCode
int getStatusCode()
-
getRequestId
String getRequestId()
-
getBody
T getBody()
-
getResponseAsStreamList
List<InputStream> getResponseAsStreamList()
-
consume
void consume() throws IOException- Throws:
IOException
-
-