Package org.eclipse.jetty.client
Class HttpContentResponse
- java.lang.Object
-
- org.eclipse.jetty.client.HttpContentResponse
-
- All Implemented Interfaces:
ContentResponse
,Response
@Deprecated(since="2021-05-27") public class HttpContentResponse extends java.lang.Object implements ContentResponse
Deprecated.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.client.api.Response
Response.AsyncContentListener, Response.BeginListener, Response.CompleteListener, Response.ContentListener, Response.DemandedContentListener, Response.FailureListener, Response.HeaderListener, Response.HeadersListener, Response.Listener, Response.ResponseListener, Response.SuccessListener
-
-
Constructor Summary
Constructors Constructor Description HttpContentResponse(Response response, byte[] content, java.lang.String mediaType, java.lang.String encoding)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
abort(java.lang.Throwable cause)
Deprecated.Attempts to abort the receive of this response.byte[]
getContent()
Deprecated.java.lang.String
getContentAsString()
Deprecated.java.lang.String
getEncoding()
Deprecated.HttpFields
getHeaders()
Deprecated.<T extends Response.ResponseListener>
java.util.List<T>getListeners(java.lang.Class<T> listenerClass)
Deprecated.java.lang.String
getMediaType()
Deprecated.java.lang.String
getReason()
Deprecated.Request
getRequest()
Deprecated.int
getStatus()
Deprecated.HttpVersion
getVersion()
Deprecated.java.lang.String
toString()
Deprecated.
-
-
-
Constructor Detail
-
HttpContentResponse
public HttpContentResponse(Response response, byte[] content, java.lang.String mediaType, java.lang.String encoding)
Deprecated.
-
-
Method Detail
-
getRequest
public Request getRequest()
Deprecated.- Specified by:
getRequest
in interfaceResponse
- Returns:
- the request associated with this response
-
getListeners
public <T extends Response.ResponseListener> java.util.List<T> getListeners(java.lang.Class<T> listenerClass)
Deprecated.- Specified by:
getListeners
in interfaceResponse
- Type Parameters:
T
- the type of class- Parameters:
listenerClass
- the listener class- Returns:
- the response listener passed to
Request.send(org.eclipse.jetty.client.api.Response.CompleteListener)
-
getVersion
public HttpVersion getVersion()
Deprecated.- Specified by:
getVersion
in interfaceResponse
- Returns:
- the HTTP version of this response, such as "HTTP/1.1"
-
getStatus
public int getStatus()
Deprecated.
-
getReason
public java.lang.String getReason()
Deprecated.- Specified by:
getReason
in interfaceResponse
- Returns:
- the HTTP reason associated to the
Response.getStatus()
-
getHeaders
public HttpFields getHeaders()
Deprecated.- Specified by:
getHeaders
in interfaceResponse
- Returns:
- the headers of this response
-
abort
public boolean abort(java.lang.Throwable cause)
Deprecated.Description copied from interface:Response
Attempts to abort the receive of this response.
-
getMediaType
public java.lang.String getMediaType()
Deprecated.- Specified by:
getMediaType
in interfaceContentResponse
- Returns:
- the media type of the content, such as "text/html" or "application/octet-stream"
-
getEncoding
public java.lang.String getEncoding()
Deprecated.- Specified by:
getEncoding
in interfaceContentResponse
- Returns:
- the encoding of the content, such as "UTF-8"
-
getContent
public byte[] getContent()
Deprecated.- Specified by:
getContent
in interfaceContentResponse
- Returns:
- the response content
-
getContentAsString
public java.lang.String getContentAsString()
Deprecated.- Specified by:
getContentAsString
in interfaceContentResponse
- Returns:
- the response content as a string, decoding the bytes using the charset
provided by the
Content-Type
header, if any, or UTF-8.
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
-