1 /* 2 * Copyright (C) 2008 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package android.webkit; 18 19 import android.webkit.CacheManager.CacheResult; 20 import android.webkit.PluginData; 21 import java.util.Map; 22 23 /** 24 * @deprecated This interface was inteded to be used by Gears. Since Gears was 25 * deprecated, so is this class. 26 */ 27 @Deprecated 28 public interface UrlInterceptHandler { 29 30 /** 31 * Given an URL, returns the CacheResult which contains the 32 * surrogate response for the request, or null if the handler is 33 * not interested. 34 * 35 * @param url URL string. 36 * @param headers The headers associated with the request. May be null. 37 * @return The CacheResult containing the surrogate response. 38 * 39 * @deprecated Do not use, this interface is deprecated. 40 */ 41 @Deprecated service(String url, Map<String, String> headers)42 public CacheResult service(String url, Map<String, String> headers); 43 44 /** 45 * Given an URL, returns the PluginData which contains the 46 * surrogate response for the request, or null if the handler is 47 * not interested. 48 * 49 * @param url URL string. 50 * @param headers The headers associated with the request. May be null. 51 * @return The PluginData containing the surrogate response. 52 * 53 * @deprecated Do not use, this interface is deprecated. 54 */ 55 @Deprecated getPluginData(String url, Map<String, String> headers)56 public PluginData getPluginData(String url, Map<String, String> headers); 57 } 58