/**@class android.webkit.CacheManager.CacheResult @extends java.lang.Object Represents a resource stored in the HTTP cache. Instances of this class can be obtained by calling {@link android.webkit.CacheManager#getCacheFile android.webkit.CacheManager.getCacheFile(String, Map<String, String>))}. @deprecated Access to the HTTP cache will be removed in a future release. */ var CacheResult = { /**Gets the status code of this cache entry. @return {Number} the status code of this cache entry */ getHttpStatusCode : function( ) {}, /**Gets the content length of this cache entry. @return {Number} the content length of this cache entry */ getContentLength : function( ) {}, /**Gets the path of the file used to store the content of this cache entry, relative to the base directory of the cache. See {@link android.webkit.CacheManager#getCacheFileBaseDir android.webkit.CacheManager.getCacheFileBaseDir()}. @return {String} the path of the file used to store this cache entry */ getLocalPath : function( ) {}, /**Gets the expiry date of this cache entry, expressed in milliseconds since midnight, January 1, 1970 UTC. @return {Number} the expiry date of this cache entry */ getExpires : function( ) {}, /**Gets the expiry date of this cache entry, expressed as a string. @return {String} the expiry date of this cache entry */ getExpiresString : function( ) {}, /**Gets the date at which this cache entry was last modified, expressed as a string. @return {String} the date at which this cache entry was last modified */ getLastModified : function( ) {}, /**Gets the entity tag of this cache entry. @return {String} the entity tag of this cache entry */ getETag : function( ) {}, /**Gets the MIME type of this cache entry. @return {String} the MIME type of this cache entry */ getMimeType : function( ) {}, /**Gets the value of the HTTP 'Location' header with which this cache entry was received. @return {String} the HTTP 'Location' header for this cache entry */ getLocation : function( ) {}, /**Gets the encoding of this cache entry. @return {String} the encoding of this cache entry */ getEncoding : function( ) {}, /**Gets the value of the HTTP 'Content-Disposition' header with which this cache entry was received. @return {String} the HTTP 'Content-Disposition' header for this cache entry */ getContentDisposition : function( ) {}, /**Gets the input stream to the content of this cache entry, to allow content to be read. See {@link android.webkit.CacheManager#getCacheFile android.webkit.CacheManager.getCacheFile(String, Map<String, String>)}. @return {Object {java.io.InputStream}} an input stream to the content of this cache entry */ getInputStream : function( ) {}, /**Gets an output stream to the content of this cache entry, to allow content to be written. See {@link android.webkit.CacheManager#saveCacheFile android.webkit.CacheManager.saveCacheFile(String, CacheResult)}. @return {Object {java.io.OutputStream}} an output stream to the content of this cache entry */ getOutputStream : function( ) {}, /**Sets an input stream to the content of this cache entry. @param {Object {InputStream}} stream an input stream to the content of this cache entry */ setInputStream : function( ) {}, /**Sets the encoding of this cache entry. @param {String} encoding the encoding of this cache entry */ setEncoding : function( ) {}, /** @hide */ setContentLength : function( ) {}, };