summaryrefslogtreecommitdiffstats
path: root/api/current.txt
blob: a04d0cd279949665965ecf690e003bad24e07577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
// Signature format: 2.0
package android.net.compatibility {

  public class WebAddress {
    ctor public WebAddress(String) throws java.lang.IllegalArgumentException;
    method public String getAuthInfo();
    method public String getHost();
    method public String getPath();
    method public int getPort();
    method public String getScheme();
    method public void setAuthInfo(String);
    method public void setHost(String);
    method public void setPath(String);
    method public void setPort(int);
    method public void setScheme(String);
  }

}

package android.net.http {

  public final class AndroidHttpClient implements org.apache.http.client.HttpClient {
    method public void close();
    method public void disableCurlLogging();
    method public void enableCurlLogging(String, int);
    method public org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest) throws java.io.IOException;
    method public org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.protocol.HttpContext) throws java.io.IOException;
    method public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest) throws java.io.IOException;
    method public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws java.io.IOException;
    method public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.client.ResponseHandler<? extends T>) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.client.ResponseHandler<? extends T>, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.client.ResponseHandler<? extends T>) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.client.ResponseHandler<? extends T>, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method public static org.apache.http.entity.AbstractHttpEntity getCompressedEntity(byte[], android.content.ContentResolver) throws java.io.IOException;
    method public org.apache.http.conn.ClientConnectionManager getConnectionManager();
    method public static long getMinGzipSize(android.content.ContentResolver);
    method public org.apache.http.params.HttpParams getParams();
    method public static java.io.InputStream getUngzippedContent(org.apache.http.HttpEntity) throws java.io.IOException;
    method public static void modifyRequestToAcceptGzipResponse(org.apache.http.HttpRequest);
    method public static android.net.http.AndroidHttpClient newInstance(String, android.content.Context);
    method public static android.net.http.AndroidHttpClient newInstance(String);
    method public static long parseDate(String);
    field public static long DEFAULT_SYNC_MIN_GZIP_BYTES;
  }

  public class AndroidHttpClientConnection implements org.apache.http.HttpConnection org.apache.http.HttpInetConnection {
    ctor public AndroidHttpClientConnection();
    method public void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
    method public void close() throws java.io.IOException;
    method protected void doFlush() throws java.io.IOException;
    method public void flush() throws java.io.IOException;
    method public java.net.InetAddress getLocalAddress();
    method public int getLocalPort();
    method public org.apache.http.HttpConnectionMetrics getMetrics();
    method public java.net.InetAddress getRemoteAddress();
    method public int getRemotePort();
    method public int getSocketTimeout();
    method public boolean isOpen();
    method public boolean isStale();
    method public org.apache.http.StatusLine parseResponseHeader(android.net.http.Headers) throws java.io.IOException, org.apache.http.ParseException;
    method public org.apache.http.HttpEntity receiveResponseEntity(android.net.http.Headers);
    method public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
    method public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.http.HttpException, java.io.IOException;
    method public void setSocketTimeout(int);
    method public void shutdown() throws java.io.IOException;
  }

  public class CertificateChainValidator {
    method public android.net.http.SslError doHandshakeAndValidateServerCertificates(android.net.http.HttpsConnection, javax.net.ssl.SSLSocket, String) throws java.io.IOException;
    method public static android.net.http.CertificateChainValidator getInstance();
    method public static void handleTrustStorageUpdate();
    method public static android.net.http.SslError verifyServerCertificates(byte[][], String, String) throws java.io.IOException;
  }

  public class DelegatingSSLSession implements javax.net.ssl.SSLSession {
    ctor protected DelegatingSSLSession();
    method public int getApplicationBufferSize();
    method public String getCipherSuite();
    method public long getCreationTime();
    method public byte[] getId();
    method public long getLastAccessedTime();
    method public java.security.cert.Certificate[] getLocalCertificates();
    method public java.security.Principal getLocalPrincipal();
    method public int getPacketBufferSize();
    method public javax.security.cert.X509Certificate[] getPeerCertificateChain() throws javax.net.ssl.SSLPeerUnverifiedException;
    method public java.security.cert.Certificate[] getPeerCertificates() throws javax.net.ssl.SSLPeerUnverifiedException;
    method public String getPeerHost();
    method public int getPeerPort();
    method public java.security.Principal getPeerPrincipal() throws javax.net.ssl.SSLPeerUnverifiedException;
    method public String getProtocol();
    method public javax.net.ssl.SSLSessionContext getSessionContext();
    method public Object getValue(String);
    method public String[] getValueNames();
    method public void invalidate();
    method public boolean isValid();
    method public void putValue(String, Object);
    method public void removeValue(String);
  }

  public static class DelegatingSSLSession.CertificateWrap extends android.net.http.DelegatingSSLSession {
    ctor public DelegatingSSLSession.CertificateWrap(java.security.cert.Certificate);
  }

  public interface EventHandler {
    method public void certificate(android.net.http.SslCertificate);
    method public void data(byte[], int);
    method public void endData();
    method public void error(int, String);
    method public boolean handleSslErrorRequest(android.net.http.SslError);
    method public void headers(android.net.http.Headers);
    method public void status(int, int, int, String);
    field public static final int ERROR = -1; // 0xffffffff
    field public static final int ERROR_AUTH = -4; // 0xfffffffc
    field public static final int ERROR_BAD_URL = -12; // 0xfffffff4
    field public static final int ERROR_CONNECT = -6; // 0xfffffffa
    field public static final int ERROR_FAILED_SSL_HANDSHAKE = -11; // 0xfffffff5
    field public static final int ERROR_IO = -7; // 0xfffffff9
    field public static final int ERROR_LOOKUP = -2; // 0xfffffffe
    field public static final int ERROR_PROXYAUTH = -5; // 0xfffffffb
    field public static final int ERROR_REDIRECT_LOOP = -9; // 0xfffffff7
    field public static final int ERROR_TIMEOUT = -8; // 0xfffffff8
    field public static final int ERROR_UNSUPPORTED_AUTH_SCHEME = -3; // 0xfffffffd
    field public static final int ERROR_UNSUPPORTED_SCHEME = -10; // 0xfffffff6
    field public static final int FILE_ERROR = -13; // 0xfffffff3
    field public static final int FILE_NOT_FOUND_ERROR = -14; // 0xfffffff2
    field public static final int OK = 0; // 0x0
    field public static final int TOO_MANY_REQUESTS_ERROR = -15; // 0xfffffff1
  }

  public final class Headers {
    ctor public Headers();
    method public String getAcceptRanges();
    method public String getCacheControl();
    method public int getConnectionType();
    method public String getContentDisposition();
    method public String getContentEncoding();
    method public long getContentLength();
    method public String getContentType();
    method public String getEtag();
    method public String getExpires();
    method public void getHeaders(android.net.http.Headers.HeaderCallback);
    method public String getLastModified();
    method public String getLocation();
    method public String getPragma();
    method public String getProxyAuthenticate();
    method public String getRefresh();
    method public java.util.ArrayList<java.lang.String> getSetCookie();
    method public long getTransferEncoding();
    method public String getWwwAuthenticate();
    method public String getXPermittedCrossDomainPolicies();
    method public void parseHeader(org.apache.http.util.CharArrayBuffer);
    method public void setAcceptRanges(String);
    method public void setCacheControl(String);
    method public void setContentDisposition(String);
    method public void setContentEncoding(String);
    method public void setContentLength(long);
    method public void setContentType(String);
    method public void setEtag(String);
    method public void setExpires(String);
    method public void setLastModified(String);
    method public void setLocation(String);
    method public void setProxyAuthenticate(String);
    method public void setWwwAuthenticate(String);
    method public void setXPermittedCrossDomainPolicies(String);
    field public static final String ACCEPT_RANGES = "accept-ranges";
    field public static final String CACHE_CONTROL = "cache-control";
    field public static final int CONN_CLOSE = 1; // 0x1
    field public static final String CONN_DIRECTIVE = "connection";
    field public static final int CONN_KEEP_ALIVE = 2; // 0x2
    field public static final String CONTENT_DISPOSITION = "content-disposition";
    field public static final String CONTENT_ENCODING = "content-encoding";
    field public static final String CONTENT_LEN = "content-length";
    field public static final String CONTENT_TYPE = "content-type";
    field public static final String ETAG = "etag";
    field public static final String EXPIRES = "expires";
    field public static final String LAST_MODIFIED = "last-modified";
    field public static final String LOCATION = "location";
    field public static final int NO_CONN_TYPE = 0; // 0x0
    field public static final long NO_CONTENT_LENGTH = -1L; // 0xffffffffffffffffL
    field public static final long NO_TRANSFER_ENCODING = 0L; // 0x0L
    field public static final String PRAGMA = "pragma";
    field public static final String PROXY_AUTHENTICATE = "proxy-authenticate";
    field public static final String PROXY_CONNECTION = "proxy-connection";
    field public static final String REFRESH = "refresh";
    field public static final String SET_COOKIE = "set-cookie";
    field public static final String TRANSFER_ENCODING = "transfer-encoding";
    field public static final String WWW_AUTHENTICATE = "www-authenticate";
    field public static final String X_PERMITTED_CROSS_DOMAIN_POLICIES = "x-permitted-cross-domain-policies";
  }

  public static interface Headers.HeaderCallback {
    method public void header(String, String);
  }

  public class HttpAuthHeader {
    ctor public HttpAuthHeader(String);
    method public String getAlgorithm();
    method public String getNonce();
    method public String getOpaque();
    method public String getPassword();
    method public String getQop();
    method public String getRealm();
    method public int getScheme();
    method public boolean getStale();
    method public String getUsername();
    method public boolean isBasic();
    method public boolean isDigest();
    method public boolean isProxy();
    method public boolean isSupportedScheme();
    method public void setPassword(String);
    method public void setProxy();
    method public void setUsername(String);
    field public static final int BASIC = 1; // 0x1
    field public static final String BASIC_TOKEN = "Basic";
    field public static final int DIGEST = 2; // 0x2
    field public static final String DIGEST_TOKEN = "Digest";
    field public static final int UNKNOWN = 0; // 0x0
  }

  public class HttpsConnection {
    method public static void initializeEngine(java.io.File);
  }

  public class LoggingEventHandler implements android.net.http.EventHandler {
    ctor public LoggingEventHandler();
    method public void certificate(android.net.http.SslCertificate);
    method public void data(byte[], int);
    method public void endData();
    method public void error(int, String);
    method public boolean handleSslErrorRequest(android.net.http.SslError);
    method public void headers(android.net.http.Headers);
    method public void locationChanged(String, boolean);
    method public void requestSent();
    method public void status(int, int, int, String);
  }

  public class RequestHandle {
    ctor public RequestHandle(android.net.http.RequestQueue, String, android.net.compatibility.WebAddress, String, java.util.Map<java.lang.String,java.lang.String>, java.io.InputStream, int, android.net.http.Request);
    ctor public RequestHandle(android.net.http.RequestQueue, String, android.net.compatibility.WebAddress, String, java.util.Map<java.lang.String,java.lang.String>, java.io.InputStream, int, android.net.http.Request, android.net.http.Connection);
    method public static String authorizationHeader(boolean);
    method public void cancel();
    method public static String computeBasicAuthResponse(String, String);
    method public String getMethod();
    method public int getRedirectCount();
    method public void handleSslErrorResponse(boolean);
    method public boolean isRedirectMax();
    method public void pauseRequest(boolean);
    method public void processRequest();
    method public void setRedirectCount(int);
    method public void setupBasicAuthResponse(boolean, String, String);
    method public void setupDigestAuthResponse(boolean, String, String, String, String, String, String, String);
    method public boolean setupRedirect(String, int, java.util.Map<java.lang.String,java.lang.String>);
    method public void waitUntilComplete();
    field public static final int MAX_REDIRECT_COUNT = 16; // 0x10
  }

  public class RequestQueue {
    ctor public RequestQueue(android.content.Context);
    ctor public RequestQueue(android.content.Context, int);
    method public void disablePlatformNotifications();
    method public void enablePlatformNotifications();
    method public org.apache.http.HttpHost getProxyHost();
    method public android.net.http.Request getRequest();
    method public android.net.http.Request getRequest(org.apache.http.HttpHost);
    method public boolean haveRequest(org.apache.http.HttpHost);
    method public android.net.http.RequestHandle queueRequest(String, String, java.util.Map<java.lang.String,java.lang.String>, android.net.http.EventHandler, java.io.InputStream, int);
    method public android.net.http.RequestHandle queueRequest(String, android.net.compatibility.WebAddress, String, java.util.Map<java.lang.String,java.lang.String>, android.net.http.EventHandler, java.io.InputStream, int);
    method protected void queueRequest(android.net.http.Request, boolean);
    method public android.net.http.RequestHandle queueSynchronousRequest(String, android.net.compatibility.WebAddress, String, java.util.Map<java.lang.String,java.lang.String>, android.net.http.EventHandler, java.io.InputStream, int);
    method public void requeueRequest(android.net.http.Request);
    method public void shutdown();
    method public void startTiming();
    method public void stopTiming();
  }

}

package com.android.internal.http.multipart {

  public class ByteArrayPartSource implements com.android.internal.http.multipart.PartSource {
    ctor public ByteArrayPartSource(String, byte[]);
    method public java.io.InputStream createInputStream();
    method public String getFileName();
    method public long getLength();
  }

  public class FilePart extends com.android.internal.http.multipart.PartBase {
    ctor public FilePart(String, com.android.internal.http.multipart.PartSource, String, String);
    ctor public FilePart(String, com.android.internal.http.multipart.PartSource);
    ctor public FilePart(String, java.io.File) throws java.io.FileNotFoundException;
    ctor public FilePart(String, java.io.File, String, String) throws java.io.FileNotFoundException;
    ctor public FilePart(String, String, java.io.File) throws java.io.FileNotFoundException;
    ctor public FilePart(String, String, java.io.File, String, String) throws java.io.FileNotFoundException;
    method protected com.android.internal.http.multipart.PartSource getSource();
    method protected long lengthOfData();
    method protected void sendData(java.io.OutputStream) throws java.io.IOException;
    field public static final String DEFAULT_CHARSET = "ISO-8859-1";
    field public static final String DEFAULT_CONTENT_TYPE = "application/octet-stream";
    field public static final String DEFAULT_TRANSFER_ENCODING = "binary";
    field protected static final String FILE_NAME = "; filename=";
  }

  public class FilePartSource implements com.android.internal.http.multipart.PartSource {
    ctor public FilePartSource(java.io.File) throws java.io.FileNotFoundException;
    ctor public FilePartSource(String, java.io.File) throws java.io.FileNotFoundException;
    method public java.io.InputStream createInputStream() throws java.io.IOException;
    method public String getFileName();
    method public long getLength();
  }

  public class MultipartEntity extends org.apache.http.entity.AbstractHttpEntity {
    ctor public MultipartEntity(com.android.internal.http.multipart.Part[], org.apache.http.params.HttpParams);
    ctor public MultipartEntity(com.android.internal.http.multipart.Part[]);
    method public java.io.InputStream getContent() throws java.io.IOException, java.lang.IllegalStateException;
    method public long getContentLength();
    method public org.apache.http.Header getContentType();
    method protected byte[] getMultipartBoundary();
    method public boolean isRepeatable();
    method public boolean isStreaming();
    method public void writeTo(java.io.OutputStream) throws java.io.IOException;
    field public static final String MULTIPART_BOUNDARY = "http.method.multipart.boundary";
    field protected com.android.internal.http.multipart.Part[] parts;
  }

  public abstract class Part {
    ctor public Part();
    method @Deprecated public static String getBoundary();
    method public abstract String getCharSet();
    method public abstract String getContentType();
    method public static long getLengthOfParts(com.android.internal.http.multipart.Part[]) throws java.io.IOException;
    method public static long getLengthOfParts(com.android.internal.http.multipart.Part[], byte[]) throws java.io.IOException;
    method public abstract String getName();
    method protected byte[] getPartBoundary();
    method public abstract String getTransferEncoding();
    method public boolean isRepeatable();
    method public long length() throws java.io.IOException;
    method protected abstract long lengthOfData() throws java.io.IOException;
    method public void send(java.io.OutputStream) throws java.io.IOException;
    method protected void sendContentTypeHeader(java.io.OutputStream) throws java.io.IOException;
    method protected abstract void sendData(java.io.OutputStream) throws java.io.IOException;
    method protected void sendDispositionHeader(java.io.OutputStream) throws java.io.IOException;
    method protected void sendEnd(java.io.OutputStream) throws java.io.IOException;
    method protected void sendEndOfHeader(java.io.OutputStream) throws java.io.IOException;
    method public static void sendParts(java.io.OutputStream, com.android.internal.http.multipart.Part[]) throws java.io.IOException;
    method public static void sendParts(java.io.OutputStream, com.android.internal.http.multipart.Part[], byte[]) throws java.io.IOException;
    method protected void sendStart(java.io.OutputStream) throws java.io.IOException;
    method protected void sendTransferEncodingHeader(java.io.OutputStream) throws java.io.IOException;
    field @Deprecated protected static final String BOUNDARY = "----------------314159265358979323846";
    field @Deprecated protected static final byte[] BOUNDARY_BYTES;
    field protected static final String CHARSET = "; charset=";
    field protected static final byte[] CHARSET_BYTES;
    field protected static final String CONTENT_DISPOSITION = "Content-Disposition: form-data; name=";
    field protected static final byte[] CONTENT_DISPOSITION_BYTES;
    field protected static final String CONTENT_TRANSFER_ENCODING = "Content-Transfer-Encoding: ";
    field protected static final byte[] CONTENT_TRANSFER_ENCODING_BYTES;
    field protected static final String CONTENT_TYPE = "Content-Type: ";
    field protected static final byte[] CONTENT_TYPE_BYTES;
    field protected static final String CRLF = "\r\n";
    field protected static final byte[] CRLF_BYTES;
    field protected static final String EXTRA = "--";
    field protected static final byte[] EXTRA_BYTES;
    field protected static final String QUOTE = "\"";
    field protected static final byte[] QUOTE_BYTES;
  }

  public abstract class PartBase extends com.android.internal.http.multipart.Part {
    ctor public PartBase(String, String, String, String);
    method public String getCharSet();
    method public String getContentType();
    method public String getName();
    method public String getTransferEncoding();
    method public void setCharSet(String);
    method public void setContentType(String);
    method public void setName(String);
    method public void setTransferEncoding(String);
  }

  public interface PartSource {
    method public java.io.InputStream createInputStream() throws java.io.IOException;
    method public String getFileName();
    method public long getLength();
  }

  public class StringPart extends com.android.internal.http.multipart.PartBase {
    ctor public StringPart(String, String, String);
    ctor public StringPart(String, String);
    method protected long lengthOfData();
    method protected void sendData(java.io.OutputStream) throws java.io.IOException;
    field public static final String DEFAULT_CHARSET = "US-ASCII";
    field public static final String DEFAULT_CONTENT_TYPE = "text/plain";
    field public static final String DEFAULT_TRANSFER_ENCODING = "8bit";
  }

}

package org.apache.commons.codec {

  @Deprecated public interface BinaryDecoder extends org.apache.commons.codec.Decoder {
    method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
  }

  @Deprecated public interface BinaryEncoder extends org.apache.commons.codec.Encoder {
    method @Deprecated public byte[] encode(byte[]) throws org.apache.commons.codec.EncoderException;
  }

  @Deprecated public interface Decoder {
    method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
  }

  @Deprecated public class DecoderException extends java.lang.Exception {
    ctor @Deprecated public DecoderException(String);
  }

  @Deprecated public interface Encoder {
    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
  }

  @Deprecated public class EncoderException extends java.lang.Exception {
    ctor @Deprecated public EncoderException(String);
  }

  @Deprecated public interface StringDecoder extends org.apache.commons.codec.Decoder {
    method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
  }

  @Deprecated public interface StringEncoder extends org.apache.commons.codec.Encoder {
    method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
  }

  @Deprecated public class StringEncoderComparator implements java.util.Comparator {
    ctor @Deprecated public StringEncoderComparator();
    ctor @Deprecated public StringEncoderComparator(org.apache.commons.codec.StringEncoder);
    method @Deprecated public int compare(Object, Object);
  }

}

package org.apache.commons.codec.binary {

  @Deprecated public class Base64 implements org.apache.commons.codec.BinaryDecoder org.apache.commons.codec.BinaryEncoder {
    ctor @Deprecated public Base64();
    method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public byte[] decode(byte[]);
    method @Deprecated public static byte[] decodeBase64(byte[]);
    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public byte[] encode(byte[]);
    method @Deprecated public static byte[] encodeBase64(byte[]);
    method @Deprecated public static byte[] encodeBase64(byte[], boolean);
    method @Deprecated public static byte[] encodeBase64Chunked(byte[]);
    method @Deprecated public static boolean isArrayByteBase64(byte[]);
  }

  @Deprecated public class BinaryCodec implements org.apache.commons.codec.BinaryDecoder org.apache.commons.codec.BinaryEncoder {
    ctor @Deprecated public BinaryCodec();
    method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public byte[] decode(byte[]);
    method @Deprecated public byte[] encode(byte[]);
    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public static byte[] fromAscii(char[]);
    method @Deprecated public static byte[] fromAscii(byte[]);
    method @Deprecated public static byte[] toAsciiBytes(byte[]);
    method @Deprecated public static char[] toAsciiChars(byte[]);
    method @Deprecated public static String toAsciiString(byte[]);
    method @Deprecated public byte[] toByteArray(String);
  }

  @Deprecated public class Hex implements org.apache.commons.codec.BinaryDecoder org.apache.commons.codec.BinaryEncoder {
    ctor @Deprecated public Hex();
    method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public static byte[] decodeHex(char[]) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public byte[] encode(byte[]);
    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public static char[] encodeHex(byte[]);
    method @Deprecated protected static int toDigit(char, int) throws org.apache.commons.codec.DecoderException;
  }

}

package org.apache.commons.codec.language {

  @Deprecated public class DoubleMetaphone implements org.apache.commons.codec.StringEncoder {
    ctor @Deprecated public DoubleMetaphone();
    method @Deprecated protected char charAt(String, int);
    method @Deprecated protected static boolean contains(String, int, int, String[]);
    method @Deprecated public String doubleMetaphone(String);
    method @Deprecated public String doubleMetaphone(String, boolean);
    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public String encode(String);
    method @Deprecated public int getMaxCodeLen();
    method @Deprecated public boolean isDoubleMetaphoneEqual(String, String);
    method @Deprecated public boolean isDoubleMetaphoneEqual(String, String, boolean);
    method @Deprecated public void setMaxCodeLen(int);
    field @Deprecated protected int maxCodeLen;
  }

  @Deprecated public class DoubleMetaphone.DoubleMetaphoneResult {
    ctor @Deprecated public DoubleMetaphone.DoubleMetaphoneResult(int);
    method @Deprecated public void append(char);
    method @Deprecated public void append(char, char);
    method @Deprecated public void append(String);
    method @Deprecated public void append(String, String);
    method @Deprecated public void appendAlternate(char);
    method @Deprecated public void appendAlternate(String);
    method @Deprecated public void appendPrimary(char);
    method @Deprecated public void appendPrimary(String);
    method @Deprecated public String getAlternate();
    method @Deprecated public String getPrimary();
    method @Deprecated public boolean isComplete();
  }

  @Deprecated public class Metaphone implements org.apache.commons.codec.StringEncoder {
    ctor @Deprecated public Metaphone();
    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public String encode(String);
    method @Deprecated public int getMaxCodeLen();
    method @Deprecated public boolean isMetaphoneEqual(String, String);
    method @Deprecated public String metaphone(String);
    method @Deprecated public void setMaxCodeLen(int);
  }

  @Deprecated public class RefinedSoundex implements org.apache.commons.codec.StringEncoder {
    ctor @Deprecated public RefinedSoundex();
    ctor @Deprecated public RefinedSoundex(char[]);
    method @Deprecated public int difference(String, String) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public String encode(String);
    method @Deprecated public String soundex(String);
    field @Deprecated public static final org.apache.commons.codec.language.RefinedSoundex US_ENGLISH;
    field @Deprecated public static final char[] US_ENGLISH_MAPPING;
  }

  @Deprecated public class Soundex implements org.apache.commons.codec.StringEncoder {
    ctor @Deprecated public Soundex();
    ctor @Deprecated public Soundex(char[]);
    method @Deprecated public int difference(String, String) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public String encode(String);
    method @Deprecated public int getMaxLength();
    method @Deprecated public void setMaxLength(int);
    method @Deprecated public String soundex(String);
    field @Deprecated public static final org.apache.commons.codec.language.Soundex US_ENGLISH;
    field @Deprecated public static final char[] US_ENGLISH_MAPPING;
    field @Deprecated public static final String US_ENGLISH_MAPPING_STRING = "01230120022455012623010202";
  }

}

package org.apache.commons.codec.net {

  @Deprecated public class BCodec implements org.apache.commons.codec.StringDecoder org.apache.commons.codec.StringEncoder {
    ctor @Deprecated public BCodec();
    ctor @Deprecated public BCodec(String);
    method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
    method @Deprecated protected byte[] doDecoding(byte[]) throws org.apache.commons.codec.DecoderException;
    method @Deprecated protected byte[] doEncoding(byte[]) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public String encode(String, String) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public String getDefaultCharset();
    method @Deprecated protected String getEncoding();
  }

  @Deprecated public class QCodec implements org.apache.commons.codec.StringDecoder org.apache.commons.codec.StringEncoder {
    ctor @Deprecated public QCodec();
    ctor @Deprecated public QCodec(String);
    method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
    method @Deprecated protected byte[] doDecoding(byte[]) throws org.apache.commons.codec.DecoderException;
    method @Deprecated protected byte[] doEncoding(byte[]) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public String encode(String, String) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public String getDefaultCharset();
    method @Deprecated protected String getEncoding();
    method @Deprecated public boolean isEncodeBlanks();
    method @Deprecated public void setEncodeBlanks(boolean);
  }

  @Deprecated public class QuotedPrintableCodec implements org.apache.commons.codec.BinaryDecoder org.apache.commons.codec.BinaryEncoder org.apache.commons.codec.StringDecoder org.apache.commons.codec.StringEncoder {
    ctor @Deprecated public QuotedPrintableCodec();
    ctor @Deprecated public QuotedPrintableCodec(String);
    method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public String decode(String, String) throws org.apache.commons.codec.DecoderException, java.io.UnsupportedEncodingException;
    method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public static final byte[] decodeQuotedPrintable(byte[]) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public byte[] encode(byte[]);
    method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public String encode(String, String) throws java.io.UnsupportedEncodingException;
    method @Deprecated public static final byte[] encodeQuotedPrintable(java.util.BitSet, byte[]);
    method @Deprecated public String getDefaultCharset();
  }

  @Deprecated public class URLCodec implements org.apache.commons.codec.BinaryDecoder org.apache.commons.codec.BinaryEncoder org.apache.commons.codec.StringDecoder org.apache.commons.codec.StringEncoder {
    ctor @Deprecated public URLCodec();
    ctor @Deprecated public URLCodec(String);
    method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public String decode(String, String) throws org.apache.commons.codec.DecoderException, java.io.UnsupportedEncodingException;
    method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public static final byte[] decodeUrl(byte[]) throws org.apache.commons.codec.DecoderException;
    method @Deprecated public byte[] encode(byte[]);
    method @Deprecated public String encode(String, String) throws java.io.UnsupportedEncodingException;
    method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
    method @Deprecated public static final byte[] encodeUrl(java.util.BitSet, byte[]);
    method @Deprecated public String getDefaultCharset();
    method @Deprecated public String getEncoding();
    field @Deprecated protected static byte ESCAPE_CHAR;
    field @Deprecated protected static final java.util.BitSet WWW_FORM_URL;
    field @Deprecated protected String charset;
  }

}

