FileDocCategorySizeDatePackage
UrlInterceptHandler.javaAPI DocAndroid 1.5 API1766Wed May 06 22:41:56 BST 2009android.webkit

UrlInterceptHandler

public interface UrlInterceptHandler

Fields Summary
Constructors Summary
Methods Summary
public android.webkit.PluginDatagetPluginData(java.lang.String url, java.util.Map headers)
Given an URL, returns the PluginData which contains the surrogate response for the request, or null if the handler is not interested.

param
url URL string.
param
headers The headers associated with the request. May be null.
return
The PluginData containing the surrogate response.

public android.webkit.CacheManager.CacheResultservice(java.lang.String url, java.util.Map headers)
Given an URL, returns the CacheResult which contains the surrogate response for the request, or null if the handler is not interested.

param
url URL string.
param
headers The headers associated with the request. May be null.
return
The CacheResult containing the surrogate response.
Deprecated
Use PluginData getPluginData(String url, Map headers); instead