• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/params/AllClientPNames.java $
3  * $Revision: 576078 $
4  * $Date: 2007-09-16 04:50:41 -0700 (Sun, 16 Sep 2007) $
5  *
6  * ====================================================================
7  *
8  *  Licensed to the Apache Software Foundation (ASF) under one or more
9  *  contributor license agreements.  See the NOTICE file distributed with
10  *  this work for additional information regarding copyright ownership.
11  *  The ASF licenses this file to You under the Apache License, Version 2.0
12  *  (the "License"); you may not use this file except in compliance with
13  *  the License.  You may obtain a copy of the License at
14  *
15  *      http://www.apache.org/licenses/LICENSE-2.0
16  *
17  *  Unless required by applicable law or agreed to in writing, software
18  *  distributed under the License is distributed on an "AS IS" BASIS,
19  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  *  See the License for the specific language governing permissions and
21  *  limitations under the License.
22  * ====================================================================
23  *
24  * This software consists of voluntary contributions made by many
25  * individuals on behalf of the Apache Software Foundation.  For more
26  * information on the Apache Software Foundation, please see
27  * <http://www.apache.org/>.
28  *
29  */
30 
31 package org.apache.http.client.params;
32 
33 
34 import org.apache.http.params.CoreConnectionPNames;
35 import org.apache.http.params.CoreProtocolPNames;
36 import org.apache.http.auth.params.AuthPNames;
37 import org.apache.http.cookie.params.CookieSpecPNames;
38 import org.apache.http.conn.params.ConnManagerPNames;
39 import org.apache.http.conn.params.ConnConnectionPNames;
40 import org.apache.http.conn.params.ConnRoutePNames;
41 
42 
43 /**
44  * Collected parameter names for the HttpClient module.
45  * This interface combines the parameter definitions of the HttpClient
46  * module and all dependency modules or informational units.
47  * It does not define additional parameter names, but references
48  * other interfaces defining parameter names.
49  * <br/>
50  * This interface is meant as a navigation aid for developers.
51  * When referring to parameter names, you should use the interfaces
52  * in which the respective constants are actually defined.
53  *
54  * @version $Revision: 576078 $
55  *
56  * @since 4.0
57  *
58  * @deprecated Please use {@link java.net.URL#openConnection} instead.
59  *     Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
60  *     for further details.
61  */
62 @Deprecated
63 public interface AllClientPNames extends
64     CoreConnectionPNames, CoreProtocolPNames,
65     ClientPNames, AuthPNames, CookieSpecPNames,
66     ConnConnectionPNames, ConnManagerPNames, ConnRoutePNames {
67 
68     // no additional definitions
69 }
70 
71