package org.apache.commons.logging {

  @Deprecated public interface Log {
    method @Deprecated public void debug(Object);
    method @Deprecated public void debug(Object, Throwable);
    method @Deprecated public void error(Object);
    method @Deprecated public void error(Object, Throwable);
    method @Deprecated public void fatal(Object);
    method @Deprecated public void fatal(Object, Throwable);
    method @Deprecated public void info(Object);
    method @Deprecated public void info(Object, Throwable);
    method @Deprecated public boolean isDebugEnabled();
    method @Deprecated public boolean isErrorEnabled();
    method @Deprecated public boolean isFatalEnabled();
    method @Deprecated public boolean isInfoEnabled();
    method @Deprecated public boolean isTraceEnabled();
    method @Deprecated public boolean isWarnEnabled();
    method @Deprecated public void trace(Object);
    method @Deprecated public void trace(Object, Throwable);
    method @Deprecated public void warn(Object);
    method @Deprecated public void warn(Object, Throwable);
  }

  @Deprecated public class LogConfigurationException extends java.lang.RuntimeException {
    ctor @Deprecated public LogConfigurationException();
    ctor @Deprecated public LogConfigurationException(String);
    ctor @Deprecated public LogConfigurationException(Throwable);
    ctor @Deprecated public LogConfigurationException(String, Throwable);
    field @Deprecated protected Throwable cause;
  }

  @Deprecated public abstract class LogFactory {
    ctor @Deprecated protected LogFactory();
    method @Deprecated protected static Object createFactory(String, ClassLoader);
    method @Deprecated protected static ClassLoader directGetContextClassLoader() throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated public abstract Object getAttribute(String);
    method @Deprecated public abstract String[] getAttributeNames();
    method @Deprecated protected static ClassLoader getClassLoader(Class);
    method @Deprecated protected static ClassLoader getContextClassLoader() throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated public static org.apache.commons.logging.LogFactory getFactory() throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated public abstract org.apache.commons.logging.Log getInstance(Class) throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated public abstract org.apache.commons.logging.Log getInstance(String) throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated public static org.apache.commons.logging.Log getLog(Class) throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated public static org.apache.commons.logging.Log getLog(String) throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated protected static boolean isDiagnosticsEnabled();
    method @Deprecated protected static final void logRawDiagnostic(String);
    method @Deprecated protected static org.apache.commons.logging.LogFactory newFactory(String, ClassLoader, ClassLoader) throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated protected static org.apache.commons.logging.LogFactory newFactory(String, ClassLoader);
    method @Deprecated public static String objectId(Object);
    method @Deprecated public abstract void release();
    method @Deprecated public static void release(ClassLoader);
    method @Deprecated public static void releaseAll();
    method @Deprecated public abstract void removeAttribute(String);
    method @Deprecated public abstract void setAttribute(String, Object);
    field @Deprecated public static final String DIAGNOSTICS_DEST_PROPERTY = "org.apache.commons.logging.diagnostics.dest";
    field @Deprecated public static final String FACTORY_DEFAULT = "org.apache.commons.logging.impl.LogFactoryImpl";
    field @Deprecated public static final String FACTORY_PROPERTIES = "commons-logging.properties";
    field @Deprecated public static final String FACTORY_PROPERTY = "org.apache.commons.logging.LogFactory";
    field @Deprecated public static final String HASHTABLE_IMPLEMENTATION_PROPERTY = "org.apache.commons.logging.LogFactory.HashtableImpl";
    field @Deprecated public static final String PRIORITY_KEY = "priority";
    field @Deprecated protected static final String SERVICE_ID = "META-INF/services/org.apache.commons.logging.LogFactory";
    field @Deprecated public static final String TCCL_KEY = "use_tccl";
    field @Deprecated protected static java.util.Hashtable factories;
    field @Deprecated protected static org.apache.commons.logging.LogFactory nullClassLoaderFactory;
  }

  @Deprecated public class LogSource {
    method @Deprecated public static org.apache.commons.logging.Log getInstance(String);
    method @Deprecated public static org.apache.commons.logging.Log getInstance(Class);
    method @Deprecated public static String[] getLogNames();
    method @Deprecated public static org.apache.commons.logging.Log makeNewLogInstance(String);
    method @Deprecated public static void setLogImplementation(String) throws java.lang.ClassNotFoundException, java.lang.ExceptionInInitializerError, java.lang.LinkageError, java.lang.NoSuchMethodException, java.lang.SecurityException;
    method @Deprecated public static void setLogImplementation(Class) throws java.lang.ExceptionInInitializerError, java.lang.LinkageError, java.lang.NoSuchMethodException, java.lang.SecurityException;
    field @Deprecated protected static boolean jdk14IsAvailable;
    field @Deprecated protected static boolean log4jIsAvailable;
    field @Deprecated protected static java.lang.reflect.Constructor logImplctor;
    field @Deprecated protected static java.util.Hashtable logs;
  }

}

package org.apache.commons.logging.impl {

  @Deprecated public class Jdk14Logger implements org.apache.commons.logging.Log java.io.Serializable {
    ctor @Deprecated public Jdk14Logger(String);
    method @Deprecated public void debug(Object);
    method @Deprecated public void debug(Object, Throwable);
    method @Deprecated public void error(Object);
    method @Deprecated public void error(Object, Throwable);
    method @Deprecated public void fatal(Object);
    method @Deprecated public void fatal(Object, Throwable);
    method @Deprecated public java.util.logging.Logger getLogger();
    method @Deprecated public void info(Object);
    method @Deprecated public void info(Object, Throwable);
    method @Deprecated public boolean isDebugEnabled();
    method @Deprecated public boolean isErrorEnabled();
    method @Deprecated public boolean isFatalEnabled();
    method @Deprecated public boolean isInfoEnabled();
    method @Deprecated public boolean isTraceEnabled();
    method @Deprecated public boolean isWarnEnabled();
    method @Deprecated public void trace(Object);
    method @Deprecated public void trace(Object, Throwable);
    method @Deprecated public void warn(Object);
    method @Deprecated public void warn(Object, Throwable);
    field @Deprecated protected static final java.util.logging.Level dummyLevel;
    field @Deprecated protected transient java.util.logging.Logger logger;
    field @Deprecated protected String name;
  }

  @Deprecated public class LogFactoryImpl extends org.apache.commons.logging.LogFactory {
    ctor @Deprecated public LogFactoryImpl();
    method @Deprecated public Object getAttribute(String);
    method @Deprecated public String[] getAttributeNames();
    method @Deprecated protected static ClassLoader getClassLoader(Class);
    method @Deprecated protected static ClassLoader getContextClassLoader() throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated public org.apache.commons.logging.Log getInstance(Class) throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated public org.apache.commons.logging.Log getInstance(String) throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated protected String getLogClassName();
    method @Deprecated protected java.lang.reflect.Constructor getLogConstructor() throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated protected static boolean isDiagnosticsEnabled();
    method @Deprecated protected boolean isJdk13LumberjackAvailable();
    method @Deprecated protected boolean isJdk14Available();
    method @Deprecated protected boolean isLog4JAvailable();
    method @Deprecated protected void logDiagnostic(String);
    method @Deprecated protected org.apache.commons.logging.Log newInstance(String) throws org.apache.commons.logging.LogConfigurationException;
    method @Deprecated public void release();
    method @Deprecated public void removeAttribute(String);
    method @Deprecated public void setAttribute(String, Object);
    field @Deprecated public static final String ALLOW_FLAWED_CONTEXT_PROPERTY = "org.apache.commons.logging.Log.allowFlawedContext";
    field @Deprecated public static final String ALLOW_FLAWED_DISCOVERY_PROPERTY = "org.apache.commons.logging.Log.allowFlawedDiscovery";
    field @Deprecated public static final String ALLOW_FLAWED_HIERARCHY_PROPERTY = "org.apache.commons.logging.Log.allowFlawedHierarchy";
    field @Deprecated public static final String LOG_PROPERTY = "org.apache.commons.logging.Log";
    field @Deprecated protected static final String LOG_PROPERTY_OLD = "org.apache.commons.logging.log";
    field @Deprecated protected java.util.Hashtable attributes;
    field @Deprecated protected java.util.Hashtable instances;
    field @Deprecated protected java.lang.reflect.Constructor logConstructor;
    field @Deprecated protected Class[] logConstructorSignature;
    field @Deprecated protected java.lang.reflect.Method logMethod;
    field @Deprecated protected Class[] logMethodSignature;
  }

  @Deprecated public class NoOpLog implements org.apache.commons.logging.Log java.io.Serializable {
    ctor @Deprecated public NoOpLog();
    ctor @Deprecated public NoOpLog(String);
    method @Deprecated public void debug(Object);
    method @Deprecated public void debug(Object, Throwable);
    method @Deprecated public void error(Object);
    method @Deprecated public void error(Object, Throwable);
    method @Deprecated public void fatal(Object);
    method @Deprecated public void fatal(Object, Throwable);
    method @Deprecated public void info(Object);
    method @Deprecated public void info(Object, Throwable);
    method @Deprecated public final boolean isDebugEnabled();
    method @Deprecated public final boolean isErrorEnabled();
    method @Deprecated public final boolean isFatalEnabled();
    method @Deprecated public final boolean isInfoEnabled();
    method @Deprecated public final boolean isTraceEnabled();
    method @Deprecated public final boolean isWarnEnabled();
    method @Deprecated public void trace(Object);
    method @Deprecated public void trace(Object, Throwable);
    method @Deprecated public void warn(Object);
    method @Deprecated public void warn(Object, Throwable);
  }

  @Deprecated public class SimpleLog implements org.apache.commons.logging.Log java.io.Serializable {
    ctor @Deprecated public SimpleLog(String);
    method @Deprecated public final void debug(Object);
    method @Deprecated public final void debug(Object, Throwable);
    method @Deprecated public final void error(Object);
    method @Deprecated public final void error(Object, Throwable);
    method @Deprecated public final void fatal(Object);
    method @Deprecated public final void fatal(Object, Throwable);
    method @Deprecated public int getLevel();
    method @Deprecated public final void info(Object);
    method @Deprecated public final void info(Object, Throwable);
    method @Deprecated public final boolean isDebugEnabled();
    method @Deprecated public final boolean isErrorEnabled();
    method @Deprecated public final boolean isFatalEnabled();
    method @Deprecated public final boolean isInfoEnabled();
    method @Deprecated protected boolean isLevelEnabled(int);
    method @Deprecated public final boolean isTraceEnabled();
    method @Deprecated public final boolean isWarnEnabled();
    method @Deprecated protected void log(int, Object, Throwable);
    method @Deprecated public void setLevel(int);
    method @Deprecated public final void trace(Object);
    method @Deprecated public final void trace(Object, Throwable);
    method @Deprecated public final void warn(Object);
    method @Deprecated public final void warn(Object, Throwable);
    method @Deprecated protected void write(StringBuffer);
    field @Deprecated protected static final String DEFAULT_DATE_TIME_FORMAT = "yyyy/MM/dd HH:mm:ss:SSS zzz";
    field @Deprecated public static final int LOG_LEVEL_ALL = 0; // 0x0
    field @Deprecated public static final int LOG_LEVEL_DEBUG = 2; // 0x2
    field @Deprecated public static final int LOG_LEVEL_ERROR = 5; // 0x5
    field @Deprecated public static final int LOG_LEVEL_FATAL = 6; // 0x6
    field @Deprecated public static final int LOG_LEVEL_INFO = 3; // 0x3
    field @Deprecated public static final int LOG_LEVEL_OFF = 7; // 0x7
    field @Deprecated public static final int LOG_LEVEL_TRACE = 1; // 0x1
    field @Deprecated public static final int LOG_LEVEL_WARN = 4; // 0x4
    field @Deprecated protected int currentLogLevel;
    field @Deprecated protected static java.text.DateFormat dateFormatter;
    field @Deprecated protected static String dateTimeFormat;
    field @Deprecated protected String logName;
    field @Deprecated protected static boolean showDateTime;
    field @Deprecated protected static boolean showLogName;
    field @Deprecated protected static boolean showShortName;
    field @Deprecated protected static final java.util.Properties simpleLogProps;
    field @Deprecated protected static final String systemPrefix = "org.apache.commons.logging.simplelog.";
  }

  @Deprecated public final class WeakHashtable extends java.util.Hashtable {
    ctor @Deprecated public WeakHashtable();
    method @Deprecated public java.util.Enumeration elements();
    method @Deprecated public java.util.Set entrySet();
    method @Deprecated public Object get(Object);
    method @Deprecated public java.util.Set keySet();
    method @Deprecated public java.util.Enumeration keys();
    method @Deprecated public Object put(Object, Object);
    method @Deprecated public void putAll(java.util.Map);
    method @Deprecated public Object remove(Object);
    method @Deprecated public java.util.Collection values();
  }

}

package org.apache.http {

  @Deprecated public class ConnectionClosedException extends java.io.IOException {
    ctor @Deprecated public ConnectionClosedException(String);
  }

  @Deprecated public interface ConnectionReuseStrategy {
    method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
  }

  @Deprecated public interface FormattedHeader extends org.apache.http.Header {
    method @Deprecated public org.apache.http.util.CharArrayBuffer getBuffer();
    method @Deprecated public int getValuePos();
  }

  @Deprecated public interface Header {
    method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.ParseException;
    method @Deprecated public String getName();
    method @Deprecated public String getValue();
  }

  @Deprecated public interface HeaderElement {
    method @Deprecated public String getName();
    method @Deprecated public org.apache.http.NameValuePair getParameter(int);
    method @Deprecated public org.apache.http.NameValuePair getParameterByName(String);
    method @Deprecated public int getParameterCount();
    method @Deprecated public org.apache.http.NameValuePair[] getParameters();
    method @Deprecated public String getValue();
  }

  @Deprecated public interface HeaderElementIterator extends java.util.Iterator {
    method @Deprecated public org.apache.http.HeaderElement nextElement();
  }

  @Deprecated public interface HeaderIterator extends java.util.Iterator {
    method @Deprecated public org.apache.http.Header nextHeader();
  }

  @Deprecated public interface HttpClientConnection extends org.apache.http.HttpConnection {
    method @Deprecated public void flush() throws java.io.IOException;
    method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
    method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public interface HttpConnection {
    method @Deprecated public void close() throws java.io.IOException;
    method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
    method @Deprecated public int getSocketTimeout();
    method @Deprecated public boolean isOpen();
    method @Deprecated public boolean isStale();
    method @Deprecated public void setSocketTimeout(int);
    method @Deprecated public void shutdown() throws java.io.IOException;
  }

  @Deprecated public interface HttpConnectionMetrics {
    method @Deprecated public Object getMetric(String);
    method @Deprecated public long getReceivedBytesCount();
    method @Deprecated public long getRequestCount();
    method @Deprecated public long getResponseCount();
    method @Deprecated public long getSentBytesCount();
    method @Deprecated public void reset();
  }

  @Deprecated public interface HttpEntity {
    method @Deprecated public void consumeContent() throws java.io.IOException;
    method @Deprecated public java.io.InputStream getContent() throws java.io.IOException, java.lang.IllegalStateException;
    method @Deprecated public org.apache.http.Header getContentEncoding();
    method @Deprecated public long getContentLength();
    method @Deprecated public org.apache.http.Header getContentType();
    method @Deprecated public boolean isChunked();
    method @Deprecated public boolean isRepeatable();
    method @Deprecated public boolean isStreaming();
    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
  }

  @Deprecated public interface HttpEntityEnclosingRequest extends org.apache.http.HttpRequest {
    method @Deprecated public boolean expectContinue();
    method @Deprecated public org.apache.http.HttpEntity getEntity();
    method @Deprecated public void setEntity(org.apache.http.HttpEntity);
  }

  @Deprecated public class HttpException extends java.lang.Exception {
    ctor @Deprecated public HttpException();
    ctor @Deprecated public HttpException(String);
    ctor @Deprecated public HttpException(String, Throwable);
  }

  @Deprecated public final class HttpHost implements java.lang.Cloneable {
    ctor @Deprecated public HttpHost(String, int, String);
    ctor @Deprecated public HttpHost(String, int);
    ctor @Deprecated public HttpHost(String);
    ctor @Deprecated public HttpHost(org.apache.http.HttpHost);
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public String getHostName();
    method @Deprecated public int getPort();
    method @Deprecated public String getSchemeName();
    method @Deprecated public String toHostString();
    method @Deprecated public String toURI();
    field @Deprecated public static final String DEFAULT_SCHEME_NAME = "http";
    field @Deprecated protected final String hostname;
    field @Deprecated protected final String lcHostname;
    field @Deprecated protected final int port;
    field @Deprecated protected final String schemeName;
  }

  @Deprecated public interface HttpInetConnection extends org.apache.http.HttpConnection {
    method @Deprecated public java.net.InetAddress getLocalAddress();
    method @Deprecated public int getLocalPort();
    method @Deprecated public java.net.InetAddress getRemoteAddress();
    method @Deprecated public int getRemotePort();
  }

  @Deprecated public interface HttpMessage {
    method @Deprecated public void addHeader(org.apache.http.Header);
    method @Deprecated public void addHeader(String, String);
    method @Deprecated public boolean containsHeader(String);
    method @Deprecated public org.apache.http.Header[] getAllHeaders();
    method @Deprecated public org.apache.http.Header getFirstHeader(String);
    method @Deprecated public org.apache.http.Header[] getHeaders(String);
    method @Deprecated public org.apache.http.Header getLastHeader(String);
    method @Deprecated public org.apache.http.params.HttpParams getParams();
    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
    method @Deprecated public org.apache.http.HeaderIterator headerIterator();
    method @Deprecated public org.apache.http.HeaderIterator headerIterator(String);
    method @Deprecated public void removeHeader(org.apache.http.Header);
    method @Deprecated public void removeHeaders(String);
    method @Deprecated public void setHeader(org.apache.http.Header);
    method @Deprecated public void setHeader(String, String);
    method @Deprecated public void setHeaders(org.apache.http.Header[]);
    method @Deprecated public void setParams(org.apache.http.params.HttpParams);
  }

  @Deprecated public interface HttpRequest extends org.apache.http.HttpMessage {
    method @Deprecated public org.apache.http.RequestLine getRequestLine();
  }

  @Deprecated public interface HttpRequestFactory {
    method @Deprecated public org.apache.http.HttpRequest newHttpRequest(org.apache.http.RequestLine) throws org.apache.http.MethodNotSupportedException;
    method @Deprecated public org.apache.http.HttpRequest newHttpRequest(String, String) throws org.apache.http.MethodNotSupportedException;
  }

  @Deprecated public interface HttpRequestInterceptor {
    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public interface HttpResponse extends org.apache.http.HttpMessage {
    method @Deprecated public org.apache.http.HttpEntity getEntity();
    method @Deprecated public java.util.Locale getLocale();
    method @Deprecated public org.apache.http.StatusLine getStatusLine();
    method @Deprecated public void setEntity(org.apache.http.HttpEntity);
    method @Deprecated public void setLocale(java.util.Locale);
    method @Deprecated public void setReasonPhrase(String) throws java.lang.IllegalStateException;
    method @Deprecated public void setStatusCode(int) throws java.lang.IllegalStateException;
    method @Deprecated public void setStatusLine(org.apache.http.StatusLine);
    method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int);
    method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int, String);
  }

  @Deprecated public interface HttpResponseFactory {
    method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.ProtocolVersion, int, org.apache.http.protocol.HttpContext);
    method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.StatusLine, org.apache.http.protocol.HttpContext);
  }

  @Deprecated public interface HttpResponseInterceptor {
    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public interface HttpServerConnection extends org.apache.http.HttpConnection {
    method @Deprecated public void flush() throws java.io.IOException;
    method @Deprecated public void receiveRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public org.apache.http.HttpRequest receiveRequestHeader() throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void sendResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void sendResponseHeader(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public interface HttpStatus {
    field @Deprecated public static final int SC_ACCEPTED = 202; // 0xca
    field @Deprecated public static final int SC_BAD_GATEWAY = 502; // 0x1f6
    field @Deprecated public static final int SC_BAD_REQUEST = 400; // 0x190
    field @Deprecated public static final int SC_CONFLICT = 409; // 0x199
    field @Deprecated public static final int SC_CONTINUE = 100; // 0x64
    field @Deprecated public static final int SC_CREATED = 201; // 0xc9
    field @Deprecated public static final int SC_EXPECTATION_FAILED = 417; // 0x1a1
    field @Deprecated public static final int SC_FAILED_DEPENDENCY = 424; // 0x1a8
    field @Deprecated public static final int SC_FORBIDDEN = 403; // 0x193
    field @Deprecated public static final int SC_GATEWAY_TIMEOUT = 504; // 0x1f8
    field @Deprecated public static final int SC_GONE = 410; // 0x19a
    field @Deprecated public static final int SC_HTTP_VERSION_NOT_SUPPORTED = 505; // 0x1f9
    field @Deprecated public static final int SC_INSUFFICIENT_SPACE_ON_RESOURCE = 419; // 0x1a3
    field @Deprecated public static final int SC_INSUFFICIENT_STORAGE = 507; // 0x1fb
    field @Deprecated public static final int SC_INTERNAL_SERVER_ERROR = 500; // 0x1f4
    field @Deprecated public static final int SC_LENGTH_REQUIRED = 411; // 0x19b
    field @Deprecated public static final int SC_LOCKED = 423; // 0x1a7
    field @Deprecated public static final int SC_METHOD_FAILURE = 420; // 0x1a4
    field @Deprecated public static final int SC_METHOD_NOT_ALLOWED = 405; // 0x195
    field @Deprecated public static final int SC_MOVED_PERMANENTLY = 301; // 0x12d
    field @Deprecated public static final int SC_MOVED_TEMPORARILY = 302; // 0x12e
    field @Deprecated public static final int SC_MULTIPLE_CHOICES = 300; // 0x12c
    field @Deprecated public static final int SC_MULTI_STATUS = 207; // 0xcf
    field @Deprecated public static final int SC_NON_AUTHORITATIVE_INFORMATION = 203; // 0xcb
    field @Deprecated public static final int SC_NOT_ACCEPTABLE = 406; // 0x196
    field @Deprecated public static final int SC_NOT_FOUND = 404; // 0x194
    field @Deprecated public static final int SC_NOT_IMPLEMENTED = 501; // 0x1f5
    field @Deprecated public static final int SC_NOT_MODIFIED = 304; // 0x130
    field @Deprecated public static final int SC_NO_CONTENT = 204; // 0xcc
    field @Deprecated public static final int SC_OK = 200; // 0xc8
    field @Deprecated public static final int SC_PARTIAL_CONTENT = 206; // 0xce
    field @Deprecated public static final int SC_PAYMENT_REQUIRED = 402; // 0x192
    field @Deprecated public static final int SC_PRECONDITION_FAILED = 412; // 0x19c
    field @Deprecated public static final int SC_PROCESSING = 102; // 0x66
    field @Deprecated public static final int SC_PROXY_AUTHENTICATION_REQUIRED = 407; // 0x197
    field @Deprecated public static final int SC_REQUESTED_RANGE_NOT_SATISFIABLE = 416; // 0x1a0
    field @Deprecated public static final int SC_REQUEST_TIMEOUT = 408; // 0x198
    field @Deprecated public static final int SC_REQUEST_TOO_LONG = 413; // 0x19d
    field @Deprecated public static final int SC_REQUEST_URI_TOO_LONG = 414; // 0x19e
    field @Deprecated public static final int SC_RESET_CONTENT = 205; // 0xcd
    field @Deprecated public static final int SC_SEE_OTHER = 303; // 0x12f
    field @Deprecated public static final int SC_SERVICE_UNAVAILABLE = 503; // 0x1f7
    field @Deprecated public static final int SC_SWITCHING_PROTOCOLS = 101; // 0x65
    field @Deprecated public static final int SC_TEMPORARY_REDIRECT = 307; // 0x133
    field @Deprecated public static final int SC_UNAUTHORIZED = 401; // 0x191
    field @Deprecated public static final int SC_UNPROCESSABLE_ENTITY = 422; // 0x1a6
    field @Deprecated public static final int SC_UNSUPPORTED_MEDIA_TYPE = 415; // 0x19f
    field @Deprecated public static final int SC_USE_PROXY = 305; // 0x131
  }

  @Deprecated public final class HttpVersion extends org.apache.http.ProtocolVersion implements java.io.Serializable {
    ctor @Deprecated public HttpVersion(int, int);
    field @Deprecated public static final String HTTP = "HTTP";
    field @Deprecated public static final org.apache.http.HttpVersion HTTP_0_9;
    field @Deprecated public static final org.apache.http.HttpVersion HTTP_1_0;
    field @Deprecated public static final org.apache.http.HttpVersion HTTP_1_1;
  }

  @Deprecated public class MalformedChunkCodingException extends java.io.IOException {
    ctor @Deprecated public MalformedChunkCodingException();
    ctor @Deprecated public MalformedChunkCodingException(String);
  }

  @Deprecated public class MethodNotSupportedException extends org.apache.http.HttpException {
    ctor @Deprecated public MethodNotSupportedException(String);
    ctor @Deprecated public MethodNotSupportedException(String, Throwable);
  }

  @Deprecated public interface NameValuePair {
    method @Deprecated public String getName();
    method @Deprecated public String getValue();
  }

  @Deprecated public class NoHttpResponseException extends java.io.IOException {
    ctor @Deprecated public NoHttpResponseException(String);
  }

  @Deprecated public class ParseException extends java.lang.RuntimeException {
    ctor @Deprecated public ParseException();
    ctor @Deprecated public ParseException(String);
  }

  @Deprecated public class ProtocolException extends org.apache.http.HttpException {
    ctor @Deprecated public ProtocolException();
    ctor @Deprecated public ProtocolException(String);
    ctor @Deprecated public ProtocolException(String, Throwable);
  }

  @Deprecated public class ProtocolVersion implements java.lang.Cloneable java.io.Serializable {
    ctor @Deprecated public ProtocolVersion(String, int, int);
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public int compareToVersion(org.apache.http.ProtocolVersion);
    method @Deprecated public final boolean equals(Object);
    method @Deprecated public org.apache.http.ProtocolVersion forVersion(int, int);
    method @Deprecated public final int getMajor();
    method @Deprecated public final int getMinor();
    method @Deprecated public final String getProtocol();
    method @Deprecated public final boolean greaterEquals(org.apache.http.ProtocolVersion);
    method @Deprecated public final int hashCode();
    method @Deprecated public boolean isComparable(org.apache.http.ProtocolVersion);
    method @Deprecated public final boolean lessEquals(org.apache.http.ProtocolVersion);
    field @Deprecated protected final int major;
    field @Deprecated protected final int minor;
    field @Deprecated protected final String protocol;
  }

  @Deprecated public interface ReasonPhraseCatalog {
    method @Deprecated public String getReason(int, java.util.Locale);
  }

  @Deprecated public interface RequestLine {
    method @Deprecated public String getMethod();
    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
    method @Deprecated public String getUri();
  }

  @Deprecated public interface StatusLine {
    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
    method @Deprecated public String getReasonPhrase();
    method @Deprecated public int getStatusCode();
  }

  @Deprecated public interface TokenIterator extends java.util.Iterator {
    method @Deprecated public String nextToken();
  }

  @Deprecated public class UnsupportedHttpVersionException extends org.apache.http.ProtocolException {
    ctor @Deprecated public UnsupportedHttpVersionException();
    ctor @Deprecated public UnsupportedHttpVersionException(String);
  }

}

package org.apache.http.auth {

  @Deprecated public final class AUTH {
    field @Deprecated public static final String PROXY_AUTH = "Proxy-Authenticate";
    field @Deprecated public static final String PROXY_AUTH_RESP = "Proxy-Authorization";
    field @Deprecated public static final String WWW_AUTH = "WWW-Authenticate";
    field @Deprecated public static final String WWW_AUTH_RESP = "Authorization";
  }

  @Deprecated public interface AuthScheme {
    method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, org.apache.http.HttpRequest) throws org.apache.http.auth.AuthenticationException;
    method @Deprecated public String getParameter(String);
    method @Deprecated public String getRealm();
    method @Deprecated public String getSchemeName();
    method @Deprecated public boolean isComplete();
    method @Deprecated public boolean isConnectionBased();
    method @Deprecated public void processChallenge(org.apache.http.Header) throws org.apache.http.auth.MalformedChallengeException;
  }

  @Deprecated public interface AuthSchemeFactory {
    method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpParams);
  }

  @Deprecated public final class AuthSchemeRegistry {
    ctor @Deprecated public AuthSchemeRegistry();
    method @Deprecated public org.apache.http.auth.AuthScheme getAuthScheme(String, org.apache.http.params.HttpParams) throws java.lang.IllegalStateException;
    method @Deprecated public java.util.List<java.lang.String> getSchemeNames();
    method @Deprecated public void register(String, org.apache.http.auth.AuthSchemeFactory);
    method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.auth.AuthSchemeFactory>);
    method @Deprecated public void unregister(String);
  }

  @Deprecated public class AuthScope {
    ctor @Deprecated public AuthScope(String, int, String, String);
    ctor @Deprecated public AuthScope(String, int, String);
    ctor @Deprecated public AuthScope(String, int);
    ctor @Deprecated public AuthScope(org.apache.http.auth.AuthScope);
    method @Deprecated public String getHost();
    method @Deprecated public int getPort();
    method @Deprecated public String getRealm();
    method @Deprecated public String getScheme();
    method @Deprecated public int match(org.apache.http.auth.AuthScope);
    field @Deprecated public static final org.apache.http.auth.AuthScope ANY;
    field @Deprecated public static final String ANY_HOST;
    field @Deprecated public static final int ANY_PORT = -1; // 0xffffffff
    field @Deprecated public static final String ANY_REALM;
    field @Deprecated public static final String ANY_SCHEME;
  }

  @Deprecated public class AuthState {
    ctor @Deprecated public AuthState();
    method @Deprecated public org.apache.http.auth.AuthScheme getAuthScheme();
    method @Deprecated public org.apache.http.auth.AuthScope getAuthScope();
    method @Deprecated public org.apache.http.auth.Credentials getCredentials();
    method @Deprecated public void invalidate();
    method @Deprecated public boolean isValid();
    method @Deprecated public void setAuthScheme(org.apache.http.auth.AuthScheme);
    method @Deprecated public void setAuthScope(org.apache.http.auth.AuthScope);
    method @Deprecated public void setCredentials(org.apache.http.auth.Credentials);
  }

  @Deprecated public class AuthenticationException extends org.apache.http.ProtocolException {
    ctor @Deprecated public AuthenticationException();
    ctor @Deprecated public AuthenticationException(String);
    ctor @Deprecated public AuthenticationException(String, Throwable);
  }

  @Deprecated public final class BasicUserPrincipal implements java.security.Principal {
    ctor @Deprecated public BasicUserPrincipal(String);
    method @Deprecated public String getName();
  }

  @Deprecated public interface Credentials {
    method @Deprecated public String getPassword();
    method @Deprecated public java.security.Principal getUserPrincipal();
  }

  @Deprecated public class InvalidCredentialsException extends org.apache.http.auth.AuthenticationException {
    ctor @Deprecated public InvalidCredentialsException();
    ctor @Deprecated public InvalidCredentialsException(String);
    ctor @Deprecated public InvalidCredentialsException(String, Throwable);
  }

  @Deprecated public class MalformedChallengeException extends org.apache.http.ProtocolException {
    ctor @Deprecated public MalformedChallengeException();
    ctor @Deprecated public MalformedChallengeException(String);
    ctor @Deprecated public MalformedChallengeException(String, Throwable);
  }

  @Deprecated public class NTCredentials implements org.apache.http.auth.Credentials {
    ctor @Deprecated public NTCredentials(String);
    ctor @Deprecated public NTCredentials(String, String, String, String);
    method @Deprecated public String getDomain();
    method @Deprecated public String getPassword();
    method @Deprecated public String getUserName();
    method @Deprecated public java.security.Principal getUserPrincipal();
    method @Deprecated public String getWorkstation();
  }

  @Deprecated public class NTUserPrincipal implements java.security.Principal {
    ctor @Deprecated public NTUserPrincipal(String, String);
    method @Deprecated public String getDomain();
    method @Deprecated public String getName();
    method @Deprecated public String getUsername();
  }

  @Deprecated public class UsernamePasswordCredentials implements org.apache.http.auth.Credentials {
    ctor @Deprecated public UsernamePasswordCredentials(String);
    ctor @Deprecated public UsernamePasswordCredentials(String, String);
    method @Deprecated public String getPassword();
    method @Deprecated public String getUserName();
    method @Deprecated public java.security.Principal getUserPrincipal();
  }

}

