|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.net.ResponseCache
public abstract class ResponseCache
ResponseCache implements URLConnection caches. System default cache can be
registered by invoking ResponseCache.setDefault(ResponseCache),
and can be retrieved by invoking ResponseCache.getDefault.
If URLConnection#useCaches is set, URLConnection class will
use ResponseCache to store and get resources. Whether the
resource is cached depends on ResponseCache implementation. If
a request resource is cached, protocol handler will fecth it from the cache.
If the protocol handler fails to get resource from the cache, it turns to get
the resource from its original location.
| Constructor Summary | |
|---|---|
ResponseCache()
Constructor method. |
|
| Method Summary | |
|---|---|
abstract CacheResponse |
get(URI uri,
String rqstMethod,
Map<String,List<String>> rqstHeaders)
Gets the cached response according to requesting uri,method and headers. |
static ResponseCache |
getDefault()
Gets system default response cache. |
abstract CacheRequest |
put(URI uri,
URLConnection conn)
Protocol handler calls this method after retrieving resources. |
static void |
setDefault(ResponseCache responseCache)
Sets the system default response cache when responseCache is not null. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ResponseCache()
| Method Detail |
|---|
public static ResponseCache getDefault()
ResponseCache.
SecurityException - If a security manager is installed and it doesn't have
NetPermission("getResponseCache").public static void setDefault(ResponseCache responseCache)
responseCache - Set default ResponseCache. If responseCache is
null, it unsets the cache.
SecurityException - If a security manager is installed and it doesn't have
NetPermission("setResponseCache").
public abstract CacheResponse get(URI uri,
String rqstMethod,
Map<String,List<String>> rqstHeaders)
throws IOException
uri - A URL represents requesting uri.rqstMethod - A String represents requesting method.rqstHeaders - A Map from request header field names to lists
of field values represents requesting headers.
CacheResponse object if the request is available
in the cache. Otherwise, this method returns null.
IOException - If an I/O error is encountered.
IllegalArgumentException - If any one of the parameters is null
public abstract CacheRequest put(URI uri,
URLConnection conn)
throws IOException
ResponseCache decides whether the resource should be
cached. If the resource needs to be cached, this method will return a
CacheRequest with a WriteableByteChannel,
and then, protocol handler will use this channel to write the resource
data into the cache. Otherwise, if the resource doesn't need to be
cached, it returns null.
uri - conn -
CacheRequest which contains
WriteableByteChannel if the resource is cached.
Otherwise, it returns null.
IOException - If an I/O error is encountered.
IllegalArgumentException - If any one of the parameters is null.
|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||