Class CacheResponse

Direct Known Subclasses:
SecureCacheResponse

public abstract class CacheResponse
extends Object

Represent channels for retrieving resources from the ResponseCache. Instances of such a class provide an InputStream that returns the entity body, and also a getHeaders() method which returns the associated response headers.

Since:
1.5

Constructors

Constructor and Description
CacheResponse()

Methods

Modifier and Type Method and Description
abstract InputStream getBody()

Returns the response body as an InputStream.

abstract Map<String,List<String>> getHeaders()

Returns the response headers as a Map.

Methods inherited from class java.lang.Object

clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

CacheResponse

public CacheResponse()

Methods

getHeaders

public abstract Map<String,List<String>> getHeaders()
                                             throws IOException

Returns the response headers as a Map.

Returns:
An immutable Map from response header field names to lists of field values. The status line has null as its field name.
Throws:
IOException - if an I/O error occurs while getting the response headers

getBody

public abstract InputStream getBody()
                             throws IOException

Returns the response body as an InputStream.

Returns:
an InputStream from which the response body can be accessed
Throws:
IOException - if an I/O error occurs while getting the response body

© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/javase/8/docs/api/java/net/CacheResponse.html