package org.apache.http.auth.params {

  @Deprecated public interface AuthPNames {
    field @Deprecated public static final String CREDENTIAL_CHARSET = "http.auth.credential-charset";
  }

  @Deprecated public class AuthParamBean extends org.apache.http.params.HttpAbstractParamBean {
    ctor @Deprecated public AuthParamBean(org.apache.http.params.HttpParams);
    method @Deprecated public void setCredentialCharset(String);
  }

  @Deprecated public final class AuthParams {
    method @Deprecated public static String getCredentialCharset(org.apache.http.params.HttpParams);
    method @Deprecated public static void setCredentialCharset(org.apache.http.params.HttpParams, String);
  }

}

package org.apache.http.client {

  @Deprecated public interface AuthenticationHandler {
    method @Deprecated public java.util.Map<java.lang.String,org.apache.http.Header> getChallenges(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.auth.MalformedChallengeException;
    method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
    method @Deprecated public org.apache.http.auth.AuthScheme selectScheme(java.util.Map<java.lang.String,org.apache.http.Header>, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.auth.AuthenticationException;
  }

  @Deprecated public class CircularRedirectException extends org.apache.http.client.RedirectException {
    ctor @Deprecated public CircularRedirectException();
    ctor @Deprecated public CircularRedirectException(String);
    ctor @Deprecated public CircularRedirectException(String, Throwable);
  }

  @Deprecated public class ClientProtocolException extends java.io.IOException {
    ctor @Deprecated public ClientProtocolException();
    ctor @Deprecated public ClientProtocolException(String);
    ctor @Deprecated public ClientProtocolException(Throwable);
    ctor @Deprecated public ClientProtocolException(String, Throwable);
  }

  @Deprecated public interface CookieStore {
    method @Deprecated public void addCookie(org.apache.http.cookie.Cookie);
    method @Deprecated public void clear();
    method @Deprecated public boolean clearExpired(java.util.Date);
    method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> getCookies();
  }

  @Deprecated public interface CredentialsProvider {
    method @Deprecated public void clear();
    method @Deprecated public org.apache.http.auth.Credentials getCredentials(org.apache.http.auth.AuthScope);
    method @Deprecated public void setCredentials(org.apache.http.auth.AuthScope, org.apache.http.auth.Credentials);
  }

  @Deprecated public interface HttpClient {
    method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.client.ResponseHandler<? extends T>) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.client.ResponseHandler<? extends T>, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.client.ResponseHandler<? extends T>) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.client.ResponseHandler<? extends T>, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public org.apache.http.conn.ClientConnectionManager getConnectionManager();
    method @Deprecated public org.apache.http.params.HttpParams getParams();
  }

  @Deprecated public interface HttpRequestRetryHandler {
    method @Deprecated public boolean retryRequest(java.io.IOException, int, org.apache.http.protocol.HttpContext);
  }

  @Deprecated public class HttpResponseException extends org.apache.http.client.ClientProtocolException {
    ctor @Deprecated public HttpResponseException(int, String);
    method @Deprecated public int getStatusCode();
  }

  @Deprecated public class NonRepeatableRequestException extends org.apache.http.ProtocolException {
    ctor @Deprecated public NonRepeatableRequestException();
    ctor @Deprecated public NonRepeatableRequestException(String);
  }

  @Deprecated public class RedirectException extends org.apache.http.ProtocolException {
    ctor @Deprecated public RedirectException();
    ctor @Deprecated public RedirectException(String);
    ctor @Deprecated public RedirectException(String, Throwable);
  }

  @Deprecated public interface RedirectHandler {
    method @Deprecated public java.net.URI getLocationURI(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.ProtocolException;
    method @Deprecated public boolean isRedirectRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
  }

  @Deprecated public interface RequestDirector {
    method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public interface ResponseHandler<T> {
    method @Deprecated public T handleResponse(org.apache.http.HttpResponse) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
  }

  @Deprecated public interface UserTokenHandler {
    method @Deprecated public Object getUserToken(org.apache.http.protocol.HttpContext);
  }

}

package org.apache.http.client.entity {

  @Deprecated public class UrlEncodedFormEntity extends org.apache.http.entity.StringEntity {
    ctor @Deprecated public UrlEncodedFormEntity(java.util.List<? extends org.apache.http.NameValuePair>, String) throws java.io.UnsupportedEncodingException;
    ctor @Deprecated public UrlEncodedFormEntity(java.util.List<? extends org.apache.http.NameValuePair>) throws java.io.UnsupportedEncodingException;
  }

}

package org.apache.http.client.methods {

  @Deprecated public interface AbortableHttpRequest {
    method @Deprecated public void abort();
    method @Deprecated public void setConnectionRequest(org.apache.http.conn.ClientConnectionRequest) throws java.io.IOException;
    method @Deprecated public void setReleaseTrigger(org.apache.http.conn.ConnectionReleaseTrigger) throws java.io.IOException;
  }

  @Deprecated public class HttpDelete extends org.apache.http.client.methods.HttpRequestBase {
    ctor @Deprecated public HttpDelete();
    ctor @Deprecated public HttpDelete(java.net.URI);
    ctor @Deprecated public HttpDelete(String);
    method @Deprecated public String getMethod();
    field @Deprecated public static final String METHOD_NAME = "DELETE";
  }

  @Deprecated public abstract class HttpEntityEnclosingRequestBase extends org.apache.http.client.methods.HttpRequestBase implements org.apache.http.HttpEntityEnclosingRequest {
    ctor @Deprecated public HttpEntityEnclosingRequestBase();
    method @Deprecated public boolean expectContinue();
    method @Deprecated public org.apache.http.HttpEntity getEntity();
    method @Deprecated public void setEntity(org.apache.http.HttpEntity);
  }

  @Deprecated public class HttpGet extends org.apache.http.client.methods.HttpRequestBase {
    ctor @Deprecated public HttpGet();
    ctor @Deprecated public HttpGet(java.net.URI);
    ctor @Deprecated public HttpGet(String);
    method @Deprecated public String getMethod();
    field @Deprecated public static final String METHOD_NAME = "GET";
  }

  @Deprecated public class HttpHead extends org.apache.http.client.methods.HttpRequestBase {
    ctor @Deprecated public HttpHead();
    ctor @Deprecated public HttpHead(java.net.URI);
    ctor @Deprecated public HttpHead(String);
    method @Deprecated public String getMethod();
    field @Deprecated public static final String METHOD_NAME = "HEAD";
  }

  @Deprecated public class HttpOptions extends org.apache.http.client.methods.HttpRequestBase {
    ctor @Deprecated public HttpOptions();
    ctor @Deprecated public HttpOptions(java.net.URI);
    ctor @Deprecated public HttpOptions(String);
    method @Deprecated public java.util.Set<java.lang.String> getAllowedMethods(org.apache.http.HttpResponse);
    method @Deprecated public String getMethod();
    field @Deprecated public static final String METHOD_NAME = "OPTIONS";
  }

  @Deprecated public class HttpPost extends org.apache.http.client.methods.HttpEntityEnclosingRequestBase {
    ctor @Deprecated public HttpPost();
    ctor @Deprecated public HttpPost(java.net.URI);
    ctor @Deprecated public HttpPost(String);
    method @Deprecated public String getMethod();
    field @Deprecated public static final String METHOD_NAME = "POST";
  }

  @Deprecated public class HttpPut extends org.apache.http.client.methods.HttpEntityEnclosingRequestBase {
    ctor @Deprecated public HttpPut();
    ctor @Deprecated public HttpPut(java.net.URI);
    ctor @Deprecated public HttpPut(String);
    method @Deprecated public String getMethod();
    field @Deprecated public static final String METHOD_NAME = "PUT";
  }

  @Deprecated public abstract class HttpRequestBase extends org.apache.http.message.AbstractHttpMessage implements org.apache.http.client.methods.AbortableHttpRequest java.lang.Cloneable org.apache.http.client.methods.HttpUriRequest {
    ctor @Deprecated public HttpRequestBase();
    method @Deprecated public void abort();
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
    method @Deprecated public org.apache.http.RequestLine getRequestLine();
    method @Deprecated public java.net.URI getURI();
    method @Deprecated public boolean isAborted();
    method @Deprecated public void setConnectionRequest(org.apache.http.conn.ClientConnectionRequest) throws java.io.IOException;
    method @Deprecated public void setReleaseTrigger(org.apache.http.conn.ConnectionReleaseTrigger) throws java.io.IOException;
    method @Deprecated public void setURI(java.net.URI);
  }

  @Deprecated public class HttpTrace extends org.apache.http.client.methods.HttpRequestBase {
    ctor @Deprecated public HttpTrace();
    ctor @Deprecated public HttpTrace(java.net.URI);
    ctor @Deprecated public HttpTrace(String);
    method @Deprecated public String getMethod();
    field @Deprecated public static final String METHOD_NAME = "TRACE";
  }

  @Deprecated public interface HttpUriRequest extends org.apache.http.HttpRequest {
    method @Deprecated public void abort() throws java.lang.UnsupportedOperationException;
    method @Deprecated public String getMethod();
    method @Deprecated public java.net.URI getURI();
    method @Deprecated public boolean isAborted();
  }

}

package org.apache.http.client.params {

  @Deprecated public interface AllClientPNames extends org.apache.http.params.CoreConnectionPNames org.apache.http.auth.params.AuthPNames org.apache.http.client.params.ClientPNames org.apache.http.conn.params.ConnConnectionPNames org.apache.http.conn.params.ConnManagerPNames org.apache.http.conn.params.ConnRoutePNames org.apache.http.cookie.params.CookieSpecPNames org.apache.http.params.CoreProtocolPNames {
  }

  @Deprecated public final class AuthPolicy {
    field @Deprecated public static final String BASIC = "Basic";
    field @Deprecated public static final String DIGEST = "Digest";
    field @Deprecated public static final String NTLM = "NTLM";
  }

  @Deprecated public interface ClientPNames {
    field @Deprecated public static final String ALLOW_CIRCULAR_REDIRECTS = "http.protocol.allow-circular-redirects";
    field @Deprecated public static final String CONNECTION_MANAGER_FACTORY = "http.connection-manager.factory-object";
    field @Deprecated public static final String CONNECTION_MANAGER_FACTORY_CLASS_NAME = "http.connection-manager.factory-class-name";
    field @Deprecated public static final String COOKIE_POLICY = "http.protocol.cookie-policy";
    field @Deprecated public static final String DEFAULT_HEADERS = "http.default-headers";
    field @Deprecated public static final String DEFAULT_HOST = "http.default-host";
    field @Deprecated public static final String HANDLE_AUTHENTICATION = "http.protocol.handle-authentication";
    field @Deprecated public static final String HANDLE_REDIRECTS = "http.protocol.handle-redirects";
    field @Deprecated public static final String MAX_REDIRECTS = "http.protocol.max-redirects";
    field @Deprecated public static final String REJECT_RELATIVE_REDIRECT = "http.protocol.reject-relative-redirect";
    field @Deprecated public static final String VIRTUAL_HOST = "http.virtual-host";
  }

  @Deprecated public class ClientParamBean extends org.apache.http.params.HttpAbstractParamBean {
    ctor @Deprecated public ClientParamBean(org.apache.http.params.HttpParams);
    method @Deprecated public void setAllowCircularRedirects(boolean);
    method @Deprecated public void setConnectionManagerFactory(org.apache.http.conn.ClientConnectionManagerFactory);
    method @Deprecated public void setConnectionManagerFactoryClassName(String);
    method @Deprecated public void setCookiePolicy(String);
    method @Deprecated public void setDefaultHeaders(java.util.Collection<org.apache.http.Header>);
    method @Deprecated public void setDefaultHost(org.apache.http.HttpHost);
    method @Deprecated public void setHandleAuthentication(boolean);
    method @Deprecated public void setHandleRedirects(boolean);
    method @Deprecated public void setMaxRedirects(int);
    method @Deprecated public void setRejectRelativeRedirect(boolean);
    method @Deprecated public void setVirtualHost(org.apache.http.HttpHost);
  }

  @Deprecated public final class CookiePolicy {
    field @Deprecated public static final String BEST_MATCH = "best-match";
    field @Deprecated public static final String BROWSER_COMPATIBILITY = "compatibility";
    field @Deprecated public static final String NETSCAPE = "netscape";
    field @Deprecated public static final String RFC_2109 = "rfc2109";
    field @Deprecated public static final String RFC_2965 = "rfc2965";
  }

  @Deprecated public class HttpClientParams {
    method @Deprecated public static String getCookiePolicy(org.apache.http.params.HttpParams);
    method @Deprecated public static boolean isAuthenticating(org.apache.http.params.HttpParams);
    method @Deprecated public static boolean isRedirecting(org.apache.http.params.HttpParams);
    method @Deprecated public static void setAuthenticating(org.apache.http.params.HttpParams, boolean);
    method @Deprecated public static void setCookiePolicy(org.apache.http.params.HttpParams, String);
    method @Deprecated public static void setRedirecting(org.apache.http.params.HttpParams, boolean);
  }

}

package org.apache.http.client.protocol {

  @Deprecated public interface ClientContext {
    field @Deprecated public static final String AUTHSCHEME_REGISTRY = "http.authscheme-registry";
    field @Deprecated public static final String AUTH_SCHEME_PREF = "http.auth.scheme-pref";
    field @Deprecated public static final String COOKIESPEC_REGISTRY = "http.cookiespec-registry";
    field @Deprecated public static final String COOKIE_ORIGIN = "http.cookie-origin";
    field @Deprecated public static final String COOKIE_SPEC = "http.cookie-spec";
    field @Deprecated public static final String COOKIE_STORE = "http.cookie-store";
    field @Deprecated public static final String CREDS_PROVIDER = "http.auth.credentials-provider";
    field @Deprecated public static final String PROXY_AUTH_STATE = "http.auth.proxy-scope";
    field @Deprecated public static final String TARGET_AUTH_STATE = "http.auth.target-scope";
    field @Deprecated public static final String USER_TOKEN = "http.user-token";
  }

  @Deprecated public class ClientContextConfigurer implements org.apache.http.client.protocol.ClientContext {
    ctor @Deprecated public ClientContextConfigurer(org.apache.http.protocol.HttpContext);
    method @Deprecated public void setAuthSchemePref(java.util.List<java.lang.String>);
    method @Deprecated public void setAuthSchemeRegistry(org.apache.http.auth.AuthSchemeRegistry);
    method @Deprecated public void setCookieSpecRegistry(org.apache.http.cookie.CookieSpecRegistry);
    method @Deprecated public void setCookieStore(org.apache.http.client.CookieStore);
    method @Deprecated public void setCredentialsProvider(org.apache.http.client.CredentialsProvider);
  }

  @Deprecated public class RequestAddCookies implements org.apache.http.HttpRequestInterceptor {
    ctor @Deprecated public RequestAddCookies();
    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class RequestDefaultHeaders implements org.apache.http.HttpRequestInterceptor {
    ctor @Deprecated public RequestDefaultHeaders();
    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class RequestProxyAuthentication implements org.apache.http.HttpRequestInterceptor {
    ctor @Deprecated public RequestProxyAuthentication();
    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class RequestTargetAuthentication implements org.apache.http.HttpRequestInterceptor {
    ctor @Deprecated public RequestTargetAuthentication();
    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class ResponseProcessCookies implements org.apache.http.HttpResponseInterceptor {
    ctor @Deprecated public ResponseProcessCookies();
    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

}

package org.apache.http.client.utils {

  @Deprecated public class CloneUtils {
    method @Deprecated public static Object clone(Object) throws java.lang.CloneNotSupportedException;
  }

  @Deprecated public class URIUtils {
    method @Deprecated public static java.net.URI createURI(String, String, int, String, String, String) throws java.net.URISyntaxException;
    method @Deprecated public static java.net.URI resolve(java.net.URI, String);
    method @Deprecated public static java.net.URI resolve(java.net.URI, java.net.URI);
    method @Deprecated public static java.net.URI rewriteURI(java.net.URI, org.apache.http.HttpHost, boolean) throws java.net.URISyntaxException;
    method @Deprecated public static java.net.URI rewriteURI(java.net.URI, org.apache.http.HttpHost) throws java.net.URISyntaxException;
  }

  @Deprecated public class URLEncodedUtils {
    ctor @Deprecated public URLEncodedUtils();
    method @Deprecated public static String format(java.util.List<? extends org.apache.http.NameValuePair>, String);
    method @Deprecated public static boolean isEncoded(org.apache.http.HttpEntity);
    method @Deprecated public static java.util.List<org.apache.http.NameValuePair> parse(java.net.URI, String);
    method @Deprecated public static java.util.List<org.apache.http.NameValuePair> parse(org.apache.http.HttpEntity) throws java.io.IOException;
    method @Deprecated public static void parse(java.util.List<org.apache.http.NameValuePair>, java.util.Scanner, String);
    field @Deprecated public static final String CONTENT_TYPE = "application/x-www-form-urlencoded";
  }

}

package org.apache.http.conn {

  @Deprecated public class BasicEofSensorWatcher implements org.apache.http.conn.EofSensorWatcher {
    ctor @Deprecated public BasicEofSensorWatcher(org.apache.http.conn.ManagedClientConnection, boolean);
    method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
    method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
    method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
    field @Deprecated protected boolean attemptReuse;
    field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
  }

  @Deprecated public class BasicManagedEntity extends org.apache.http.entity.HttpEntityWrapper implements org.apache.http.conn.ConnectionReleaseTrigger org.apache.http.conn.EofSensorWatcher {
    ctor @Deprecated public BasicManagedEntity(org.apache.http.HttpEntity, org.apache.http.conn.ManagedClientConnection, boolean);
    method @Deprecated public void abortConnection() throws java.io.IOException;
    method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
    method @Deprecated public void releaseConnection() throws java.io.IOException;
    method @Deprecated protected void releaseManagedConnection() throws java.io.IOException;
    method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
    method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
    field @Deprecated protected final boolean attemptReuse;
    field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
  }

  @Deprecated public interface ClientConnectionManager {
    method @Deprecated public void closeExpiredConnections();
    method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
    method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
    method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, long, java.util.concurrent.TimeUnit);
    method @Deprecated public org.apache.http.conn.ClientConnectionRequest requestConnection(org.apache.http.conn.routing.HttpRoute, Object);
    method @Deprecated public void shutdown();
  }

  @Deprecated public interface ClientConnectionManagerFactory {
    method @Deprecated public org.apache.http.conn.ClientConnectionManager newInstance(org.apache.http.params.HttpParams, org.apache.http.conn.scheme.SchemeRegistry);
  }

  @Deprecated public interface ClientConnectionOperator {
    method @Deprecated public org.apache.http.conn.OperatedClientConnection createConnection();
    method @Deprecated public void openConnection(org.apache.http.conn.OperatedClientConnection, org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void updateSecureConnection(org.apache.http.conn.OperatedClientConnection, org.apache.http.HttpHost, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
  }

  @Deprecated public interface ClientConnectionRequest {
    method @Deprecated public void abortRequest();
    method @Deprecated public org.apache.http.conn.ManagedClientConnection getConnection(long, java.util.concurrent.TimeUnit) throws org.apache.http.conn.ConnectionPoolTimeoutException, java.lang.InterruptedException;
  }

  @Deprecated public interface ConnectionKeepAliveStrategy {
    method @Deprecated public long getKeepAliveDuration(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
  }

  @Deprecated public class ConnectionPoolTimeoutException extends org.apache.http.conn.ConnectTimeoutException {
    ctor @Deprecated public ConnectionPoolTimeoutException();
    ctor @Deprecated public ConnectionPoolTimeoutException(String);
  }

  @Deprecated public interface ConnectionReleaseTrigger {
    method @Deprecated public void abortConnection() throws java.io.IOException;
    method @Deprecated public void releaseConnection() throws java.io.IOException;
  }

  @Deprecated public class EofSensorInputStream extends java.io.InputStream implements org.apache.http.conn.ConnectionReleaseTrigger {
    ctor @Deprecated public EofSensorInputStream(java.io.InputStream, org.apache.http.conn.EofSensorWatcher);
    method @Deprecated public void abortConnection() throws java.io.IOException;
    method @Deprecated protected void checkAbort() throws java.io.IOException;
    method @Deprecated protected void checkClose() throws java.io.IOException;
    method @Deprecated protected void checkEOF(int) throws java.io.IOException;
    method @Deprecated protected boolean isReadAllowed() throws java.io.IOException;
    method @Deprecated public int read() throws java.io.IOException;
    method @Deprecated public void releaseConnection() throws java.io.IOException;
    field @Deprecated protected java.io.InputStream wrappedStream;
  }

  @Deprecated public interface EofSensorWatcher {
    method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
    method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
    method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
  }

  @Deprecated public class HttpHostConnectException extends java.net.ConnectException {
    ctor @Deprecated public HttpHostConnectException(org.apache.http.HttpHost, java.net.ConnectException);
    method @Deprecated public org.apache.http.HttpHost getHost();
  }

  @Deprecated public interface ManagedClientConnection extends org.apache.http.HttpClientConnection org.apache.http.conn.ConnectionReleaseTrigger org.apache.http.HttpInetConnection {
    method @Deprecated public org.apache.http.conn.routing.HttpRoute getRoute();
    method @Deprecated public javax.net.ssl.SSLSession getSSLSession();
    method @Deprecated public Object getState();
    method @Deprecated public boolean isMarkedReusable();
    method @Deprecated public boolean isSecure();
    method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void markReusable();
    method @Deprecated public void open(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void setIdleDuration(long, java.util.concurrent.TimeUnit);
    method @Deprecated public void setState(Object);
    method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void unmarkReusable();
  }

  @Deprecated public final class MultihomePlainSocketFactory implements org.apache.http.conn.scheme.SocketFactory {
    method @Deprecated public java.net.Socket connectSocket(java.net.Socket, String, int, java.net.InetAddress, int, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public java.net.Socket createSocket();
    method @Deprecated public static org.apache.http.conn.MultihomePlainSocketFactory getSocketFactory();
    method @Deprecated public boolean isSecure(java.net.Socket) throws java.lang.IllegalArgumentException;
  }

  @Deprecated public interface OperatedClientConnection extends org.apache.http.HttpClientConnection org.apache.http.HttpInetConnection {
    method @Deprecated public java.net.Socket getSocket();
    method @Deprecated public org.apache.http.HttpHost getTargetHost();
    method @Deprecated public boolean isSecure();
    method @Deprecated public void openCompleted(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void opening(java.net.Socket, org.apache.http.HttpHost) throws java.io.IOException;
    method @Deprecated public void update(java.net.Socket, org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
  }

}

package org.apache.http.conn.params {

  @Deprecated public interface ConnConnectionPNames {
    field @Deprecated public static final String MAX_STATUS_LINE_GARBAGE = "http.connection.max-status-line-garbage";
  }

  @Deprecated public class ConnConnectionParamBean extends org.apache.http.params.HttpAbstractParamBean {
    ctor @Deprecated public ConnConnectionParamBean(org.apache.http.params.HttpParams);
    method @Deprecated public void setMaxStatusLineGarbage(int);
  }

  @Deprecated public interface ConnManagerPNames {
    field @Deprecated public static final String MAX_CONNECTIONS_PER_ROUTE = "http.conn-manager.max-per-route";
    field @Deprecated public static final String MAX_TOTAL_CONNECTIONS = "http.conn-manager.max-total";
    field @Deprecated public static final String TIMEOUT = "http.conn-manager.timeout";
  }

  @Deprecated public class ConnManagerParamBean extends org.apache.http.params.HttpAbstractParamBean {
    ctor @Deprecated public ConnManagerParamBean(org.apache.http.params.HttpParams);
    method @Deprecated public void setConnectionsPerRoute(org.apache.http.conn.params.ConnPerRouteBean);
    method @Deprecated public void setMaxTotalConnections(int);
    method @Deprecated public void setTimeout(long);
  }

  @Deprecated public final class ConnManagerParams implements org.apache.http.conn.params.ConnManagerPNames {
    ctor @Deprecated public ConnManagerParams();
    method @Deprecated public static org.apache.http.conn.params.ConnPerRoute getMaxConnectionsPerRoute(org.apache.http.params.HttpParams);
    method @Deprecated public static int getMaxTotalConnections(org.apache.http.params.HttpParams);
    method @Deprecated public static long getTimeout(org.apache.http.params.HttpParams);
    method @Deprecated public static void setMaxConnectionsPerRoute(org.apache.http.params.HttpParams, org.apache.http.conn.params.ConnPerRoute);
    method @Deprecated public static void setMaxTotalConnections(org.apache.http.params.HttpParams, int);
    method @Deprecated public static void setTimeout(org.apache.http.params.HttpParams, long);
    field @Deprecated public static final int DEFAULT_MAX_TOTAL_CONNECTIONS = 20; // 0x14
  }

  @Deprecated public interface ConnPerRoute {
    method @Deprecated public int getMaxForRoute(org.apache.http.conn.routing.HttpRoute);
  }

  @Deprecated public final class ConnPerRouteBean implements org.apache.http.conn.params.ConnPerRoute {
    ctor @Deprecated public ConnPerRouteBean(int);
    ctor @Deprecated public ConnPerRouteBean();
    method @Deprecated public int getDefaultMax();
    method @Deprecated public int getMaxForRoute(org.apache.http.conn.routing.HttpRoute);
    method @Deprecated public void setDefaultMaxPerRoute(int);
    method @Deprecated public void setMaxForRoute(org.apache.http.conn.routing.HttpRoute, int);
    method @Deprecated public void setMaxForRoutes(java.util.Map<org.apache.http.conn.routing.HttpRoute,java.lang.Integer>);
    field @Deprecated public static final int DEFAULT_MAX_CONNECTIONS_PER_ROUTE = 2; // 0x2
  }

  @Deprecated public interface ConnRoutePNames {
    field @Deprecated public static final String DEFAULT_PROXY = "http.route.default-proxy";
    field @Deprecated public static final String FORCED_ROUTE = "http.route.forced-route";
    field @Deprecated public static final String LOCAL_ADDRESS = "http.route.local-address";
  }

  @Deprecated public class ConnRouteParamBean extends org.apache.http.params.HttpAbstractParamBean {
    ctor @Deprecated public ConnRouteParamBean(org.apache.http.params.HttpParams);
    method @Deprecated public void setDefaultProxy(org.apache.http.HttpHost);
    method @Deprecated public void setForcedRoute(org.apache.http.conn.routing.HttpRoute);
    method @Deprecated public void setLocalAddress(java.net.InetAddress);
  }

  @Deprecated public class ConnRouteParams implements org.apache.http.conn.params.ConnRoutePNames {
    method @Deprecated public static org.apache.http.HttpHost getDefaultProxy(org.apache.http.params.HttpParams);
    method @Deprecated public static org.apache.http.conn.routing.HttpRoute getForcedRoute(org.apache.http.params.HttpParams);
    method @Deprecated public static java.net.InetAddress getLocalAddress(org.apache.http.params.HttpParams);
    method @Deprecated public static void setDefaultProxy(org.apache.http.params.HttpParams, org.apache.http.HttpHost);
    method @Deprecated public static void setForcedRoute(org.apache.http.params.HttpParams, org.apache.http.conn.routing.HttpRoute);
    method @Deprecated public static void setLocalAddress(org.apache.http.params.HttpParams, java.net.InetAddress);
    field @Deprecated public static final org.apache.http.HttpHost NO_HOST;
    field @Deprecated public static final org.apache.http.conn.routing.HttpRoute NO_ROUTE;
  }

}

package org.apache.http.conn.routing {

  @Deprecated public class BasicRouteDirector implements org.apache.http.conn.routing.HttpRouteDirector {
    ctor @Deprecated public BasicRouteDirector();
    method @Deprecated protected int directStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteInfo);
    method @Deprecated protected int firstStep(org.apache.http.conn.routing.RouteInfo);
    method @Deprecated public int nextStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteInfo);
    method @Deprecated protected int proxiedStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteInfo);
  }

  @Deprecated public final class HttpRoute implements java.lang.Cloneable org.apache.http.conn.routing.RouteInfo {
    ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.HttpHost[], boolean, org.apache.http.conn.routing.RouteInfo.TunnelType, org.apache.http.conn.routing.RouteInfo.LayerType);
    ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.HttpHost, boolean, org.apache.http.conn.routing.RouteInfo.TunnelType, org.apache.http.conn.routing.RouteInfo.LayerType);
    ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, boolean);
    ctor @Deprecated public HttpRoute(org.apache.http.HttpHost);
    ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.HttpHost, boolean);
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public int getHopCount();
    method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
    method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
    method @Deprecated public java.net.InetAddress getLocalAddress();
    method @Deprecated public org.apache.http.HttpHost getProxyHost();
    method @Deprecated public org.apache.http.HttpHost getTargetHost();
    method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
    method @Deprecated public boolean isLayered();
    method @Deprecated public boolean isSecure();
    method @Deprecated public boolean isTunnelled();
  }

  @Deprecated public interface HttpRouteDirector {
    method @Deprecated public int nextStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteInfo);
    field @Deprecated public static final int COMPLETE = 0; // 0x0
    field @Deprecated public static final int CONNECT_PROXY = 2; // 0x2
    field @Deprecated public static final int CONNECT_TARGET = 1; // 0x1
    field @Deprecated public static final int LAYER_PROTOCOL = 5; // 0x5
    field @Deprecated public static final int TUNNEL_PROXY = 4; // 0x4
    field @Deprecated public static final int TUNNEL_TARGET = 3; // 0x3
    field @Deprecated public static final int UNREACHABLE = -1; // 0xffffffff
  }

  @Deprecated public interface HttpRoutePlanner {
    method @Deprecated public org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
  }

  @Deprecated public interface RouteInfo {
    method @Deprecated public int getHopCount();
    method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
    method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
    method @Deprecated public java.net.InetAddress getLocalAddress();
    method @Deprecated public org.apache.http.HttpHost getProxyHost();
    method @Deprecated public org.apache.http.HttpHost getTargetHost();
    method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
    method @Deprecated public boolean isLayered();
    method @Deprecated public boolean isSecure();
    method @Deprecated public boolean isTunnelled();
  }

  @Deprecated public enum RouteInfo.LayerType {
    enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.LayerType LAYERED;
    enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.LayerType PLAIN;
  }

  @Deprecated public enum RouteInfo.TunnelType {
    enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.TunnelType PLAIN;
    enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.TunnelType TUNNELLED;
  }

  @Deprecated public final class RouteTracker implements java.lang.Cloneable org.apache.http.conn.routing.RouteInfo {
    ctor @Deprecated public RouteTracker(org.apache.http.HttpHost, java.net.InetAddress);
    ctor @Deprecated public RouteTracker(org.apache.http.conn.routing.HttpRoute);
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public void connectProxy(org.apache.http.HttpHost, boolean);
    method @Deprecated public void connectTarget(boolean);
    method @Deprecated public int getHopCount();
    method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
    method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
    method @Deprecated public java.net.InetAddress getLocalAddress();
    method @Deprecated public org.apache.http.HttpHost getProxyHost();
    method @Deprecated public org.apache.http.HttpHost getTargetHost();
    method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
    method @Deprecated public boolean isConnected();
    method @Deprecated public boolean isLayered();
    method @Deprecated public boolean isSecure();
    method @Deprecated public boolean isTunnelled();
    method @Deprecated public void layerProtocol(boolean);
    method @Deprecated public org.apache.http.conn.routing.HttpRoute toRoute();
    method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean);
    method @Deprecated public void tunnelTarget(boolean);
  }

}

package org.apache.http.conn.scheme {

  @Deprecated public final class PlainSocketFactory implements org.apache.http.conn.scheme.SocketFactory {
    ctor @Deprecated public PlainSocketFactory(org.apache.http.conn.scheme.HostNameResolver);
    ctor @Deprecated public PlainSocketFactory();
    method @Deprecated public java.net.Socket connectSocket(java.net.Socket, String, int, java.net.InetAddress, int, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public java.net.Socket createSocket();
    method @Deprecated public static org.apache.http.conn.scheme.PlainSocketFactory getSocketFactory();
    method @Deprecated public boolean isSecure(java.net.Socket) throws java.lang.IllegalArgumentException;
  }

  @Deprecated public final class Scheme {
    ctor @Deprecated public Scheme(String, org.apache.http.conn.scheme.SocketFactory, int);
    method @Deprecated public int getDefaultPort();
    method @Deprecated public String getName();
    method @Deprecated public org.apache.http.conn.scheme.SocketFactory getSocketFactory();
    method @Deprecated public boolean isLayered();
    method @Deprecated public int resolvePort(int);
  }

  @Deprecated public final class SchemeRegistry {
    ctor @Deprecated public SchemeRegistry();
    method @Deprecated public org.apache.http.conn.scheme.Scheme get(String);
    method @Deprecated public org.apache.http.conn.scheme.Scheme getScheme(String);
    method @Deprecated public org.apache.http.conn.scheme.Scheme getScheme(org.apache.http.HttpHost);
    method @Deprecated public java.util.List<java.lang.String> getSchemeNames();
    method @Deprecated public org.apache.http.conn.scheme.Scheme register(org.apache.http.conn.scheme.Scheme);
    method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.conn.scheme.Scheme>);
    method @Deprecated public org.apache.http.conn.scheme.Scheme unregister(String);
  }

}

package org.apache.http.conn.util {

  @Deprecated public class InetAddressUtils {
    method @Deprecated public static boolean isIPv4Address(String);
    method @Deprecated public static boolean isIPv6Address(String);
    method @Deprecated public static boolean isIPv6HexCompressedAddress(String);
    method @Deprecated public static boolean isIPv6StdAddress(String);
  }

}

package org.apache.http.cookie {

  @Deprecated public interface ClientCookie extends org.apache.http.cookie.Cookie {
    method @Deprecated public boolean containsAttribute(String);
    method @Deprecated public String getAttribute(String);
    field @Deprecated public static final String COMMENTURL_ATTR = "commenturl";
    field @Deprecated public static final String COMMENT_ATTR = "comment";
    field @Deprecated public static final String DISCARD_ATTR = "discard";
    field @Deprecated public static final String DOMAIN_ATTR = "domain";
    field @Deprecated public static final String EXPIRES_ATTR = "expires";
    field @Deprecated public static final String MAX_AGE_ATTR = "max-age";
    field @Deprecated public static final String PATH_ATTR = "path";
    field @Deprecated public static final String PORT_ATTR = "port";
    field @Deprecated public static final String SECURE_ATTR = "secure";
    field @Deprecated public static final String VERSION_ATTR = "version";
  }

  @Deprecated public interface Cookie {
    method @Deprecated public String getComment();
    method @Deprecated public String getCommentURL();
    method @Deprecated public String getDomain();
    method @Deprecated public java.util.Date getExpiryDate();
    method @Deprecated public String getName();
    method @Deprecated public String getPath();
    method @Deprecated public int[] getPorts();
    method @Deprecated public String getValue();
    method @Deprecated public int getVersion();
    method @Deprecated public boolean isExpired(java.util.Date);
    method @Deprecated public boolean isPersistent();
    method @Deprecated public boolean isSecure();
  }

  @Deprecated public interface CookieAttributeHandler {
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class CookieIdentityComparator implements java.util.Comparator<org.apache.http.cookie.Cookie> java.io.Serializable {
    ctor @Deprecated public CookieIdentityComparator();
    method @Deprecated public int compare(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cookie);
  }

  @Deprecated public final class CookieOrigin {
    ctor @Deprecated public CookieOrigin(String, int, String, boolean);
    method @Deprecated public String getHost();
    method @Deprecated public String getPath();
    method @Deprecated public int getPort();
    method @Deprecated public boolean isSecure();
  }

  @Deprecated public class CookiePathComparator implements java.util.Comparator<org.apache.http.cookie.Cookie> java.io.Serializable {
    ctor @Deprecated public CookiePathComparator();
    method @Deprecated public int compare(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cookie);
  }

  @Deprecated public interface CookieSpec {
    method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
    method @Deprecated public int getVersion();
    method @Deprecated public org.apache.http.Header getVersionHeader();
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Header, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public interface CookieSpecFactory {
    method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
  }

  @Deprecated public final class CookieSpecRegistry {
    ctor @Deprecated public CookieSpecRegistry();
    method @Deprecated public org.apache.http.cookie.CookieSpec getCookieSpec(String, org.apache.http.params.HttpParams) throws java.lang.IllegalStateException;
    method @Deprecated public org.apache.http.cookie.CookieSpec getCookieSpec(String) throws java.lang.IllegalStateException;
    method @Deprecated public java.util.List<java.lang.String> getSpecNames();
    method @Deprecated public void register(String, org.apache.http.cookie.CookieSpecFactory);
    method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.cookie.CookieSpecFactory>);
    method @Deprecated public void unregister(String);
  }

  @Deprecated public class MalformedCookieException extends org.apache.http.ProtocolException {
    ctor @Deprecated public MalformedCookieException();
    ctor @Deprecated public MalformedCookieException(String);
    ctor @Deprecated public MalformedCookieException(String, Throwable);
  }

  @Deprecated public interface SM {
    field @Deprecated public static final String COOKIE = "Cookie";
    field @Deprecated public static final String COOKIE2 = "Cookie2";
    field @Deprecated public static final String SET_COOKIE = "Set-Cookie";
    field @Deprecated public static final String SET_COOKIE2 = "Set-Cookie2";
  }

  @Deprecated public interface SetCookie extends org.apache.http.cookie.Cookie {
    method @Deprecated public void setComment(String);
    method @Deprecated public void setDomain(String);
    method @Deprecated public void setExpiryDate(java.util.Date);
    method @Deprecated public void setPath(String);
    method @Deprecated public void setSecure(boolean);
    method @Deprecated public void setValue(String);
    method @Deprecated public void setVersion(int);
  }

  @Deprecated public interface SetCookie2 extends org.apache.http.cookie.SetCookie {
    method @Deprecated public void setCommentURL(String);
    method @Deprecated public void setDiscard(boolean);
    method @Deprecated public void setPorts(int[]);
  }

}

package org.apache.http.cookie.params {

  @Deprecated public interface CookieSpecPNames {
    field @Deprecated public static final String DATE_PATTERNS = "http.protocol.cookie-datepatterns";
    field @Deprecated public static final String SINGLE_COOKIE_HEADER = "http.protocol.single-cookie-header";
  }

  @Deprecated public class CookieSpecParamBean extends org.apache.http.params.HttpAbstractParamBean {
    ctor @Deprecated public CookieSpecParamBean(org.apache.http.params.HttpParams);
    method @Deprecated public void setDatePatterns(java.util.Collection<java.lang.String>);
    method @Deprecated public void setSingleHeader(boolean);
  }

}

package org.apache.http.entity {

  @Deprecated public abstract class AbstractHttpEntity implements org.apache.http.HttpEntity {
    ctor @Deprecated protected AbstractHttpEntity();
    method @Deprecated public void consumeContent() throws java.io.IOException, java.lang.UnsupportedOperationException;
    method @Deprecated public org.apache.http.Header getContentEncoding();
    method @Deprecated public org.apache.http.Header getContentType();
    method @Deprecated public boolean isChunked();
    method @Deprecated public void setChunked(boolean);
    method @Deprecated public void setContentEncoding(org.apache.http.Header);
    method @Deprecated public void setContentEncoding(String);
    method @Deprecated public void setContentType(org.apache.http.Header);
    method @Deprecated public void setContentType(String);
    field @Deprecated protected boolean chunked;
    field @Deprecated protected org.apache.http.Header contentEncoding;
    field @Deprecated protected org.apache.http.Header contentType;
  }

  @Deprecated public class BasicHttpEntity extends org.apache.http.entity.AbstractHttpEntity {
    ctor @Deprecated public BasicHttpEntity();
    method @Deprecated public void consumeContent() throws java.io.IOException;
    method @Deprecated public java.io.InputStream getContent() throws java.lang.IllegalStateException;
    method @Deprecated public long getContentLength();
    method @Deprecated public boolean isRepeatable();
    method @Deprecated public boolean isStreaming();
    method @Deprecated public void setContent(java.io.InputStream);
    method @Deprecated public void setContentLength(long);
    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
  }

  @Deprecated public class BufferedHttpEntity extends org.apache.http.entity.HttpEntityWrapper {
    ctor @Deprecated public BufferedHttpEntity(org.apache.http.HttpEntity) throws java.io.IOException;
  }

  @Deprecated public class ByteArrayEntity extends org.apache.http.entity.AbstractHttpEntity implements java.lang.Cloneable {
    ctor @Deprecated public ByteArrayEntity(byte[]);
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public java.io.InputStream getContent();
    method @Deprecated public long getContentLength();
    method @Deprecated public boolean isRepeatable();
    method @Deprecated public boolean isStreaming();
    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
    field @Deprecated protected final byte[] content;
  }

  @Deprecated public interface ContentLengthStrategy {
    method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http.HttpException;
    field @Deprecated public static final int CHUNKED = -2; // 0xfffffffe
    field @Deprecated public static final int IDENTITY = -1; // 0xffffffff
  }

  @Deprecated public interface ContentProducer {
    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
  }

  @Deprecated public class EntityTemplate extends org.apache.http.entity.AbstractHttpEntity {
    ctor @Deprecated public EntityTemplate(org.apache.http.entity.ContentProducer);
    method @Deprecated public void consumeContent() throws java.io.IOException;
    method @Deprecated public java.io.InputStream getContent();
    method @Deprecated public long getContentLength();
    method @Deprecated public boolean isRepeatable();
    method @Deprecated public boolean isStreaming();
    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
  }

  @Deprecated public class FileEntity extends org.apache.http.entity.AbstractHttpEntity implements java.lang.Cloneable {
    ctor @Deprecated public FileEntity(java.io.File, String);
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
    method @Deprecated public long getContentLength();
    method @Deprecated public boolean isRepeatable();
    method @Deprecated public boolean isStreaming();
    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
    field @Deprecated protected final java.io.File file;
  }

  @Deprecated public class HttpEntityWrapper implements org.apache.http.HttpEntity {
    ctor @Deprecated public HttpEntityWrapper(org.apache.http.HttpEntity);
    method @Deprecated public void consumeContent() throws java.io.IOException;
    method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
    method @Deprecated public org.apache.http.Header getContentEncoding();
    method @Deprecated public long getContentLength();
    method @Deprecated public org.apache.http.Header getContentType();
    method @Deprecated public boolean isChunked();
    method @Deprecated public boolean isRepeatable();
    method @Deprecated public boolean isStreaming();
    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
    field @Deprecated protected org.apache.http.HttpEntity wrappedEntity;
  }

  @Deprecated public class InputStreamEntity extends org.apache.http.entity.AbstractHttpEntity {
    ctor @Deprecated public InputStreamEntity(java.io.InputStream, long);
    method @Deprecated public void consumeContent() throws java.io.IOException;
    method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
    method @Deprecated public long getContentLength();
    method @Deprecated public boolean isRepeatable();
    method @Deprecated public boolean isStreaming();
    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
  }

  @Deprecated public class SerializableEntity extends org.apache.http.entity.AbstractHttpEntity {
    ctor @Deprecated public SerializableEntity(java.io.Serializable, boolean) throws java.io.IOException;
    method @Deprecated public java.io.InputStream getContent() throws java.io.IOException, java.lang.IllegalStateException;
    method @Deprecated public long getContentLength();
    method @Deprecated public boolean isRepeatable();
    method @Deprecated public boolean isStreaming();
    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
  }

  @Deprecated public class StringEntity extends org.apache.http.entity.AbstractHttpEntity implements java.lang.Cloneable {
    ctor @Deprecated public StringEntity(String, String) throws java.io.UnsupportedEncodingException;
    ctor @Deprecated public StringEntity(String) throws java.io.UnsupportedEncodingException;
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
    method @Deprecated public long getContentLength();
    method @Deprecated public boolean isRepeatable();
    method @Deprecated public boolean isStreaming();
    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
    field @Deprecated protected final byte[] content;
  }

}

package org.apache.http.impl {

  @Deprecated public abstract class AbstractHttpClientConnection implements org.apache.http.HttpClientConnection {
    ctor @Deprecated public AbstractHttpClientConnection();
    method @Deprecated protected abstract void assertOpen() throws java.lang.IllegalStateException;
    method @Deprecated protected org.apache.http.impl.entity.EntityDeserializer createEntityDeserializer();
    method @Deprecated protected org.apache.http.impl.entity.EntitySerializer createEntitySerializer();
    method @Deprecated protected org.apache.http.HttpResponseFactory createHttpResponseFactory();
    method @Deprecated protected org.apache.http.io.HttpMessageWriter createRequestWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.params.HttpParams);
    method @Deprecated protected org.apache.http.io.HttpMessageParser createResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.http.HttpResponseFactory, org.apache.http.params.HttpParams);
    method @Deprecated protected void doFlush() throws java.io.IOException;
    method @Deprecated public void flush() throws java.io.IOException;
    method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
    method @Deprecated protected void init(org.apache.http.io.SessionInputBuffer, org.apache.http.io.SessionOutputBuffer, org.apache.http.params.HttpParams);
    method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
    method @Deprecated public boolean isStale();
    method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public abstract class AbstractHttpServerConnection implements org.apache.http.HttpServerConnection {
    ctor @Deprecated public AbstractHttpServerConnection();
    method @Deprecated protected abstract void assertOpen() throws java.lang.IllegalStateException;
    method @Deprecated protected org.apache.http.impl.entity.EntityDeserializer createEntityDeserializer();
    method @Deprecated protected org.apache.http.impl.entity.EntitySerializer createEntitySerializer();
    method @Deprecated protected org.apache.http.HttpRequestFactory createHttpRequestFactory();
    method @Deprecated protected org.apache.http.io.HttpMessageParser createRequestParser(org.apache.http.io.SessionInputBuffer, org.apache.http.HttpRequestFactory, org.apache.http.params.HttpParams);
    method @Deprecated protected org.apache.http.io.HttpMessageWriter createResponseWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.params.HttpParams);
    method @Deprecated protected void doFlush() throws java.io.IOException;
    method @Deprecated public void flush() throws java.io.IOException;
    method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
    method @Deprecated protected void init(org.apache.http.io.SessionInputBuffer, org.apache.http.io.SessionOutputBuffer, org.apache.http.params.HttpParams);
    method @Deprecated public boolean isStale();
    method @Deprecated public void receiveRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public org.apache.http.HttpRequest receiveRequestHeader() throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void sendResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void sendResponseHeader(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class DefaultConnectionReuseStrategy implements org.apache.http.ConnectionReuseStrategy {
    ctor @Deprecated public DefaultConnectionReuseStrategy();
    method @Deprecated protected org.apache.http.TokenIterator createTokenIterator(org.apache.http.HeaderIterator);
    method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
  }

  @Deprecated public class DefaultHttpClientConnection extends org.apache.http.impl.SocketHttpClientConnection {
    ctor @Deprecated public DefaultHttpClientConnection();
    method @Deprecated public void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
  }

  @Deprecated public class DefaultHttpRequestFactory implements org.apache.http.HttpRequestFactory {
    ctor @Deprecated public DefaultHttpRequestFactory();
    method @Deprecated public org.apache.http.HttpRequest newHttpRequest(org.apache.http.RequestLine) throws org.apache.http.MethodNotSupportedException;
    method @Deprecated public org.apache.http.HttpRequest newHttpRequest(String, String) throws org.apache.http.MethodNotSupportedException;
  }

  @Deprecated public class DefaultHttpResponseFactory implements org.apache.http.HttpResponseFactory {
    ctor @Deprecated public DefaultHttpResponseFactory(org.apache.http.ReasonPhraseCatalog);
    ctor @Deprecated public DefaultHttpResponseFactory();
    method @Deprecated protected java.util.Locale determineLocale(org.apache.http.protocol.HttpContext);
    method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.ProtocolVersion, int, org.apache.http.protocol.HttpContext);
    method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.StatusLine, org.apache.http.protocol.HttpContext);
    field @Deprecated protected final org.apache.http.ReasonPhraseCatalog reasonCatalog;
  }

  @Deprecated public class DefaultHttpServerConnection extends org.apache.http.impl.SocketHttpServerConnection {
    ctor @Deprecated public DefaultHttpServerConnection();
    method @Deprecated public void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
  }

  @Deprecated public class EnglishReasonPhraseCatalog implements org.apache.http.ReasonPhraseCatalog {
    ctor @Deprecated protected EnglishReasonPhraseCatalog();
    method @Deprecated public String getReason(int, java.util.Locale);
    field @Deprecated public static final org.apache.http.impl.EnglishReasonPhraseCatalog INSTANCE;
  }

  @Deprecated public class HttpConnectionMetricsImpl implements org.apache.http.HttpConnectionMetrics {
    ctor @Deprecated public HttpConnectionMetricsImpl(org.apache.http.io.HttpTransportMetrics, org.apache.http.io.HttpTransportMetrics);
    method @Deprecated public Object getMetric(String);
    method @Deprecated public long getReceivedBytesCount();
    method @Deprecated public long getRequestCount();
    method @Deprecated public long getResponseCount();
    method @Deprecated public long getSentBytesCount();
    method @Deprecated public void incrementRequestCount();
    method @Deprecated public void incrementResponseCount();
    method @Deprecated public void reset();
    method @Deprecated public void setMetric(String, Object);
    field @Deprecated public static final String RECEIVED_BYTES_COUNT = "http.received-bytes-count";
    field @Deprecated public static final String REQUEST_COUNT = "http.request-count";
    field @Deprecated public static final String RESPONSE_COUNT = "http.response-count";
    field @Deprecated public static final String SENT_BYTES_COUNT = "http.sent-bytes-count";
  }

  @Deprecated public class NoConnectionReuseStrategy implements org.apache.http.ConnectionReuseStrategy {
    ctor @Deprecated public NoConnectionReuseStrategy();
    method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
  }

  @Deprecated public class SocketHttpClientConnection extends org.apache.http.impl.AbstractHttpClientConnection implements org.apache.http.HttpInetConnection {
    ctor @Deprecated public SocketHttpClientConnection();
    method @Deprecated protected void assertNotOpen();
    method @Deprecated protected void assertOpen();
    method @Deprecated protected void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void close() throws java.io.IOException;
    method @Deprecated protected org.apache.http.io.SessionInputBuffer createSessionInputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated protected org.apache.http.io.SessionOutputBuffer createSessionOutputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public java.net.InetAddress getLocalAddress();
    method @Deprecated public int getLocalPort();
    method @Deprecated public java.net.InetAddress getRemoteAddress();
    method @Deprecated public int getRemotePort();
    method @Deprecated protected java.net.Socket getSocket();
    method @Deprecated public int getSocketTimeout();
    method @Deprecated public boolean isOpen();
    method @Deprecated public void setSocketTimeout(int);
    method @Deprecated public void shutdown() throws java.io.IOException;
  }

  @Deprecated public class SocketHttpServerConnection extends org.apache.http.impl.AbstractHttpServerConnection implements org.apache.http.HttpInetConnection {
    ctor @Deprecated public SocketHttpServerConnection();
    method @Deprecated protected void assertNotOpen();
    method @Deprecated protected void assertOpen();
    method @Deprecated protected void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void close() throws java.io.IOException;
    method @Deprecated protected org.apache.http.io.SessionInputBuffer createHttpDataReceiver(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated protected org.apache.http.io.SessionOutputBuffer createHttpDataTransmitter(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public java.net.InetAddress getLocalAddress();
    method @Deprecated public int getLocalPort();
    method @Deprecated public java.net.InetAddress getRemoteAddress();
    method @Deprecated public int getRemotePort();
    method @Deprecated protected java.net.Socket getSocket();
    method @Deprecated public int getSocketTimeout();
    method @Deprecated public boolean isOpen();
    method @Deprecated public void setSocketTimeout(int);
    method @Deprecated public void shutdown() throws java.io.IOException;
  }

}

package org.apache.http.impl.auth {

  @Deprecated public abstract class AuthSchemeBase implements org.apache.http.auth.AuthScheme {
    ctor @Deprecated public AuthSchemeBase();
    method @Deprecated public boolean isProxy();
    method @Deprecated protected abstract void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) throws org.apache.http.auth.MalformedChallengeException;
    method @Deprecated public void processChallenge(org.apache.http.Header) throws org.apache.http.auth.MalformedChallengeException;
  }

  @Deprecated public class BasicScheme extends org.apache.http.impl.auth.RFC2617Scheme {
    ctor @Deprecated public BasicScheme();
    method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, org.apache.http.HttpRequest) throws org.apache.http.auth.AuthenticationException;
    method @Deprecated public static org.apache.http.Header authenticate(org.apache.http.auth.Credentials, String, boolean);
    method @Deprecated public String getSchemeName();
    method @Deprecated public boolean isComplete();
    method @Deprecated public boolean isConnectionBased();
  }

  @Deprecated public class BasicSchemeFactory implements org.apache.http.auth.AuthSchemeFactory {
    ctor @Deprecated public BasicSchemeFactory();
    method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpParams);
  }

  @Deprecated public class DigestScheme extends org.apache.http.impl.auth.RFC2617Scheme {
    ctor @Deprecated public DigestScheme();
    method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, org.apache.http.HttpRequest) throws org.apache.http.auth.AuthenticationException;
    method @Deprecated public static String createCnonce();
    method @Deprecated public String getSchemeName();
    method @Deprecated public boolean isComplete();
    method @Deprecated public boolean isConnectionBased();
    method @Deprecated public void overrideParamter(String, String);
  }

  @Deprecated public class DigestSchemeFactory implements org.apache.http.auth.AuthSchemeFactory {
    ctor @Deprecated public DigestSchemeFactory();
    method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpParams);
  }

  @Deprecated public interface NTLMEngine {
    method @Deprecated public String generateType1Msg(String, String) throws org.apache.http.impl.auth.NTLMEngineException;
    method @Deprecated public String generateType3Msg(String, String, String, String, String) throws org.apache.http.impl.auth.NTLMEngineException;
  }

  @Deprecated public class NTLMEngineException extends org.apache.http.auth.AuthenticationException {
    ctor @Deprecated public NTLMEngineException();
    ctor @Deprecated public NTLMEngineException(String);
    ctor @Deprecated public NTLMEngineException(String, Throwable);
  }

  @Deprecated public class NTLMScheme extends org.apache.http.impl.auth.AuthSchemeBase {
    ctor @Deprecated public NTLMScheme(org.apache.http.impl.auth.NTLMEngine);
    method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, org.apache.http.HttpRequest) throws org.apache.http.auth.AuthenticationException;
    method @Deprecated public String getParameter(String);
    method @Deprecated public String getRealm();
    method @Deprecated public String getSchemeName();
    method @Deprecated public boolean isComplete();
    method @Deprecated public boolean isConnectionBased();
    method @Deprecated protected void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) throws org.apache.http.auth.MalformedChallengeException;
  }

  @Deprecated public abstract class RFC2617Scheme extends org.apache.http.impl.auth.AuthSchemeBase {
    ctor @Deprecated public RFC2617Scheme();
    method @Deprecated public String getParameter(String);
    method @Deprecated protected java.util.Map<java.lang.String,java.lang.String> getParameters();
    method @Deprecated public String getRealm();
    method @Deprecated protected void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) throws org.apache.http.auth.MalformedChallengeException;
  }

  @Deprecated public class UnsupportedDigestAlgorithmException extends java.lang.RuntimeException {
    ctor @Deprecated public UnsupportedDigestAlgorithmException();
    ctor @Deprecated public UnsupportedDigestAlgorithmException(String);
    ctor @Deprecated public UnsupportedDigestAlgorithmException(String, Throwable);
  }

}

package org.apache.http.impl.client {

  @Deprecated public abstract class AbstractAuthenticationHandler implements org.apache.http.client.AuthenticationHandler {
    ctor @Deprecated public AbstractAuthenticationHandler();
    method @Deprecated protected java.util.List<java.lang.String> getAuthPreferences();
    method @Deprecated protected java.util.Map<java.lang.String,org.apache.http.Header> parseChallenges(org.apache.http.Header[]) throws org.apache.http.auth.MalformedChallengeException;
    method @Deprecated public org.apache.http.auth.AuthScheme selectScheme(java.util.Map<java.lang.String,org.apache.http.Header>, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.auth.AuthenticationException;
  }

  @Deprecated public abstract class AbstractHttpClient implements org.apache.http.client.HttpClient {
    ctor @Deprecated protected AbstractHttpClient(org.apache.http.conn.ClientConnectionManager, org.apache.http.params.HttpParams);
    method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
    method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
    method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
    method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int);
    method @Deprecated public void clearRequestInterceptors();
    method @Deprecated public void clearResponseInterceptors();
    method @Deprecated protected abstract org.apache.http.auth.AuthSchemeRegistry createAuthSchemeRegistry();
    method @Deprecated protected abstract org.apache.http.conn.ClientConnectionManager createClientConnectionManager();
    method @Deprecated protected org.apache.http.client.RequestDirector createClientRequestDirector(org.apache.http.protocol.HttpRequestExecutor, org.apache.http.conn.ClientConnectionManager, org.apache.http.ConnectionReuseStrategy, org.apache.http.conn.ConnectionKeepAliveStrategy, org.apache.http.conn.routing.HttpRoutePlanner, org.apache.http.protocol.HttpProcessor, org.apache.http.client.HttpRequestRetryHandler, org.apache.http.client.RedirectHandler, org.apache.http.client.AuthenticationHandler, org.apache.http.client.AuthenticationHandler, org.apache.http.client.UserTokenHandler, org.apache.http.params.HttpParams);
    method @Deprecated protected abstract org.apache.http.conn.ConnectionKeepAliveStrategy createConnectionKeepAliveStrategy();
    method @Deprecated protected abstract org.apache.http.ConnectionReuseStrategy createConnectionReuseStrategy();
    method @Deprecated protected abstract org.apache.http.cookie.CookieSpecRegistry createCookieSpecRegistry();
    method @Deprecated protected abstract org.apache.http.client.CookieStore createCookieStore();
    method @Deprecated protected abstract org.apache.http.client.CredentialsProvider createCredentialsProvider();
    method @Deprecated protected abstract org.apache.http.protocol.HttpContext createHttpContext();
    method @Deprecated protected abstract org.apache.http.params.HttpParams createHttpParams();
    method @Deprecated protected abstract org.apache.http.protocol.BasicHttpProcessor createHttpProcessor();
    method @Deprecated protected abstract org.apache.http.client.HttpRequestRetryHandler createHttpRequestRetryHandler();
    method @Deprecated protected abstract org.apache.http.conn.routing.HttpRoutePlanner createHttpRoutePlanner();
    method @Deprecated protected abstract org.apache.http.client.AuthenticationHandler createProxyAuthenticationHandler();
    method @Deprecated protected abstract org.apache.http.client.RedirectHandler createRedirectHandler();
    method @Deprecated protected abstract org.apache.http.protocol.HttpRequestExecutor createRequestExecutor();
    method @Deprecated protected abstract org.apache.http.client.AuthenticationHandler createTargetAuthenticationHandler();
    method @Deprecated protected abstract org.apache.http.client.UserTokenHandler createUserTokenHandler();
    method @Deprecated protected org.apache.http.params.HttpParams determineParams(org.apache.http.HttpRequest);
    method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.client.ResponseHandler<? extends T>) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.client.ResponseHandler<? extends T>, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.client.ResponseHandler<? extends T>) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.client.ResponseHandler<? extends T>, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
    method @Deprecated public final org.apache.http.auth.AuthSchemeRegistry getAuthSchemes();
    method @Deprecated public final org.apache.http.conn.ConnectionKeepAliveStrategy getConnectionKeepAliveStrategy();
    method @Deprecated public final org.apache.http.conn.ClientConnectionManager getConnectionManager();
    method @Deprecated public final org.apache.http.ConnectionReuseStrategy getConnectionReuseStrategy();
    method @Deprecated public final org.apache.http.cookie.CookieSpecRegistry getCookieSpecs();
    method @Deprecated public final org.apache.http.client.CookieStore getCookieStore();
    method @Deprecated public final org.apache.http.client.CredentialsProvider getCredentialsProvider();
    method @Deprecated protected final org.apache.http.protocol.BasicHttpProcessor getHttpProcessor();
    method @Deprecated public final org.apache.http.client.HttpRequestRetryHandler getHttpRequestRetryHandler();
    method @Deprecated public final org.apache.http.params.HttpParams getParams();
    method @Deprecated public final org.apache.http.client.AuthenticationHandler getProxyAuthenticationHandler();
    method @Deprecated public final org.apache.http.client.RedirectHandler getRedirectHandler();
    method @Deprecated public final org.apache.http.protocol.HttpRequestExecutor getRequestExecutor();
    method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
    method @Deprecated public int getRequestInterceptorCount();
    method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
    method @Deprecated public int getResponseInterceptorCount();
    method @Deprecated public final org.apache.http.conn.routing.HttpRoutePlanner getRoutePlanner();
    method @Deprecated public final org.apache.http.client.AuthenticationHandler getTargetAuthenticationHandler();
    method @Deprecated public final org.apache.http.client.UserTokenHandler getUserTokenHandler();
    method @Deprecated public void removeRequestInterceptorByClass(Class<? extends org.apache.http.HttpRequestInterceptor>);
    method @Deprecated public void removeResponseInterceptorByClass(Class<? extends org.apache.http.HttpResponseInterceptor>);
    method @Deprecated public void setAuthSchemes(org.apache.http.auth.AuthSchemeRegistry);
    method @Deprecated public void setCookieSpecs(org.apache.http.cookie.CookieSpecRegistry);
    method @Deprecated public void setCookieStore(org.apache.http.client.CookieStore);
    method @Deprecated public void setCredentialsProvider(org.apache.http.client.CredentialsProvider);
    method @Deprecated public void setHttpRequestRetryHandler(org.apache.http.client.HttpRequestRetryHandler);
    method @Deprecated public void setKeepAliveStrategy(org.apache.http.conn.ConnectionKeepAliveStrategy);
    method @Deprecated public void setParams(org.apache.http.params.HttpParams);
    method @Deprecated public void setProxyAuthenticationHandler(org.apache.http.client.AuthenticationHandler);
    method @Deprecated public void setRedirectHandler(org.apache.http.client.RedirectHandler);
    method @Deprecated public void setReuseStrategy(org.apache.http.ConnectionReuseStrategy);
    method @Deprecated public void setRoutePlanner(org.apache.http.conn.routing.HttpRoutePlanner);
    method @Deprecated public void setTargetAuthenticationHandler(org.apache.http.client.AuthenticationHandler);
    method @Deprecated public void setUserTokenHandler(org.apache.http.client.UserTokenHandler);
  }

  @Deprecated public class BasicCookieStore implements org.apache.http.client.CookieStore {
    ctor @Deprecated public BasicCookieStore();
    method @Deprecated public void addCookie(org.apache.http.cookie.Cookie);
    method @Deprecated public void addCookies(org.apache.http.cookie.Cookie[]);
    method @Deprecated public void clear();
    method @Deprecated public boolean clearExpired(java.util.Date);
    method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> getCookies();
  }

  @Deprecated public class BasicCredentialsProvider implements org.apache.http.client.CredentialsProvider {
    ctor @Deprecated public BasicCredentialsProvider();
    method @Deprecated public void clear();
    method @Deprecated public org.apache.http.auth.Credentials getCredentials(org.apache.http.auth.AuthScope);
    method @Deprecated public void setCredentials(org.apache.http.auth.AuthScope, org.apache.http.auth.Credentials);
  }

  @Deprecated public class BasicResponseHandler implements org.apache.http.client.ResponseHandler<java.lang.String> {
    ctor @Deprecated public BasicResponseHandler();
    method @Deprecated public String handleResponse(org.apache.http.HttpResponse) throws org.apache.http.client.HttpResponseException, java.io.IOException;
  }

  @Deprecated public class ClientParamsStack extends org.apache.http.params.AbstractHttpParams {
    ctor @Deprecated public ClientParamsStack(org.apache.http.params.HttpParams, org.apache.http.params.HttpParams, org.apache.http.params.HttpParams, org.apache.http.params.HttpParams);
    ctor @Deprecated public ClientParamsStack(org.apache.http.impl.client.ClientParamsStack);
    ctor @Deprecated public ClientParamsStack(org.apache.http.impl.client.ClientParamsStack, org.apache.http.params.HttpParams, org.apache.http.params.HttpParams, org.apache.http.params.HttpParams, org.apache.http.params.HttpParams);
    method @Deprecated public org.apache.http.params.HttpParams copy();
    method @Deprecated public final org.apache.http.params.HttpParams getApplicationParams();
    method @Deprecated public final org.apache.http.params.HttpParams getClientParams();
    method @Deprecated public final org.apache.http.params.HttpParams getOverrideParams();
    method @Deprecated public Object getParameter(String);
    method @Deprecated public final org.apache.http.params.HttpParams getRequestParams();
    method @Deprecated public boolean removeParameter(String);
    method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object) throws java.lang.UnsupportedOperationException;
    field @Deprecated protected final org.apache.http.params.HttpParams applicationParams;
    field @Deprecated protected final org.apache.http.params.HttpParams clientParams;
    field @Deprecated protected final org.apache.http.params.HttpParams overrideParams;
    field @Deprecated protected final org.apache.http.params.HttpParams requestParams;
  }

  @Deprecated public class DefaultConnectionKeepAliveStrategy implements org.apache.http.conn.ConnectionKeepAliveStrategy {
    ctor @Deprecated public DefaultConnectionKeepAliveStrategy();
    method @Deprecated public long getKeepAliveDuration(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
  }

  @Deprecated public class DefaultHttpClient extends org.apache.http.impl.client.AbstractHttpClient {
    ctor @Deprecated public DefaultHttpClient(org.apache.http.conn.ClientConnectionManager, org.apache.http.params.HttpParams);
    ctor @Deprecated public DefaultHttpClient(org.apache.http.params.HttpParams);
    ctor @Deprecated public DefaultHttpClient();
    method @Deprecated protected org.apache.http.auth.AuthSchemeRegistry createAuthSchemeRegistry();
    method @Deprecated protected org.apache.http.conn.ClientConnectionManager createClientConnectionManager();
    method @Deprecated protected org.apache.http.conn.ConnectionKeepAliveStrategy createConnectionKeepAliveStrategy();
    method @Deprecated protected org.apache.http.ConnectionReuseStrategy createConnectionReuseStrategy();
    method @Deprecated protected org.apache.http.cookie.CookieSpecRegistry createCookieSpecRegistry();
    method @Deprecated protected org.apache.http.client.CookieStore createCookieStore();
    method @Deprecated protected org.apache.http.client.CredentialsProvider createCredentialsProvider();
    method @Deprecated protected org.apache.http.protocol.HttpContext createHttpContext();
    method @Deprecated protected org.apache.http.params.HttpParams createHttpParams();
    method @Deprecated protected org.apache.http.protocol.BasicHttpProcessor createHttpProcessor();
    method @Deprecated protected org.apache.http.client.HttpRequestRetryHandler createHttpRequestRetryHandler();
    method @Deprecated protected org.apache.http.conn.routing.HttpRoutePlanner createHttpRoutePlanner();
    method @Deprecated protected org.apache.http.client.AuthenticationHandler createProxyAuthenticationHandler();
    method @Deprecated protected org.apache.http.client.RedirectHandler createRedirectHandler();
    method @Deprecated protected org.apache.http.protocol.HttpRequestExecutor createRequestExecutor();
    method @Deprecated protected org.apache.http.client.AuthenticationHandler createTargetAuthenticationHandler();
    method @Deprecated protected org.apache.http.client.UserTokenHandler createUserTokenHandler();
  }

  @Deprecated public class DefaultHttpRequestRetryHandler implements org.apache.http.client.HttpRequestRetryHandler {
    ctor @Deprecated public DefaultHttpRequestRetryHandler(int, boolean);
    ctor @Deprecated public DefaultHttpRequestRetryHandler();
    method @Deprecated public int getRetryCount();
    method @Deprecated public boolean isRequestSentRetryEnabled();
    method @Deprecated public boolean retryRequest(java.io.IOException, int, org.apache.http.protocol.HttpContext);
  }

  @Deprecated public class DefaultProxyAuthenticationHandler extends org.apache.http.impl.client.AbstractAuthenticationHandler {
    ctor @Deprecated public DefaultProxyAuthenticationHandler();
    method @Deprecated public java.util.Map<java.lang.String,org.apache.http.Header> getChallenges(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.auth.MalformedChallengeException;
    method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
  }

  @Deprecated public class DefaultRedirectHandler implements org.apache.http.client.RedirectHandler {
    ctor @Deprecated public DefaultRedirectHandler();
    method @Deprecated public java.net.URI getLocationURI(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.ProtocolException;
    method @Deprecated public boolean isRedirectRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
  }

  @Deprecated public class DefaultRequestDirector implements org.apache.http.client.RequestDirector {
    ctor @Deprecated public DefaultRequestDirector(org.apache.http.protocol.HttpRequestExecutor, org.apache.http.conn.ClientConnectionManager, org.apache.http.ConnectionReuseStrategy, org.apache.http.conn.ConnectionKeepAliveStrategy, org.apache.http.conn.routing.HttpRoutePlanner, org.apache.http.protocol.HttpProcessor, org.apache.http.client.HttpRequestRetryHandler, org.apache.http.client.RedirectHandler, org.apache.http.client.AuthenticationHandler, org.apache.http.client.AuthenticationHandler, org.apache.http.client.UserTokenHandler, org.apache.http.params.HttpParams);
    method @Deprecated protected org.apache.http.HttpRequest createConnectRequest(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext);
    method @Deprecated protected boolean createTunnelToProxy(org.apache.http.conn.routing.HttpRoute, int, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated protected boolean createTunnelToTarget(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated protected org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
    method @Deprecated protected void establishRoute(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated protected org.apache.http.impl.client.RoutedRequest handleResponse(org.apache.http.impl.client.RoutedRequest, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated protected void releaseConnection();
    method @Deprecated protected void rewriteRequestURI(org.apache.http.impl.client.RequestWrapper, org.apache.http.conn.routing.HttpRoute) throws org.apache.http.ProtocolException;
    field @Deprecated protected final org.apache.http.conn.ClientConnectionManager connManager;
    field @Deprecated protected final org.apache.http.protocol.HttpProcessor httpProcessor;
    field @Deprecated protected final org.apache.http.conn.ConnectionKeepAliveStrategy keepAliveStrategy;
    field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
    field @Deprecated protected final org.apache.http.params.HttpParams params;
    field @Deprecated protected final org.apache.http.client.RedirectHandler redirectHandler;
    field @Deprecated protected final org.apache.http.protocol.HttpRequestExecutor requestExec;
    field @Deprecated protected final org.apache.http.client.HttpRequestRetryHandler retryHandler;
    field @Deprecated protected final org.apache.http.ConnectionReuseStrategy reuseStrategy;
    field @Deprecated protected final org.apache.http.conn.routing.HttpRoutePlanner routePlanner;
  }

  @Deprecated public class DefaultTargetAuthenticationHandler extends org.apache.http.impl.client.AbstractAuthenticationHandler {
    ctor @Deprecated public DefaultTargetAuthenticationHandler();
    method @Deprecated public java.util.Map<java.lang.String,org.apache.http.Header> getChallenges(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.auth.MalformedChallengeException;
    method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
  }

  @Deprecated public class DefaultUserTokenHandler implements org.apache.http.client.UserTokenHandler {
    ctor @Deprecated public DefaultUserTokenHandler();
    method @Deprecated public Object getUserToken(org.apache.http.protocol.HttpContext);
  }

  @Deprecated public class EntityEnclosingRequestWrapper extends org.apache.http.impl.client.RequestWrapper implements org.apache.http.HttpEntityEnclosingRequest {
    ctor @Deprecated public EntityEnclosingRequestWrapper(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.ProtocolException;
    method @Deprecated public boolean expectContinue();
    method @Deprecated public org.apache.http.HttpEntity getEntity();
    method @Deprecated public void setEntity(org.apache.http.HttpEntity);
  }

  @Deprecated public class RedirectLocations {
    ctor @Deprecated public RedirectLocations();
    method @Deprecated public void add(java.net.URI);
    method @Deprecated public boolean contains(java.net.URI);
    method @Deprecated public boolean remove(java.net.URI);
  }

  @Deprecated public class RequestWrapper extends org.apache.http.message.AbstractHttpMessage implements org.apache.http.client.methods.HttpUriRequest {
    ctor @Deprecated public RequestWrapper(org.apache.http.HttpRequest) throws org.apache.http.ProtocolException;
    method @Deprecated public void abort() throws java.lang.UnsupportedOperationException;
    method @Deprecated public int getExecCount();
    method @Deprecated public String getMethod();
    method @Deprecated public org.apache.http.HttpRequest getOriginal();
    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
    method @Deprecated public org.apache.http.RequestLine getRequestLine();
    method @Deprecated public java.net.URI getURI();
    method @Deprecated public void incrementExecCount();
    method @Deprecated public boolean isAborted();
    method @Deprecated public boolean isRepeatable();
    method @Deprecated public void resetHeaders();
    method @Deprecated public void setMethod(String);
    method @Deprecated public void setProtocolVersion(org.apache.http.ProtocolVersion);
    method @Deprecated public void setURI(java.net.URI);
  }

  @Deprecated public class RoutedRequest {
    ctor @Deprecated public RoutedRequest(org.apache.http.impl.client.RequestWrapper, org.apache.http.conn.routing.HttpRoute);
    method @Deprecated public final org.apache.http.impl.client.RequestWrapper getRequest();
    method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
    field @Deprecated protected final org.apache.http.impl.client.RequestWrapper request;
    field @Deprecated protected final org.apache.http.conn.routing.HttpRoute route;
  }

  @Deprecated public class TunnelRefusedException extends org.apache.http.HttpException {
    ctor @Deprecated public TunnelRefusedException(String, org.apache.http.HttpResponse);
    method @Deprecated public org.apache.http.HttpResponse getResponse();
  }

}

package org.apache.http.impl.conn {

  @Deprecated public abstract class AbstractClientConnAdapter implements org.apache.http.conn.ManagedClientConnection {
    ctor @Deprecated protected AbstractClientConnAdapter(org.apache.http.conn.ClientConnectionManager, org.apache.http.conn.OperatedClientConnection);
    method @Deprecated public void abortConnection();
    method @Deprecated protected final void assertNotAborted() throws java.io.InterruptedIOException;
    method @Deprecated protected final void assertValid(org.apache.http.conn.OperatedClientConnection);
    method @Deprecated protected void detach();
    method @Deprecated public void flush() throws java.io.IOException;
    method @Deprecated public java.net.InetAddress getLocalAddress();
    method @Deprecated public int getLocalPort();
    method @Deprecated protected org.apache.http.conn.ClientConnectionManager getManager();
    method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
    method @Deprecated public java.net.InetAddress getRemoteAddress();
    method @Deprecated public int getRemotePort();
    method @Deprecated public javax.net.ssl.SSLSession getSSLSession();
    method @Deprecated public int getSocketTimeout();
    method @Deprecated protected org.apache.http.conn.OperatedClientConnection getWrappedConnection();
    method @Deprecated public boolean isMarkedReusable();
    method @Deprecated public boolean isOpen();
    method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
    method @Deprecated public boolean isSecure();
    method @Deprecated public boolean isStale();
    method @Deprecated public void markReusable();
    method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void releaseConnection();
    method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void setIdleDuration(long, java.util.concurrent.TimeUnit);
    method @Deprecated public void setSocketTimeout(int);
    method @Deprecated public void unmarkReusable();
  }

  @Deprecated public abstract class AbstractPoolEntry {
    ctor @Deprecated protected AbstractPoolEntry(org.apache.http.conn.ClientConnectionOperator, org.apache.http.conn.routing.HttpRoute);
    method @Deprecated public Object getState();
    method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void open(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void setState(Object);
    method @Deprecated protected void shutdownEntry();
    method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
    field @Deprecated protected final org.apache.http.conn.ClientConnectionOperator connOperator;
    field @Deprecated protected final org.apache.http.conn.OperatedClientConnection connection;
    field @Deprecated protected volatile org.apache.http.conn.routing.HttpRoute route;
    field @Deprecated protected volatile Object state;
    field @Deprecated protected volatile org.apache.http.conn.routing.RouteTracker tracker;
  }

  @Deprecated public abstract class AbstractPooledConnAdapter extends org.apache.http.impl.conn.AbstractClientConnAdapter {
    ctor @Deprecated protected AbstractPooledConnAdapter(org.apache.http.conn.ClientConnectionManager, org.apache.http.impl.conn.AbstractPoolEntry);
    method @Deprecated protected final void assertAttached();
    method @Deprecated public void close() throws java.io.IOException;
    method @Deprecated public org.apache.http.conn.routing.HttpRoute getRoute();
    method @Deprecated public Object getState();
    method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void open(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void setState(Object);
    method @Deprecated public void shutdown() throws java.io.IOException;
    method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
    field @Deprecated protected volatile org.apache.http.impl.conn.AbstractPoolEntry poolEntry;
  }

  @Deprecated public class DefaultClientConnection extends org.apache.http.impl.SocketHttpClientConnection implements org.apache.http.conn.OperatedClientConnection {
    ctor @Deprecated public DefaultClientConnection();
    method @Deprecated public final java.net.Socket getSocket();
    method @Deprecated public final org.apache.http.HttpHost getTargetHost();
    method @Deprecated public final boolean isSecure();
    method @Deprecated public void openCompleted(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void opening(java.net.Socket, org.apache.http.HttpHost) throws java.io.IOException;
    method @Deprecated public void update(java.net.Socket, org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
  }

  @Deprecated public class DefaultClientConnectionOperator implements org.apache.http.conn.ClientConnectionOperator {
    ctor @Deprecated public DefaultClientConnectionOperator(org.apache.http.conn.scheme.SchemeRegistry);
    method @Deprecated public org.apache.http.conn.OperatedClientConnection createConnection();
    method @Deprecated public void openConnection(org.apache.http.conn.OperatedClientConnection, org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated protected void prepareSocket(java.net.Socket, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public void updateSecureConnection(org.apache.http.conn.OperatedClientConnection, org.apache.http.HttpHost, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
    field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
  }

  @Deprecated public class DefaultHttpRoutePlanner implements org.apache.http.conn.routing.HttpRoutePlanner {
    ctor @Deprecated public DefaultHttpRoutePlanner(org.apache.http.conn.scheme.SchemeRegistry);
    method @Deprecated public org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
    field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
  }

  @Deprecated public class DefaultResponseParser extends org.apache.http.impl.io.AbstractMessageParser {
    ctor @Deprecated public DefaultResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.http.message.LineParser, org.apache.http.HttpResponseFactory, org.apache.http.params.HttpParams);
    method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInputBuffer) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class IdleConnectionHandler {
    ctor @Deprecated public IdleConnectionHandler();
    method @Deprecated public void add(org.apache.http.HttpConnection, long, java.util.concurrent.TimeUnit);
    method @Deprecated public void closeExpiredConnections();
    method @Deprecated public void closeIdleConnections(long);
    method @Deprecated public boolean remove(org.apache.http.HttpConnection);
    method @Deprecated public void removeAll();
  }

  @Deprecated public class LoggingSessionInputBuffer implements org.apache.http.io.SessionInputBuffer {
    ctor @Deprecated public LoggingSessionInputBuffer(org.apache.http.io.SessionInputBuffer, org.apache.http.impl.conn.Wire);
    method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
    method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
    method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
    method @Deprecated public int read() throws java.io.IOException;
    method @Deprecated public int read(byte[]) throws java.io.IOException;
    method @Deprecated public String readLine() throws java.io.IOException;
    method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
  }

  @Deprecated public class LoggingSessionOutputBuffer implements org.apache.http.io.SessionOutputBuffer {
    ctor @Deprecated public LoggingSessionOutputBuffer(org.apache.http.io.SessionOutputBuffer, org.apache.http.impl.conn.Wire);
    method @Deprecated public void flush() throws java.io.IOException;
    method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
    method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
    method @Deprecated public void write(int) throws java.io.IOException;
    method @Deprecated public void write(byte[]) throws java.io.IOException;
    method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
    method @Deprecated public void writeLine(String) throws java.io.IOException;
  }

  @Deprecated public class ProxySelectorRoutePlanner implements org.apache.http.conn.routing.HttpRoutePlanner {
    ctor @Deprecated public ProxySelectorRoutePlanner(org.apache.http.conn.scheme.SchemeRegistry, java.net.ProxySelector);
    method @Deprecated protected java.net.Proxy chooseProxy(java.util.List<java.net.Proxy>, org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext);
    method @Deprecated protected org.apache.http.HttpHost determineProxy(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
    method @Deprecated public org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
    method @Deprecated protected String getHost(java.net.InetSocketAddress);
    method @Deprecated public java.net.ProxySelector getProxySelector();
    method @Deprecated public void setProxySelector(java.net.ProxySelector);
    field @Deprecated protected java.net.ProxySelector proxySelector;
    field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
  }

  @Deprecated public class SingleClientConnManager implements org.apache.http.conn.ClientConnectionManager {
    ctor @Deprecated public SingleClientConnManager(org.apache.http.params.HttpParams, org.apache.http.conn.scheme.SchemeRegistry);
    method @Deprecated protected final void assertStillUp() throws java.lang.IllegalStateException;
    method @Deprecated public void closeExpiredConnections();
    method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
    method @Deprecated protected org.apache.http.conn.ClientConnectionOperator createConnectionOperator(org.apache.http.conn.scheme.SchemeRegistry);
    method @Deprecated public org.apache.http.conn.ManagedClientConnection getConnection(org.apache.http.conn.routing.HttpRoute, Object);
    method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
    method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, long, java.util.concurrent.TimeUnit);
    method @Deprecated public final org.apache.http.conn.ClientConnectionRequest requestConnection(org.apache.http.conn.routing.HttpRoute, Object);
    method @Deprecated protected void revokeConnection();
    method @Deprecated public void shutdown();
    field @Deprecated public static final String MISUSE_MESSAGE = "Invalid use of SingleClientConnManager: connection still allocated.\nMake sure to release the connection before allocating another one.";
    field @Deprecated protected boolean alwaysShutDown;
    field @Deprecated protected org.apache.http.conn.ClientConnectionOperator connOperator;
    field @Deprecated protected long connectionExpiresTime;
    field @Deprecated protected volatile boolean isShutDown;
    field @Deprecated protected long lastReleaseTime;
    field @Deprecated protected org.apache.http.impl.conn.SingleClientConnManager.ConnAdapter managedConn;
    field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
    field @Deprecated protected org.apache.http.impl.conn.SingleClientConnManager.PoolEntry uniquePoolEntry;
  }

  @Deprecated protected class SingleClientConnManager.ConnAdapter extends org.apache.http.impl.conn.AbstractPooledConnAdapter {
    ctor @Deprecated protected SingleClientConnManager.ConnAdapter(org.apache.http.impl.conn.SingleClientConnManager.PoolEntry, org.apache.http.conn.routing.HttpRoute);
  }

  @Deprecated protected class SingleClientConnManager.PoolEntry extends org.apache.http.impl.conn.AbstractPoolEntry {
    ctor @Deprecated protected SingleClientConnManager.PoolEntry();
    method @Deprecated protected void close() throws java.io.IOException;
    method @Deprecated protected void shutdown() throws java.io.IOException;
  }

  @Deprecated public class Wire {
    ctor @Deprecated public Wire(org.apache.commons.logging.Log);
    method @Deprecated public boolean enabled();
    method @Deprecated public void input(java.io.InputStream) throws java.io.IOException;
    method @Deprecated public void input(byte[], int, int) throws java.io.IOException;
    method @Deprecated public void input(byte[]) throws java.io.IOException;
    method @Deprecated public void input(int) throws java.io.IOException;
    method @Deprecated public void input(String) throws java.io.IOException;
    method @Deprecated public void output(java.io.InputStream) throws java.io.IOException;
    method @Deprecated public void output(byte[], int, int) throws java.io.IOException;
    method @Deprecated public void output(byte[]) throws java.io.IOException;
    method @Deprecated public void output(int) throws java.io.IOException;
    method @Deprecated public void output(String) throws java.io.IOException;
  }

}

package org.apache.http.impl.conn.tsccm {

  @Deprecated public abstract class AbstractConnPool implements org.apache.http.impl.conn.tsccm.RefQueueHandler {
    ctor @Deprecated protected AbstractConnPool();
    method @Deprecated protected void closeConnection(org.apache.http.conn.OperatedClientConnection);
    method @Deprecated public void closeExpiredConnections();
    method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
    method @Deprecated public abstract void deleteClosedConnections();
    method @Deprecated public void enableConnectionGC() throws java.lang.IllegalStateException;
    method @Deprecated public abstract void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry, boolean, long, java.util.concurrent.TimeUnit);
    method @Deprecated public final org.apache.http.impl.conn.tsccm.BasicPoolEntry getEntry(org.apache.http.conn.routing.HttpRoute, Object, long, java.util.concurrent.TimeUnit) throws org.apache.http.conn.ConnectionPoolTimeoutException, java.lang.InterruptedException;
    method @Deprecated protected abstract void handleLostEntry(org.apache.http.conn.routing.HttpRoute);
    method @Deprecated public void handleReference(java.lang.ref.Reference);
    method @Deprecated public abstract org.apache.http.impl.conn.tsccm.PoolEntryRequest requestPoolEntry(org.apache.http.conn.routing.HttpRoute, Object);
    method @Deprecated public void shutdown();
    field @Deprecated protected org.apache.http.impl.conn.IdleConnectionHandler idleConnHandler;
    field @Deprecated protected volatile boolean isShutDown;
    field @Deprecated protected java.util.Set<org.apache.http.impl.conn.tsccm.BasicPoolEntryRef> issuedConnections;
    field @Deprecated protected int numConnections;
    field @Deprecated protected final java.util.concurrent.locks.Lock poolLock;
    field @Deprecated protected java.lang.ref.ReferenceQueue<java.lang.Object> refQueue;
  }

  @Deprecated public class BasicPoolEntry extends org.apache.http.impl.conn.AbstractPoolEntry {
    ctor @Deprecated public BasicPoolEntry(org.apache.http.conn.ClientConnectionOperator, org.apache.http.conn.routing.HttpRoute, java.lang.ref.ReferenceQueue<java.lang.Object>);
    method @Deprecated protected final org.apache.http.conn.OperatedClientConnection getConnection();
    method @Deprecated protected final org.apache.http.conn.routing.HttpRoute getPlannedRoute();
    method @Deprecated protected final org.apache.http.impl.conn.tsccm.BasicPoolEntryRef getWeakRef();
  }

  @Deprecated public class BasicPoolEntryRef extends java.lang.ref.WeakReference<org.apache.http.impl.conn.tsccm.BasicPoolEntry> {
    ctor @Deprecated public BasicPoolEntryRef(org.apache.http.impl.conn.tsccm.BasicPoolEntry, java.lang.ref.ReferenceQueue<java.lang.Object>);
    method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
  }

  @Deprecated public class BasicPooledConnAdapter extends org.apache.http.impl.conn.AbstractPooledConnAdapter {
    ctor @Deprecated protected BasicPooledConnAdapter(org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager, org.apache.http.impl.conn.AbstractPoolEntry);
    method @Deprecated protected org.apache.http.impl.conn.AbstractPoolEntry getPoolEntry();
  }

  @Deprecated public class ConnPoolByRoute extends org.apache.http.impl.conn.tsccm.AbstractConnPool {
    ctor @Deprecated public ConnPoolByRoute(org.apache.http.conn.ClientConnectionOperator, org.apache.http.params.HttpParams);
    method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry createEntry(org.apache.http.impl.conn.tsccm.RouteSpecificPool, org.apache.http.conn.ClientConnectionOperator);
    method @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.BasicPoolEntry> createFreeConnQueue();
    method @Deprecated protected java.util.Map<org.apache.http.conn.routing.HttpRoute,org.apache.http.impl.conn.tsccm.RouteSpecificPool> createRouteToPoolMap();
    method @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> createWaitingThreadQueue();
    method @Deprecated public void deleteClosedConnections();
    method @Deprecated protected void deleteEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
    method @Deprecated protected void deleteLeastUsedEntry();
    method @Deprecated public void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry, boolean, long, java.util.concurrent.TimeUnit);
    method @Deprecated public int getConnectionsInPool(org.apache.http.conn.routing.HttpRoute);
    method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry getEntryBlocking(org.apache.http.conn.routing.HttpRoute, Object, long, java.util.concurrent.TimeUnit, org.apache.http.impl.conn.tsccm.WaitingThreadAborter) throws org.apache.http.conn.ConnectionPoolTimeoutException, java.lang.InterruptedException;
    method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry getFreeEntry(org.apache.http.impl.conn.tsccm.RouteSpecificPool, Object);
    method @Deprecated protected org.apache.http.impl.conn.tsccm.RouteSpecificPool getRoutePool(org.apache.http.conn.routing.HttpRoute, boolean);
    method @Deprecated protected void handleLostEntry(org.apache.http.conn.routing.HttpRoute);
    method @Deprecated protected org.apache.http.impl.conn.tsccm.RouteSpecificPool newRouteSpecificPool(org.apache.http.conn.routing.HttpRoute);
    method @Deprecated protected org.apache.http.impl.conn.tsccm.WaitingThread newWaitingThread(java.util.concurrent.locks.Condition, org.apache.http.impl.conn.tsccm.RouteSpecificPool);
    method @Deprecated protected void notifyWaitingThread(org.apache.http.impl.conn.tsccm.RouteSpecificPool);
    method @Deprecated public org.apache.http.impl.conn.tsccm.PoolEntryRequest requestPoolEntry(org.apache.http.conn.routing.HttpRoute, Object);
    field @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.BasicPoolEntry> freeConnections;
    field @Deprecated protected final int maxTotalConnections;
    field @Deprecated protected final org.apache.http.conn.ClientConnectionOperator operator;
    field @Deprecated protected final java.util.Map<org.apache.http.conn.routing.HttpRoute,org.apache.http.impl.conn.tsccm.RouteSpecificPool> routeToPool;
    field @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> waitingThreads;
  }

  @Deprecated public interface PoolEntryRequest {
    method @Deprecated public void abortRequest();
    method @Deprecated public org.apache.http.impl.conn.tsccm.BasicPoolEntry getPoolEntry(long, java.util.concurrent.TimeUnit) throws org.apache.http.conn.ConnectionPoolTimeoutException, java.lang.InterruptedException;
  }

  @Deprecated public interface RefQueueHandler {
    method @Deprecated public void handleReference(java.lang.ref.Reference<?>);
  }

  @Deprecated public class RefQueueWorker implements java.lang.Runnable {
    ctor @Deprecated public RefQueueWorker(java.lang.ref.ReferenceQueue<?>, org.apache.http.impl.conn.tsccm.RefQueueHandler);
    method @Deprecated public void run();
    method @Deprecated public void shutdown();
    field @Deprecated protected final org.apache.http.impl.conn.tsccm.RefQueueHandler refHandler;
    field @Deprecated protected final java.lang.ref.ReferenceQueue<?> refQueue;
    field @Deprecated protected volatile Thread workerThread;
  }

  @Deprecated public class RouteSpecificPool {
    ctor @Deprecated public RouteSpecificPool(org.apache.http.conn.routing.HttpRoute, int);
    method @Deprecated public org.apache.http.impl.conn.tsccm.BasicPoolEntry allocEntry(Object);
    method @Deprecated public void createdEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
    method @Deprecated public boolean deleteEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
    method @Deprecated public void dropEntry();
    method @Deprecated public void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
    method @Deprecated public int getCapacity();
    method @Deprecated public final int getEntryCount();
    method @Deprecated public final int getMaxEntries();
    method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
    method @Deprecated public boolean hasThread();
    method @Deprecated public boolean isUnused();
    method @Deprecated public org.apache.http.impl.conn.tsccm.WaitingThread nextThread();
    method @Deprecated public void queueThread(org.apache.http.impl.conn.tsccm.WaitingThread);
    method @Deprecated public void removeThread(org.apache.http.impl.conn.tsccm.WaitingThread);
    field @Deprecated protected final java.util.LinkedList<org.apache.http.impl.conn.tsccm.BasicPoolEntry> freeEntries;
    field @Deprecated protected final int maxEntries;
    field @Deprecated protected int numEntries;
    field @Deprecated protected final org.apache.http.conn.routing.HttpRoute route;
    field @Deprecated protected final java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> waitingThreads;
  }

  @Deprecated public class ThreadSafeClientConnManager implements org.apache.http.conn.ClientConnectionManager {
    ctor @Deprecated public ThreadSafeClientConnManager(org.apache.http.params.HttpParams, org.apache.http.conn.scheme.SchemeRegistry);
    method @Deprecated public void closeExpiredConnections();
    method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
    method @Deprecated protected org.apache.http.conn.ClientConnectionOperator createConnectionOperator(org.apache.http.conn.scheme.SchemeRegistry);
    method @Deprecated protected org.apache.http.impl.conn.tsccm.AbstractConnPool createConnectionPool(org.apache.http.params.HttpParams);
    method @Deprecated public int getConnectionsInPool(org.apache.http.conn.routing.HttpRoute);
    method @Deprecated public int getConnectionsInPool();
    method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
    method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, long, java.util.concurrent.TimeUnit);
    method @Deprecated public org.apache.http.conn.ClientConnectionRequest requestConnection(org.apache.http.conn.routing.HttpRoute, Object);
    method @Deprecated public void shutdown();
    field @Deprecated protected org.apache.http.conn.ClientConnectionOperator connOperator;
    field @Deprecated protected final org.apache.http.impl.conn.tsccm.AbstractConnPool connectionPool;
    field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
  }

  @Deprecated public class WaitingThread {
    ctor @Deprecated public WaitingThread(java.util.concurrent.locks.Condition, org.apache.http.impl.conn.tsccm.RouteSpecificPool);
    method @Deprecated public boolean await(java.util.Date) throws java.lang.InterruptedException;
    method @Deprecated public final java.util.concurrent.locks.Condition getCondition();
    method @Deprecated public final org.apache.http.impl.conn.tsccm.RouteSpecificPool getPool();
    method @Deprecated public final Thread getThread();
    method @Deprecated public void interrupt();
    method @Deprecated public void wakeup();
  }

  @Deprecated public class WaitingThreadAborter {
    ctor @Deprecated public WaitingThreadAborter();
    method @Deprecated public void abort();
    method @Deprecated public void setWaitingThread(org.apache.http.impl.conn.tsccm.WaitingThread);
  }

}

package org.apache.http.impl.cookie {

  @Deprecated public abstract class AbstractCookieAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
    ctor @Deprecated public AbstractCookieAttributeHandler();
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public abstract class AbstractCookieSpec implements org.apache.http.cookie.CookieSpec {
    ctor @Deprecated public AbstractCookieSpec();
    method @Deprecated protected org.apache.http.cookie.CookieAttributeHandler findAttribHandler(String);
    method @Deprecated protected org.apache.http.cookie.CookieAttributeHandler getAttribHandler(String);
    method @Deprecated protected java.util.Collection<org.apache.http.cookie.CookieAttributeHandler> getAttribHandlers();
    method @Deprecated public void registerAttribHandler(String, org.apache.http.cookie.CookieAttributeHandler);
  }

  @Deprecated public class BasicClientCookie implements org.apache.http.cookie.ClientCookie java.lang.Cloneable org.apache.http.cookie.SetCookie {
    ctor @Deprecated public BasicClientCookie(String, String);
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public boolean containsAttribute(String);
    method @Deprecated public String getAttribute(String);
    method @Deprecated public String getComment();
    method @Deprecated public String getCommentURL();
    method @Deprecated public String getDomain();
    method @Deprecated public java.util.Date getExpiryDate();
    method @Deprecated public String getName();
    method @Deprecated public String getPath();
    method @Deprecated public int[] getPorts();
    method @Deprecated public String getValue();
    method @Deprecated public int getVersion();
    method @Deprecated public boolean isExpired(java.util.Date);
    method @Deprecated public boolean isPersistent();
    method @Deprecated public boolean isSecure();
    method @Deprecated public void setAttribute(String, String);
    method @Deprecated public void setComment(String);
    method @Deprecated public void setDomain(String);
    method @Deprecated public void setExpiryDate(java.util.Date);
    method @Deprecated public void setPath(String);
    method @Deprecated public void setSecure(boolean);
    method @Deprecated public void setValue(String);
    method @Deprecated public void setVersion(int);
  }

  @Deprecated public class BasicClientCookie2 extends org.apache.http.impl.cookie.BasicClientCookie implements org.apache.http.cookie.SetCookie2 {
    ctor @Deprecated public BasicClientCookie2(String, String);
    method @Deprecated public void setCommentURL(String);
    method @Deprecated public void setDiscard(boolean);
    method @Deprecated public void setPorts(int[]);
  }

  @Deprecated public class BasicCommentHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
    ctor @Deprecated public BasicCommentHandler();
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class BasicDomainHandler implements org.apache.http.cookie.CookieAttributeHandler {
    ctor @Deprecated public BasicDomainHandler();
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class BasicExpiresHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
    ctor @Deprecated public BasicExpiresHandler(String[]);
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class BasicMaxAgeHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
    ctor @Deprecated public BasicMaxAgeHandler();
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class BasicPathHandler implements org.apache.http.cookie.CookieAttributeHandler {
    ctor @Deprecated public BasicPathHandler();
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class BasicSecureHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
    ctor @Deprecated public BasicSecureHandler();
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class BestMatchSpec implements org.apache.http.cookie.CookieSpec {
    ctor @Deprecated public BestMatchSpec(String[], boolean);
    ctor @Deprecated public BestMatchSpec();
    method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
    method @Deprecated public int getVersion();
    method @Deprecated public org.apache.http.Header getVersionHeader();
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Header, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class BestMatchSpecFactory implements org.apache.http.cookie.CookieSpecFactory {
    ctor @Deprecated public BestMatchSpecFactory();
    method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
  }

  @Deprecated public class BrowserCompatSpec extends org.apache.http.impl.cookie.CookieSpecBase {
    ctor @Deprecated public BrowserCompatSpec(String[]);
    ctor @Deprecated public BrowserCompatSpec();
    method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
    method @Deprecated public int getVersion();
    method @Deprecated public org.apache.http.Header getVersionHeader();
    method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Header, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
    field @Deprecated protected static final String[] DATE_PATTERNS;
  }

  @Deprecated public class BrowserCompatSpecFactory implements org.apache.http.cookie.CookieSpecFactory {
    ctor @Deprecated public BrowserCompatSpecFactory();
    method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
  }

  @Deprecated public abstract class CookieSpecBase extends org.apache.http.impl.cookie.AbstractCookieSpec {
    ctor @Deprecated public CookieSpecBase();
    method @Deprecated protected static String getDefaultDomain(org.apache.http.cookie.CookieOrigin);
    method @Deprecated protected static String getDefaultPath(org.apache.http.cookie.CookieOrigin);
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated protected java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.HeaderElement[], org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class DateParseException extends java.lang.Exception {
    ctor @Deprecated public DateParseException();
    ctor @Deprecated public DateParseException(String);
  }

  @Deprecated public final class DateUtils {
    method @Deprecated public static String formatDate(java.util.Date);
    method @Deprecated public static String formatDate(java.util.Date, String);
    method @Deprecated public static java.util.Date parseDate(String) throws org.apache.http.impl.cookie.DateParseException;
    method @Deprecated public static java.util.Date parseDate(String, String[]) throws org.apache.http.impl.cookie.DateParseException;
    method @Deprecated public static java.util.Date parseDate(String, String[], java.util.Date) throws org.apache.http.impl.cookie.DateParseException;
    field @Deprecated public static final java.util.TimeZone GMT;
    field @Deprecated public static final String PATTERN_ASCTIME = "EEE MMM d HH:mm:ss yyyy";
    field @Deprecated public static final String PATTERN_RFC1036 = "EEEE, dd-MMM-yy HH:mm:ss zzz";
    field @Deprecated public static final String PATTERN_RFC1123 = "EEE, dd MMM yyyy HH:mm:ss zzz";
  }

  @Deprecated public class NetscapeDomainHandler extends org.apache.http.impl.cookie.BasicDomainHandler {
    ctor @Deprecated public NetscapeDomainHandler();
  }

  @Deprecated public class NetscapeDraftHeaderParser {
    ctor @Deprecated public NetscapeDraftHeaderParser();
    method @Deprecated public org.apache.http.HeaderElement parseHeader(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
    field @Deprecated public static final org.apache.http.impl.cookie.NetscapeDraftHeaderParser DEFAULT;
  }

  @Deprecated public class NetscapeDraftSpec extends org.apache.http.impl.cookie.CookieSpecBase {
    ctor @Deprecated public NetscapeDraftSpec(String[]);
    ctor @Deprecated public NetscapeDraftSpec();
    method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
    method @Deprecated public int getVersion();
    method @Deprecated public org.apache.http.Header getVersionHeader();
    method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Header, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
    field @Deprecated protected static final String EXPIRES_PATTERN = "EEE, dd-MMM-yyyy HH:mm:ss z";
  }

  @Deprecated public class NetscapeDraftSpecFactory implements org.apache.http.cookie.CookieSpecFactory {
    ctor @Deprecated public NetscapeDraftSpecFactory();
    method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
  }

  @Deprecated public class RFC2109DomainHandler implements org.apache.http.cookie.CookieAttributeHandler {
    ctor @Deprecated public RFC2109DomainHandler();
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class RFC2109Spec extends org.apache.http.impl.cookie.CookieSpecBase {
    ctor @Deprecated public RFC2109Spec(String[], boolean);
    ctor @Deprecated public RFC2109Spec();
    method @Deprecated protected void formatCookieAsVer(org.apache.http.util.CharArrayBuffer, org.apache.http.cookie.Cookie, int);
    method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
    method @Deprecated protected void formatParamAsVer(org.apache.http.util.CharArrayBuffer, String, String, int);
    method @Deprecated public int getVersion();
    method @Deprecated public org.apache.http.Header getVersionHeader();
    method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Header, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class RFC2109SpecFactory implements org.apache.http.cookie.CookieSpecFactory {
    ctor @Deprecated public RFC2109SpecFactory();
    method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
  }

  @Deprecated public class RFC2109VersionHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
    ctor @Deprecated public RFC2109VersionHandler();
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class RFC2965CommentUrlAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
    ctor @Deprecated public RFC2965CommentUrlAttributeHandler();
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class RFC2965DiscardAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
    ctor @Deprecated public RFC2965DiscardAttributeHandler();
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class RFC2965DomainAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
    ctor @Deprecated public RFC2965DomainAttributeHandler();
    method @Deprecated public boolean domainMatch(String, String);
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class RFC2965PortAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
    ctor @Deprecated public RFC2965PortAttributeHandler();
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

  @Deprecated public class RFC2965Spec extends org.apache.http.impl.cookie.RFC2109Spec {
    ctor @Deprecated public RFC2965Spec();
    ctor @Deprecated public RFC2965Spec(String[], boolean);
  }

  @Deprecated public class RFC2965SpecFactory implements org.apache.http.cookie.CookieSpecFactory {
    ctor @Deprecated public RFC2965SpecFactory();
    method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
  }

  @Deprecated public class RFC2965VersionAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
    ctor @Deprecated public RFC2965VersionAttributeHandler();
    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
  }

}

package org.apache.http.impl.entity {

  @Deprecated public class EntityDeserializer {
    ctor @Deprecated public EntityDeserializer(org.apache.http.entity.ContentLengthStrategy);
    method @Deprecated public org.apache.http.HttpEntity deserialize(org.apache.http.io.SessionInputBuffer, org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated protected org.apache.http.entity.BasicHttpEntity doDeserialize(org.apache.http.io.SessionInputBuffer, org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class EntitySerializer {
    ctor @Deprecated public EntitySerializer(org.apache.http.entity.ContentLengthStrategy);
    method @Deprecated protected java.io.OutputStream doSerialize(org.apache.http.io.SessionOutputBuffer, org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void serialize(org.apache.http.io.SessionOutputBuffer, org.apache.http.HttpMessage, org.apache.http.HttpEntity) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class LaxContentLengthStrategy implements org.apache.http.entity.ContentLengthStrategy {
    ctor @Deprecated public LaxContentLengthStrategy();
    method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http.HttpException;
  }

  @Deprecated public class StrictContentLengthStrategy implements org.apache.http.entity.ContentLengthStrategy {
    ctor @Deprecated public StrictContentLengthStrategy();
    method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http.HttpException;
  }

}

package org.apache.http.impl.io {

  @Deprecated public abstract class AbstractMessageParser implements org.apache.http.io.HttpMessageParser {
    ctor @Deprecated public AbstractMessageParser(org.apache.http.io.SessionInputBuffer, org.apache.http.message.LineParser, org.apache.http.params.HttpParams);
    method @Deprecated public org.apache.http.HttpMessage parse() throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated protected abstract org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInputBuffer) throws org.apache.http.HttpException, java.io.IOException, org.apache.http.ParseException;
    method @Deprecated public static org.apache.http.Header[] parseHeaders(org.apache.http.io.SessionInputBuffer, int, int, org.apache.http.message.LineParser) throws org.apache.http.HttpException, java.io.IOException;
    field @Deprecated protected final org.apache.http.message.LineParser lineParser;
  }

  @Deprecated public abstract class AbstractMessageWriter implements org.apache.http.io.HttpMessageWriter {
    ctor @Deprecated public AbstractMessageWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.message.LineFormatter, org.apache.http.params.HttpParams);
    method @Deprecated public void write(org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated protected abstract void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOException;
    field @Deprecated protected final org.apache.http.util.CharArrayBuffer lineBuf;
    field @Deprecated protected final org.apache.http.message.LineFormatter lineFormatter;
    field @Deprecated protected final org.apache.http.io.SessionOutputBuffer sessionBuffer;
  }

  @Deprecated public abstract class AbstractSessionInputBuffer implements org.apache.http.io.SessionInputBuffer {
    ctor @Deprecated public AbstractSessionInputBuffer();
    method @Deprecated protected int fillBuffer() throws java.io.IOException;
    method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
    method @Deprecated protected boolean hasBufferedData();
    method @Deprecated protected void init(java.io.InputStream, int, org.apache.http.params.HttpParams);
    method @Deprecated public int read() throws java.io.IOException;
    method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
    method @Deprecated public int read(byte[]) throws java.io.IOException;
    method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
    method @Deprecated public String readLine() throws java.io.IOException;
  }

  @Deprecated public abstract class AbstractSessionOutputBuffer implements org.apache.http.io.SessionOutputBuffer {
    ctor @Deprecated public AbstractSessionOutputBuffer();
    method @Deprecated public void flush() throws java.io.IOException;
    method @Deprecated protected void flushBuffer() throws java.io.IOException;
    method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
    method @Deprecated protected void init(java.io.OutputStream, int, org.apache.http.params.HttpParams);
    method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
    method @Deprecated public void write(byte[]) throws java.io.IOException;
    method @Deprecated public void write(int) throws java.io.IOException;
    method @Deprecated public void writeLine(String) throws java.io.IOException;
    method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
  }

  @Deprecated public class ChunkedInputStream extends java.io.InputStream {
    ctor @Deprecated public ChunkedInputStream(org.apache.http.io.SessionInputBuffer);
    method @Deprecated public org.apache.http.Header[] getFooters();
    method @Deprecated public int read() throws java.io.IOException;
  }

  @Deprecated public class ChunkedOutputStream extends java.io.OutputStream {
    ctor @Deprecated public ChunkedOutputStream(org.apache.http.io.SessionOutputBuffer, int) throws java.io.IOException;
    ctor @Deprecated public ChunkedOutputStream(org.apache.http.io.SessionOutputBuffer) throws java.io.IOException;
    method @Deprecated public void finish() throws java.io.IOException;
    method @Deprecated protected void flushCache() throws java.io.IOException;
    method @Deprecated protected void flushCacheWithAppend(byte[], int, int) throws java.io.IOException;
    method @Deprecated public void write(int) throws java.io.IOException;
    method @Deprecated protected void writeClosingChunk() throws java.io.IOException;
  }

  @Deprecated public class ContentLengthInputStream extends java.io.InputStream {
    ctor @Deprecated public ContentLengthInputStream(org.apache.http.io.SessionInputBuffer, long);
    method @Deprecated public int read() throws java.io.IOException;
  }

  @Deprecated public class ContentLengthOutputStream extends java.io.OutputStream {
    ctor @Deprecated public ContentLengthOutputStream(org.apache.http.io.SessionOutputBuffer, long);
    method @Deprecated public void write(int) throws java.io.IOException;
  }

  @Deprecated public class HttpRequestParser extends org.apache.http.impl.io.AbstractMessageParser {
    ctor @Deprecated public HttpRequestParser(org.apache.http.io.SessionInputBuffer, org.apache.http.message.LineParser, org.apache.http.HttpRequestFactory, org.apache.http.params.HttpParams);
    method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInputBuffer) throws org.apache.http.HttpException, java.io.IOException, org.apache.http.ParseException;
  }

  @Deprecated public class HttpRequestWriter extends org.apache.http.impl.io.AbstractMessageWriter {
    ctor @Deprecated public HttpRequestWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.message.LineFormatter, org.apache.http.params.HttpParams);
    method @Deprecated protected void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOException;
  }

  @Deprecated public class HttpResponseParser extends org.apache.http.impl.io.AbstractMessageParser {
    ctor @Deprecated public HttpResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.http.message.LineParser, org.apache.http.HttpResponseFactory, org.apache.http.params.HttpParams);
    method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInputBuffer) throws org.apache.http.HttpException, java.io.IOException, org.apache.http.ParseException;
  }

  @Deprecated public class HttpResponseWriter extends org.apache.http.impl.io.AbstractMessageWriter {
    ctor @Deprecated public HttpResponseWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.message.LineFormatter, org.apache.http.params.HttpParams);
    method @Deprecated protected void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOException;
  }

  @Deprecated public class HttpTransportMetricsImpl implements org.apache.http.io.HttpTransportMetrics {
    ctor @Deprecated public HttpTransportMetricsImpl();
    method @Deprecated public long getBytesTransferred();
    method @Deprecated public void incrementBytesTransferred(long);
    method @Deprecated public void reset();
    method @Deprecated public void setBytesTransferred(long);
  }

  @Deprecated public class IdentityInputStream extends java.io.InputStream {
    ctor @Deprecated public IdentityInputStream(org.apache.http.io.SessionInputBuffer);
    method @Deprecated public int read() throws java.io.IOException;
  }

  @Deprecated public class IdentityOutputStream extends java.io.OutputStream {
    ctor @Deprecated public IdentityOutputStream(org.apache.http.io.SessionOutputBuffer);
    method @Deprecated public void write(int) throws java.io.IOException;
  }

  @Deprecated public class SocketInputBuffer extends org.apache.http.impl.io.AbstractSessionInputBuffer {
    ctor @Deprecated public SocketInputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
    method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
    method @Deprecated public boolean isStale() throws java.io.IOException;
  }

  @Deprecated public class SocketOutputBuffer extends org.apache.http.impl.io.AbstractSessionOutputBuffer {
    ctor @Deprecated public SocketOutputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
  }

}

package org.apache.http.io {

  @Deprecated public interface HttpMessageParser {
    method @Deprecated public org.apache.http.HttpMessage parse() throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public interface HttpMessageWriter {
    method @Deprecated public void write(org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public interface HttpTransportMetrics {
    method @Deprecated public long getBytesTransferred();
    method @Deprecated public void reset();
  }

  @Deprecated public interface SessionInputBuffer {
    method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
    method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
    method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
    method @Deprecated public int read(byte[]) throws java.io.IOException;
    method @Deprecated public int read() throws java.io.IOException;
    method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
    method @Deprecated public String readLine() throws java.io.IOException;
  }

  @Deprecated public interface SessionOutputBuffer {
    method @Deprecated public void flush() throws java.io.IOException;
    method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
    method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
    method @Deprecated public void write(byte[]) throws java.io.IOException;
    method @Deprecated public void write(int) throws java.io.IOException;
    method @Deprecated public void writeLine(String) throws java.io.IOException;
    method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
  }

}

package org.apache.http.message {

  @Deprecated public abstract class AbstractHttpMessage implements org.apache.http.HttpMessage {
    ctor @Deprecated protected AbstractHttpMessage(org.apache.http.params.HttpParams);
    ctor @Deprecated protected AbstractHttpMessage();
    method @Deprecated public void addHeader(org.apache.http.Header);
    method @Deprecated public void addHeader(String, String);
    method @Deprecated public boolean containsHeader(String);
    method @Deprecated public org.apache.http.Header[] getAllHeaders();
    method @Deprecated public org.apache.http.Header getFirstHeader(String);
    method @Deprecated public org.apache.http.Header[] getHeaders(String);
    method @Deprecated public org.apache.http.Header getLastHeader(String);
    method @Deprecated public org.apache.http.params.HttpParams getParams();
    method @Deprecated public org.apache.http.HeaderIterator headerIterator();
    method @Deprecated public org.apache.http.HeaderIterator headerIterator(String);
    method @Deprecated public void removeHeader(org.apache.http.Header);
    method @Deprecated public void removeHeaders(String);
    method @Deprecated public void setHeader(org.apache.http.Header);
    method @Deprecated public void setHeader(String, String);
    method @Deprecated public void setHeaders(org.apache.http.Header[]);
    method @Deprecated public void setParams(org.apache.http.params.HttpParams);
    field @Deprecated protected org.apache.http.message.HeaderGroup headergroup;
    field @Deprecated protected org.apache.http.params.HttpParams params;
  }

  @Deprecated public class BasicHeader implements java.lang.Cloneable org.apache.http.Header {
    ctor @Deprecated public BasicHeader(String, String);
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.ParseException;
    method @Deprecated public String getName();
    method @Deprecated public String getValue();
  }

  @Deprecated public class BasicHeaderElement implements java.lang.Cloneable org.apache.http.HeaderElement {
    ctor @Deprecated public BasicHeaderElement(String, String, org.apache.http.NameValuePair[]);
    ctor @Deprecated public BasicHeaderElement(String, String);
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public String getName();
    method @Deprecated public org.apache.http.NameValuePair getParameter(int);
    method @Deprecated public org.apache.http.NameValuePair getParameterByName(String);
    method @Deprecated public int getParameterCount();
    method @Deprecated public org.apache.http.NameValuePair[] getParameters();
    method @Deprecated public String getValue();
  }

  @Deprecated public class BasicHeaderElementIterator implements org.apache.http.HeaderElementIterator {
    ctor @Deprecated public BasicHeaderElementIterator(org.apache.http.HeaderIterator, org.apache.http.message.HeaderValueParser);
    ctor @Deprecated public BasicHeaderElementIterator(org.apache.http.HeaderIterator);
    method @Deprecated public boolean hasNext();
    method @Deprecated public final Object next() throws java.util.NoSuchElementException;
    method @Deprecated public org.apache.http.HeaderElement nextElement() throws java.util.NoSuchElementException;
    method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
  }

  @Deprecated public class BasicHeaderIterator implements org.apache.http.HeaderIterator {
    ctor @Deprecated public BasicHeaderIterator(org.apache.http.Header[], String);
    method @Deprecated protected boolean filterHeader(int);
    method @Deprecated protected int findNext(int);
    method @Deprecated public boolean hasNext();
    method @Deprecated public final Object next() throws java.util.NoSuchElementException;
    method @Deprecated public org.apache.http.Header nextHeader() throws java.util.NoSuchElementException;
    method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
    field @Deprecated protected final org.apache.http.Header[] allHeaders;
    field @Deprecated protected int currentIndex;
    field @Deprecated protected String headerName;
  }

  @Deprecated public class BasicHeaderValueFormatter implements org.apache.http.message.HeaderValueFormatter {
    ctor @Deprecated public BasicHeaderValueFormatter();
    method @Deprecated protected void doFormatValue(org.apache.http.util.CharArrayBuffer, String, boolean);
    method @Deprecated protected int estimateElementsLen(org.apache.http.HeaderElement[]);
    method @Deprecated protected int estimateHeaderElementLen(org.apache.http.HeaderElement);
    method @Deprecated protected int estimateNameValuePairLen(org.apache.http.NameValuePair);
    method @Deprecated protected int estimateParametersLen(org.apache.http.NameValuePair[]);
    method @Deprecated public static final String formatElements(org.apache.http.HeaderElement[], boolean, org.apache.http.message.HeaderValueFormatter);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatElements(org.apache.http.util.CharArrayBuffer, org.apache.http.HeaderElement[], boolean);
    method @Deprecated public static final String formatHeaderElement(org.apache.http.HeaderElement, boolean, org.apache.http.message.HeaderValueFormatter);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeaderElement(org.apache.http.util.CharArrayBuffer, org.apache.http.HeaderElement, boolean);
    method @Deprecated public static final String formatNameValuePair(org.apache.http.NameValuePair, boolean, org.apache.http.message.HeaderValueFormatter);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.NameValuePair, boolean);
    method @Deprecated public static final String formatParameters(org.apache.http.NameValuePair[], boolean, org.apache.http.message.HeaderValueFormatter);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatParameters(org.apache.http.util.CharArrayBuffer, org.apache.http.NameValuePair[], boolean);
    method @Deprecated protected boolean isSeparator(char);
    method @Deprecated protected boolean isUnsafe(char);
    field @Deprecated public static final org.apache.http.message.BasicHeaderValueFormatter DEFAULT;
    field @Deprecated public static final String SEPARATORS = " ;,:@()<>\\\"/[]?={}\t";
    field @Deprecated public static final String UNSAFE_CHARS = "\"\\";
  }

  @Deprecated public class BasicHeaderValueParser implements org.apache.http.message.HeaderValueParser {
    ctor @Deprecated public BasicHeaderValueParser();
    method @Deprecated protected org.apache.http.HeaderElement createHeaderElement(String, String, org.apache.http.NameValuePair[]);
    method @Deprecated protected org.apache.http.NameValuePair createNameValuePair(String, String);
    method @Deprecated public static final org.apache.http.HeaderElement[] parseElements(String, org.apache.http.message.HeaderValueParser) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.HeaderElement[] parseElements(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
    method @Deprecated public static final org.apache.http.HeaderElement parseHeaderElement(String, org.apache.http.message.HeaderValueParser) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.HeaderElement parseHeaderElement(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
    method @Deprecated public static final org.apache.http.NameValuePair parseNameValuePair(String, org.apache.http.message.HeaderValueParser) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
    method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor, char[]);
    method @Deprecated public static final org.apache.http.NameValuePair[] parseParameters(String, org.apache.http.message.HeaderValueParser) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.NameValuePair[] parseParameters(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
    field @Deprecated public static final org.apache.http.message.BasicHeaderValueParser DEFAULT;
  }

  @Deprecated public class BasicHttpEntityEnclosingRequest extends org.apache.http.message.BasicHttpRequest implements org.apache.http.HttpEntityEnclosingRequest {
    ctor @Deprecated public BasicHttpEntityEnclosingRequest(String, String);
    ctor @Deprecated public BasicHttpEntityEnclosingRequest(String, String, org.apache.http.ProtocolVersion);
    ctor @Deprecated public BasicHttpEntityEnclosingRequest(org.apache.http.RequestLine);
    method @Deprecated public boolean expectContinue();
    method @Deprecated public org.apache.http.HttpEntity getEntity();
    method @Deprecated public void setEntity(org.apache.http.HttpEntity);
  }

  @Deprecated public class BasicHttpRequest extends org.apache.http.message.AbstractHttpMessage implements org.apache.http.HttpRequest {
    ctor @Deprecated public BasicHttpRequest(String, String);
    ctor @Deprecated public BasicHttpRequest(String, String, org.apache.http.ProtocolVersion);
    ctor @Deprecated public BasicHttpRequest(org.apache.http.RequestLine);
    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
    method @Deprecated public org.apache.http.RequestLine getRequestLine();
  }

  @Deprecated public class BasicHttpResponse extends org.apache.http.message.AbstractHttpMessage implements org.apache.http.HttpResponse {
    ctor @Deprecated public BasicHttpResponse(org.apache.http.StatusLine, org.apache.http.ReasonPhraseCatalog, java.util.Locale);
    ctor @Deprecated public BasicHttpResponse(org.apache.http.StatusLine);
    ctor @Deprecated public BasicHttpResponse(org.apache.http.ProtocolVersion, int, String);
    method @Deprecated public org.apache.http.HttpEntity getEntity();
    method @Deprecated public java.util.Locale getLocale();
    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
    method @Deprecated protected String getReason(int);
    method @Deprecated public org.apache.http.StatusLine getStatusLine();
    method @Deprecated public void setEntity(org.apache.http.HttpEntity);
    method @Deprecated public void setLocale(java.util.Locale);
    method @Deprecated public void setReasonPhrase(String);
    method @Deprecated public void setStatusCode(int);
    method @Deprecated public void setStatusLine(org.apache.http.StatusLine);
    method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int);
    method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int, String);
  }

  @Deprecated public class BasicLineFormatter implements org.apache.http.message.LineFormatter {
    ctor @Deprecated public BasicLineFormatter();
    method @Deprecated public org.apache.http.util.CharArrayBuffer appendProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.ProtocolVersion);
    method @Deprecated protected void doFormatHeader(org.apache.http.util.CharArrayBuffer, org.apache.http.Header);
    method @Deprecated protected void doFormatRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.RequestLine);
    method @Deprecated protected void doFormatStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.StatusLine);
    method @Deprecated protected int estimateProtocolVersionLen(org.apache.http.ProtocolVersion);
    method @Deprecated public static final String formatHeader(org.apache.http.Header, org.apache.http.message.LineFormatter);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeader(org.apache.http.util.CharArrayBuffer, org.apache.http.Header);
    method @Deprecated public static final String formatProtocolVersion(org.apache.http.ProtocolVersion, org.apache.http.message.LineFormatter);
    method @Deprecated public static final String formatRequestLine(org.apache.http.RequestLine, org.apache.http.message.LineFormatter);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.RequestLine);
    method @Deprecated public static final String formatStatusLine(org.apache.http.StatusLine, org.apache.http.message.LineFormatter);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.StatusLine);
    method @Deprecated protected org.apache.http.util.CharArrayBuffer initBuffer(org.apache.http.util.CharArrayBuffer);
    field @Deprecated public static final org.apache.http.message.BasicLineFormatter DEFAULT;
  }

  @Deprecated public class BasicLineParser implements org.apache.http.message.LineParser {
    ctor @Deprecated public BasicLineParser(org.apache.http.ProtocolVersion);
    ctor @Deprecated public BasicLineParser();
    method @Deprecated protected org.apache.http.ProtocolVersion createProtocolVersion(int, int);
    method @Deprecated protected org.apache.http.RequestLine createRequestLine(String, String, org.apache.http.ProtocolVersion);
    method @Deprecated protected org.apache.http.StatusLine createStatusLine(org.apache.http.ProtocolVersion, int, String);
    method @Deprecated public boolean hasProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
    method @Deprecated public static final org.apache.http.Header parseHeader(String, org.apache.http.message.LineParser) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.Header parseHeader(org.apache.http.util.CharArrayBuffer) throws org.apache.http.ParseException;
    method @Deprecated public static final org.apache.http.ProtocolVersion parseProtocolVersion(String, org.apache.http.message.LineParser) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.ProtocolVersion parseProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
    method @Deprecated public static final org.apache.http.RequestLine parseRequestLine(String, org.apache.http.message.LineParser) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.RequestLine parseRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
    method @Deprecated public static final org.apache.http.StatusLine parseStatusLine(String, org.apache.http.message.LineParser) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.StatusLine parseStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
    method @Deprecated protected void skipWhitespace(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
    field @Deprecated public static final org.apache.http.message.BasicLineParser DEFAULT;
    field @Deprecated protected final org.apache.http.ProtocolVersion protocol;
  }

  @Deprecated public class BasicListHeaderIterator implements org.apache.http.HeaderIterator {
    ctor @Deprecated public BasicListHeaderIterator(java.util.List, String);
    method @Deprecated protected boolean filterHeader(int);
    method @Deprecated protected int findNext(int);
    method @Deprecated public boolean hasNext();
    method @Deprecated public final Object next() throws java.util.NoSuchElementException;
    method @Deprecated public org.apache.http.Header nextHeader() throws java.util.NoSuchElementException;
    method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
    field @Deprecated protected final java.util.List allHeaders;
    field @Deprecated protected int currentIndex;
    field @Deprecated protected String headerName;
    field @Deprecated protected int lastIndex;
  }

  @Deprecated public class BasicNameValuePair implements java.lang.Cloneable org.apache.http.NameValuePair {
    ctor @Deprecated public BasicNameValuePair(String, String);
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public String getName();
    method @Deprecated public String getValue();
  }

  @Deprecated public class BasicRequestLine implements java.lang.Cloneable org.apache.http.RequestLine {
    ctor @Deprecated public BasicRequestLine(String, String, org.apache.http.ProtocolVersion);
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public String getMethod();
    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
    method @Deprecated public String getUri();
  }

  @Deprecated public class BasicStatusLine implements java.lang.Cloneable org.apache.http.StatusLine {
    ctor @Deprecated public BasicStatusLine(org.apache.http.ProtocolVersion, int, String);
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
    method @Deprecated public String getReasonPhrase();
    method @Deprecated public int getStatusCode();
  }

  @Deprecated public class BasicTokenIterator implements org.apache.http.TokenIterator {
    ctor @Deprecated public BasicTokenIterator(org.apache.http.HeaderIterator);
    method @Deprecated protected String createToken(String, int, int);
    method @Deprecated protected int findNext(int) throws org.apache.http.ParseException;
    method @Deprecated protected int findTokenEnd(int);
    method @Deprecated protected int findTokenSeparator(int);
    method @Deprecated protected int findTokenStart(int);
    method @Deprecated public boolean hasNext();
    method @Deprecated protected boolean isHttpSeparator(char);
    method @Deprecated protected boolean isTokenChar(char);
    method @Deprecated protected boolean isTokenSeparator(char);
    method @Deprecated protected boolean isWhitespace(char);
    method @Deprecated public final Object next() throws java.util.NoSuchElementException, org.apache.http.ParseException;
    method @Deprecated public String nextToken() throws java.util.NoSuchElementException, org.apache.http.ParseException;
    method @Deprecated public final void remove() throws java.lang.UnsupportedOperationException;
    field @Deprecated public static final String HTTP_SEPARATORS = " ,;=()<>@:\\\"/[]?{}\t";
    field @Deprecated protected String currentHeader;
    field @Deprecated protected String currentToken;
    field @Deprecated protected final org.apache.http.HeaderIterator headerIt;
    field @Deprecated protected int searchPos;
  }

  @Deprecated public class BufferedHeader implements java.lang.Cloneable org.apache.http.FormattedHeader {
    ctor @Deprecated public BufferedHeader(org.apache.http.util.CharArrayBuffer) throws org.apache.http.ParseException;
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public org.apache.http.util.CharArrayBuffer getBuffer();
    method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.ParseException;
    method @Deprecated public String getName();
    method @Deprecated public String getValue();
    method @Deprecated public int getValuePos();
  }

  @Deprecated public class HeaderGroup implements java.lang.Cloneable {
    ctor @Deprecated public HeaderGroup();
    method @Deprecated public void addHeader(org.apache.http.Header);
    method @Deprecated public void clear();
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public boolean containsHeader(String);
    method @Deprecated public org.apache.http.message.HeaderGroup copy();
    method @Deprecated public org.apache.http.Header[] getAllHeaders();
    method @Deprecated public org.apache.http.Header getCondensedHeader(String);
    method @Deprecated public org.apache.http.Header getFirstHeader(String);
    method @Deprecated public org.apache.http.Header[] getHeaders(String);
    method @Deprecated public org.apache.http.Header getLastHeader(String);
    method @Deprecated public org.apache.http.HeaderIterator iterator();
    method @Deprecated public org.apache.http.HeaderIterator iterator(String);
    method @Deprecated public void removeHeader(org.apache.http.Header);
    method @Deprecated public void setHeaders(org.apache.http.Header[]);
    method @Deprecated public void updateHeader(org.apache.http.Header);
  }

  @Deprecated public interface HeaderValueFormatter {
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatElements(org.apache.http.util.CharArrayBuffer, org.apache.http.HeaderElement[], boolean);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeaderElement(org.apache.http.util.CharArrayBuffer, org.apache.http.HeaderElement, boolean);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.NameValuePair, boolean);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatParameters(org.apache.http.util.CharArrayBuffer, org.apache.http.NameValuePair[], boolean);
  }

  @Deprecated public interface HeaderValueParser {
    method @Deprecated public org.apache.http.HeaderElement[] parseElements(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.HeaderElement parseHeaderElement(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.NameValuePair[] parseParameters(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
  }

  @Deprecated public interface LineFormatter {
    method @Deprecated public org.apache.http.util.CharArrayBuffer appendProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.ProtocolVersion);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeader(org.apache.http.util.CharArrayBuffer, org.apache.http.Header);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.RequestLine);
    method @Deprecated public org.apache.http.util.CharArrayBuffer formatStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.StatusLine);
  }

  @Deprecated public interface LineParser {
    method @Deprecated public boolean hasProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
    method @Deprecated public org.apache.http.Header parseHeader(org.apache.http.util.CharArrayBuffer) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.ProtocolVersion parseProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.RequestLine parseRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
    method @Deprecated public org.apache.http.StatusLine parseStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
  }

  @Deprecated public class ParserCursor {
    ctor @Deprecated public ParserCursor(int, int);
    method @Deprecated public boolean atEnd();
    method @Deprecated public int getLowerBound();
    method @Deprecated public int getPos();
    method @Deprecated public int getUpperBound();
    method @Deprecated public void updatePos(int);
  }

}

package org.apache.http.params {

  @Deprecated public abstract class AbstractHttpParams implements org.apache.http.params.HttpParams {
    ctor @Deprecated protected AbstractHttpParams();
    method @Deprecated public boolean getBooleanParameter(String, boolean);
    method @Deprecated public double getDoubleParameter(String, double);
    method @Deprecated public int getIntParameter(String, int);
    method @Deprecated public long getLongParameter(String, long);
    method @Deprecated public boolean isParameterFalse(String);
    method @Deprecated public boolean isParameterTrue(String);
    method @Deprecated public org.apache.http.params.HttpParams setBooleanParameter(String, boolean);
    method @Deprecated public org.apache.http.params.HttpParams setDoubleParameter(String, double);
    method @Deprecated public org.apache.http.params.HttpParams setIntParameter(String, int);
    method @Deprecated public org.apache.http.params.HttpParams setLongParameter(String, long);
  }

  @Deprecated public final class BasicHttpParams extends org.apache.http.params.AbstractHttpParams implements java.lang.Cloneable java.io.Serializable {
    ctor @Deprecated public BasicHttpParams();
    method @Deprecated public void clear();
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public org.apache.http.params.HttpParams copy();
    method @Deprecated protected void copyParams(org.apache.http.params.HttpParams);
    method @Deprecated public Object getParameter(String);
    method @Deprecated public boolean isParameterSet(String);
    method @Deprecated public boolean isParameterSetLocally(String);
    method @Deprecated public boolean removeParameter(String);
    method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object);
    method @Deprecated public void setParameters(String[], Object);
  }

  @Deprecated public interface CoreProtocolPNames {
    field @Deprecated public static final String HTTP_CONTENT_CHARSET = "http.protocol.content-charset";
    field @Deprecated public static final String HTTP_ELEMENT_CHARSET = "http.protocol.element-charset";
    field @Deprecated public static final String ORIGIN_SERVER = "http.origin-server";
    field @Deprecated public static final String PROTOCOL_VERSION = "http.protocol.version";
    field @Deprecated public static final String STRICT_TRANSFER_ENCODING = "http.protocol.strict-transfer-encoding";
    field @Deprecated public static final String USER_AGENT = "http.useragent";
    field @Deprecated public static final String USE_EXPECT_CONTINUE = "http.protocol.expect-continue";
    field @Deprecated public static final String WAIT_FOR_CONTINUE = "http.protocol.wait-for-continue";
  }

  @Deprecated public final class DefaultedHttpParams extends org.apache.http.params.AbstractHttpParams {
    ctor @Deprecated public DefaultedHttpParams(org.apache.http.params.HttpParams, org.apache.http.params.HttpParams);
    method @Deprecated public org.apache.http.params.HttpParams copy();
    method @Deprecated public org.apache.http.params.HttpParams getDefaults();
    method @Deprecated public Object getParameter(String);
    method @Deprecated public boolean removeParameter(String);
    method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object);
  }

  @Deprecated public abstract class HttpAbstractParamBean {
    ctor @Deprecated public HttpAbstractParamBean(org.apache.http.params.HttpParams);
    field @Deprecated protected final org.apache.http.params.HttpParams params;
  }

  @Deprecated public class HttpConnectionParamBean extends org.apache.http.params.HttpAbstractParamBean {
    ctor @Deprecated public HttpConnectionParamBean(org.apache.http.params.HttpParams);
    method @Deprecated public void setConnectionTimeout(int);
    method @Deprecated public void setLinger(int);
    method @Deprecated public void setSoTimeout(int);
    method @Deprecated public void setSocketBufferSize(int);
    method @Deprecated public void setStaleCheckingEnabled(boolean);
    method @Deprecated public void setTcpNoDelay(boolean);
  }

  @Deprecated public class HttpProtocolParamBean extends org.apache.http.params.HttpAbstractParamBean {
    ctor @Deprecated public HttpProtocolParamBean(org.apache.http.params.HttpParams);
    method @Deprecated public void setContentCharset(String);
    method @Deprecated public void setHttpElementCharset(String);
    method @Deprecated public void setUseExpectContinue(boolean);
    method @Deprecated public void setUserAgent(String);
    method @Deprecated public void setVersion(org.apache.http.HttpVersion);
  }

  @Deprecated public final class HttpProtocolParams implements org.apache.http.params.CoreProtocolPNames {
    method @Deprecated public static String getContentCharset(org.apache.http.params.HttpParams);
    method @Deprecated public static String getHttpElementCharset(org.apache.http.params.HttpParams);
    method @Deprecated public static String getUserAgent(org.apache.http.params.HttpParams);
    method @Deprecated public static org.apache.http.ProtocolVersion getVersion(org.apache.http.params.HttpParams);
    method @Deprecated public static void setContentCharset(org.apache.http.params.HttpParams, String);
    method @Deprecated public static void setHttpElementCharset(org.apache.http.params.HttpParams, String);
    method @Deprecated public static void setUseExpectContinue(org.apache.http.params.HttpParams, boolean);
    method @Deprecated public static void setUserAgent(org.apache.http.params.HttpParams, String);
    method @Deprecated public static void setVersion(org.apache.http.params.HttpParams, org.apache.http.ProtocolVersion);
    method @Deprecated public static boolean useExpectContinue(org.apache.http.params.HttpParams);
  }

}

package org.apache.http.protocol {

  @Deprecated public class BasicHttpContext implements org.apache.http.protocol.HttpContext {
    ctor @Deprecated public BasicHttpContext();
    ctor @Deprecated public BasicHttpContext(org.apache.http.protocol.HttpContext);
    method @Deprecated public Object getAttribute(String);
    method @Deprecated public Object removeAttribute(String);
    method @Deprecated public void setAttribute(String, Object);
  }

  @Deprecated public final class BasicHttpProcessor implements java.lang.Cloneable org.apache.http.protocol.HttpProcessor org.apache.http.protocol.HttpRequestInterceptorList org.apache.http.protocol.HttpResponseInterceptorList {
    ctor @Deprecated public BasicHttpProcessor();
    method @Deprecated public void addInterceptor(org.apache.http.HttpRequestInterceptor);
    method @Deprecated public void addInterceptor(org.apache.http.HttpRequestInterceptor, int);
    method @Deprecated public void addInterceptor(org.apache.http.HttpResponseInterceptor);
    method @Deprecated public void addInterceptor(org.apache.http.HttpResponseInterceptor, int);
    method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
    method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
    method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int);
    method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
    method @Deprecated public void clearInterceptors();
    method @Deprecated public void clearRequestInterceptors();
    method @Deprecated public void clearResponseInterceptors();
    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
    method @Deprecated public org.apache.http.protocol.BasicHttpProcessor copy();
    method @Deprecated protected void copyInterceptors(org.apache.http.protocol.BasicHttpProcessor);
    method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
    method @Deprecated public int getRequestInterceptorCount();
    method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
    method @Deprecated public int getResponseInterceptorCount();
    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void removeRequestInterceptorByClass(Class);
    method @Deprecated public void removeResponseInterceptorByClass(Class);
    method @Deprecated public void setInterceptors(java.util.List);
    field @Deprecated protected java.util.List requestInterceptors;
    field @Deprecated protected java.util.List responseInterceptors;
  }

  @Deprecated public final class DefaultedHttpContext implements org.apache.http.protocol.HttpContext {
    ctor @Deprecated public DefaultedHttpContext(org.apache.http.protocol.HttpContext, org.apache.http.protocol.HttpContext);
    method @Deprecated public Object getAttribute(String);
    method @Deprecated public org.apache.http.protocol.HttpContext getDefaults();
    method @Deprecated public Object removeAttribute(String);
    method @Deprecated public void setAttribute(String, Object);
  }

  @Deprecated public interface ExecutionContext {
    field @Deprecated public static final String HTTP_CONNECTION = "http.connection";
    field @Deprecated public static final String HTTP_PROXY_HOST = "http.proxy_host";
    field @Deprecated public static final String HTTP_REQUEST = "http.request";
    field @Deprecated public static final String HTTP_REQ_SENT = "http.request_sent";
    field @Deprecated public static final String HTTP_RESPONSE = "http.response";
    field @Deprecated public static final String HTTP_TARGET_HOST = "http.target_host";
  }

  @Deprecated public final class HTTP {
    method @Deprecated public static boolean isWhitespace(char);
    field @Deprecated public static final String ASCII = "ASCII";
    field @Deprecated public static final String CHARSET_PARAM = "; charset=";
    field @Deprecated public static final String CHUNK_CODING = "chunked";
    field @Deprecated public static final String CONN_CLOSE = "Close";
    field @Deprecated public static final String CONN_DIRECTIVE = "Connection";
    field @Deprecated public static final String CONN_KEEP_ALIVE = "Keep-Alive";
    field @Deprecated public static final String CONTENT_ENCODING = "Content-Encoding";
    field @Deprecated public static final String CONTENT_LEN = "Content-Length";
    field @Deprecated public static final String CONTENT_TYPE = "Content-Type";
    field @Deprecated public static final int CR = 13; // 0xd
    field @Deprecated public static final String DATE_HEADER = "Date";
    field @Deprecated public static final String DEFAULT_CONTENT_CHARSET = "ISO-8859-1";
    field @Deprecated public static final String DEFAULT_CONTENT_TYPE = "application/octet-stream";
    field @Deprecated public static final String DEFAULT_PROTOCOL_CHARSET = "US-ASCII";
    field @Deprecated public static final String EXPECT_CONTINUE = "100-continue";
    field @Deprecated public static final String EXPECT_DIRECTIVE = "Expect";
    field @Deprecated public static final int HT = 9; // 0x9
    field @Deprecated public static final String IDENTITY_CODING = "identity";
    field @Deprecated public static final String ISO_8859_1 = "ISO-8859-1";
    field @Deprecated public static final int LF = 10; // 0xa
    field @Deprecated public static final String OCTET_STREAM_TYPE = "application/octet-stream";
    field @Deprecated public static final String PLAIN_TEXT_TYPE = "text/plain";
    field @Deprecated public static final String SERVER_HEADER = "Server";
    field @Deprecated public static final int SP = 32; // 0x20
    field @Deprecated public static final String TARGET_HOST = "Host";
    field @Deprecated public static final String TRANSFER_ENCODING = "Transfer-Encoding";
    field @Deprecated public static final String USER_AGENT = "User-Agent";
    field @Deprecated public static final String US_ASCII = "US-ASCII";
    field @Deprecated public static final String UTF_16 = "UTF-16";
    field @Deprecated public static final String UTF_8 = "UTF-8";
  }

  @Deprecated public interface HttpContext {
    method @Deprecated public Object getAttribute(String);
    method @Deprecated public Object removeAttribute(String);
    method @Deprecated public void setAttribute(String, Object);
    field @Deprecated public static final String RESERVED_PREFIX = "http.";
  }

  @Deprecated public class HttpDateGenerator {
    ctor @Deprecated public HttpDateGenerator();
    method @Deprecated public String getCurrentDate();
    field @Deprecated public static final java.util.TimeZone GMT;
    field @Deprecated public static final String PATTERN_RFC1123 = "EEE, dd MMM yyyy HH:mm:ss zzz";
  }

  @Deprecated public interface HttpExpectationVerifier {
    method @Deprecated public void verify(org.apache.http.HttpRequest, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
  }

  @Deprecated public interface HttpProcessor extends org.apache.http.HttpRequestInterceptor org.apache.http.HttpResponseInterceptor {
  }

  @Deprecated public class HttpRequestExecutor {
    ctor @Deprecated public HttpRequestExecutor();
    method @Deprecated protected boolean canResponseHaveBody(org.apache.http.HttpRequest, org.apache.http.HttpResponse);
    method @Deprecated protected org.apache.http.HttpResponse doReceiveResponse(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated protected org.apache.http.HttpResponse doSendRequest(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void postProcess(org.apache.http.HttpResponse, org.apache.http.protocol.HttpProcessor, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void preProcess(org.apache.http.HttpRequest, org.apache.http.protocol.HttpProcessor, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public interface HttpRequestHandler {
    method @Deprecated public void handle(org.apache.http.HttpRequest, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class HttpRequestHandlerRegistry implements org.apache.http.protocol.HttpRequestHandlerResolver {
    ctor @Deprecated public HttpRequestHandlerRegistry();
    method @Deprecated public org.apache.http.protocol.HttpRequestHandler lookup(String);
    method @Deprecated protected boolean matchUriRequestPattern(String, String);
    method @Deprecated public void register(String, org.apache.http.protocol.HttpRequestHandler);
    method @Deprecated public void setHandlers(java.util.Map);
    method @Deprecated public void unregister(String);
  }

  @Deprecated public interface HttpRequestHandlerResolver {
    method @Deprecated public org.apache.http.protocol.HttpRequestHandler lookup(String);
  }

  @Deprecated public interface HttpRequestInterceptorList {
    method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
    method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
    method @Deprecated public void clearRequestInterceptors();
    method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
    method @Deprecated public int getRequestInterceptorCount();
    method @Deprecated public void removeRequestInterceptorByClass(Class);
    method @Deprecated public void setInterceptors(java.util.List);
  }

  @Deprecated public interface HttpResponseInterceptorList {
    method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
    method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int);
    method @Deprecated public void clearResponseInterceptors();
    method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
    method @Deprecated public int getResponseInterceptorCount();
    method @Deprecated public void removeResponseInterceptorByClass(Class);
    method @Deprecated public void setInterceptors(java.util.List);
  }

  @Deprecated public class HttpService {
    ctor @Deprecated public HttpService(org.apache.http.protocol.HttpProcessor, org.apache.http.ConnectionReuseStrategy, org.apache.http.HttpResponseFactory);
    method @Deprecated protected void doService(org.apache.http.HttpRequest, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public org.apache.http.params.HttpParams getParams();
    method @Deprecated protected void handleException(org.apache.http.HttpException, org.apache.http.HttpResponse);
    method @Deprecated public void handleRequest(org.apache.http.HttpServerConnection, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
    method @Deprecated public void setConnReuseStrategy(org.apache.http.ConnectionReuseStrategy);
    method @Deprecated public void setExpectationVerifier(org.apache.http.protocol.HttpExpectationVerifier);
    method @Deprecated public void setHandlerResolver(org.apache.http.protocol.HttpRequestHandlerResolver);
    method @Deprecated public void setHttpProcessor(org.apache.http.protocol.HttpProcessor);
    method @Deprecated public void setParams(org.apache.http.params.HttpParams);
    method @Deprecated public void setResponseFactory(org.apache.http.HttpResponseFactory);
  }

  @Deprecated public class RequestConnControl implements org.apache.http.HttpRequestInterceptor {
    ctor @Deprecated public RequestConnControl();
    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class RequestContent implements org.apache.http.HttpRequestInterceptor {
    ctor @Deprecated public RequestContent();
    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class RequestDate implements org.apache.http.HttpRequestInterceptor {
    ctor @Deprecated public RequestDate();
    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class RequestExpectContinue implements org.apache.http.HttpRequestInterceptor {
    ctor @Deprecated public RequestExpectContinue();
    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class RequestTargetHost implements org.apache.http.HttpRequestInterceptor {
    ctor @Deprecated public RequestTargetHost();
    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class RequestUserAgent implements org.apache.http.HttpRequestInterceptor {
    ctor @Deprecated public RequestUserAgent();
    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class ResponseConnControl implements org.apache.http.HttpResponseInterceptor {
    ctor @Deprecated public ResponseConnControl();
    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class ResponseContent implements org.apache.http.HttpResponseInterceptor {
    ctor @Deprecated public ResponseContent();
    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class ResponseDate implements org.apache.http.HttpResponseInterceptor {
    ctor @Deprecated public ResponseDate();
    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class ResponseServer implements org.apache.http.HttpResponseInterceptor {
    ctor @Deprecated public ResponseServer();
    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
  }

  @Deprecated public class SyncBasicHttpContext extends org.apache.http.protocol.BasicHttpContext {
    ctor @Deprecated public SyncBasicHttpContext(org.apache.http.protocol.HttpContext);
  }

  @Deprecated public class UriPatternMatcher {
    ctor @Deprecated public UriPatternMatcher();
    method @Deprecated public Object lookup(String);
    method @Deprecated protected boolean matchUriRequestPattern(String, String);
    method @Deprecated public void register(String, Object);
    method @Deprecated public void setHandlers(java.util.Map);
    method @Deprecated public void unregister(String);
  }

}

package org.apache.http.util {

  @Deprecated public final class ByteArrayBuffer {
    ctor @Deprecated public ByteArrayBuffer(int);
    method @Deprecated public void append(byte[], int, int);
    method @Deprecated public void append(int);
    method @Deprecated public void append(char[], int, int);
    method @Deprecated public void append(org.apache.http.util.CharArrayBuffer, int, int);
    method @Deprecated public byte[] buffer();
    method @Deprecated public int byteAt(int);
    method @Deprecated public int capacity();
    method @Deprecated public void clear();
    method @Deprecated public boolean isEmpty();
    method @Deprecated public boolean isFull();
    method @Deprecated public int length();
    method @Deprecated public void setLength(int);
    method @Deprecated public byte[] toByteArray();
  }

  @Deprecated public final class CharArrayBuffer {
    ctor @Deprecated public CharArrayBuffer(int);
    method @Deprecated public void append(char[], int, int);
    method @Deprecated public void append(String);
    method @Deprecated public void append(org.apache.http.util.CharArrayBuffer, int, int);
    method @Deprecated public void append(org.apache.http.util.CharArrayBuffer);
    method @Deprecated public void append(char);
    method @Deprecated public void append(byte[], int, int);
    method @Deprecated public void append(org.apache.http.util.ByteArrayBuffer, int, int);
    method @Deprecated public void append(Object);
    method @Deprecated public char[] buffer();
    method @Deprecated public int capacity();
    method @Deprecated public char charAt(int);
    method @Deprecated public void clear();
    method @Deprecated public void ensureCapacity(int);
    method @Deprecated public int indexOf(int, int, int);
    method @Deprecated public int indexOf(int);
    method @Deprecated public boolean isEmpty();
    method @Deprecated public boolean isFull();
    method @Deprecated public int length();
    method @Deprecated public void setLength(int);
    method @Deprecated public String substring(int, int);
    method @Deprecated public String substringTrimmed(int, int);
    method @Deprecated public char[] toCharArray();
  }

  @Deprecated public final class EncodingUtils {
    method @Deprecated public static byte[] getAsciiBytes(String);
    method @Deprecated public static String getAsciiString(byte[], int, int);
    method @Deprecated public static String getAsciiString(byte[]);
    method @Deprecated public static byte[] getBytes(String, String);
    method @Deprecated public static String getString(byte[], int, int, String);
    method @Deprecated public static String getString(byte[], String);
  }

  @Deprecated public final class EntityUtils {
    method @Deprecated public static String getContentCharSet(org.apache.http.HttpEntity) throws org.apache.http.ParseException;
    method @Deprecated public static byte[] toByteArray(org.apache.http.HttpEntity) throws java.io.IOException;
    method @Deprecated public static String toString(org.apache.http.HttpEntity, String) throws java.io.IOException, org.apache.http.ParseException;
    method @Deprecated public static String toString(org.apache.http.HttpEntity) throws java.io.IOException, org.apache.http.ParseException;
  }

  @Deprecated public final class ExceptionUtils {
    method @Deprecated public static void initCause(Throwable, Throwable);
  }

  @Deprecated public final class LangUtils {
    method @Deprecated public static boolean equals(Object, Object);
    method @Deprecated public static boolean equals(Object[], Object[]);
    method @Deprecated public static int hashCode(int, int);
    method @Deprecated public static int hashCode(int, boolean);
    method @Deprecated public static int hashCode(int, Object);
    field @Deprecated public static final int HASH_OFFSET = 37; // 0x25
    field @Deprecated public static final int HASH_SEED = 17; // 0x11
  }

  @Deprecated public class VersionInfo {
    ctor @Deprecated protected VersionInfo(String, String, String, String, String);
    method @Deprecated protected static final org.apache.http.util.VersionInfo fromMap(String, java.util.Map, ClassLoader);
    method @Deprecated public final String getClassloader();
    method @Deprecated public final String getModule();
    method @Deprecated public final String getPackage();
    method @Deprecated public final String getRelease();
    method @Deprecated public final String getTimestamp();
    method @Deprecated public static final org.apache.http.util.VersionInfo[] loadVersionInfo(String[], ClassLoader);
    method @Deprecated public static final org.apache.http.util.VersionInfo loadVersionInfo(String, ClassLoader);
    field @Deprecated public static final String PROPERTY_MODULE = "info.module";
    field @Deprecated public static final String PROPERTY_RELEASE = "info.release";
    field @Deprecated public static final String PROPERTY_TIMESTAMP = "info.timestamp";
    field @Deprecated public static final String UNAVAILABLE = "UNAVAILABLE";
    field @Deprecated public static final String VERSION_PROPERTY_FILE = "version.properties";
  }

}