|
1 /* |
|
2 * ==================================================================== |
|
3 * |
|
4 * Licensed to the Apache Software Foundation (ASF) under one or more |
|
5 * contributor license agreements. See the NOTICE file distributed with |
|
6 * this work for additional information regarding copyright ownership. |
|
7 * The ASF licenses this file to You under the Apache License, Version 2.0 |
|
8 * (the "License"); you may not use this file except in compliance with |
|
9 * the License. You may obtain a copy of the License at |
|
10 * |
|
11 * http://www.apache.org/licenses/LICENSE-2.0 |
|
12 * |
|
13 * Unless required by applicable law or agreed to in writing, software |
|
14 * distributed under the License is distributed on an "AS IS" BASIS, |
|
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
16 * See the License for the specific language governing permissions and |
|
17 * limitations under the License. |
|
18 * ==================================================================== |
|
19 * |
|
20 * This software consists of voluntary contributions made by many |
|
21 * individuals on behalf of the Apache Software Foundation. For more |
|
22 * information on the Apache Software Foundation, please see |
|
23 * <http://www.apache.org/>. |
|
24 * |
|
25 */ |
|
26 |
|
27 package ch.boye.httpclientandroidlib.impl.client; |
|
28 |
|
29 import java.util.HashMap; |
|
30 |
|
31 import ch.boye.httpclientandroidlib.HttpHost; |
|
32 import ch.boye.httpclientandroidlib.annotation.NotThreadSafe; |
|
33 import ch.boye.httpclientandroidlib.auth.AuthScheme; |
|
34 import ch.boye.httpclientandroidlib.client.AuthCache; |
|
35 |
|
36 /** |
|
37 * Default implementation of {@link AuthCache}. |
|
38 * |
|
39 * @since 4.0 |
|
40 */ |
|
41 @NotThreadSafe |
|
42 public class BasicAuthCache implements AuthCache { |
|
43 |
|
44 private final HashMap<HttpHost, AuthScheme> map; |
|
45 |
|
46 /** |
|
47 * Default constructor. |
|
48 */ |
|
49 public BasicAuthCache() { |
|
50 super(); |
|
51 this.map = new HashMap<HttpHost, AuthScheme>(); |
|
52 } |
|
53 |
|
54 public void put(final HttpHost host, final AuthScheme authScheme) { |
|
55 if (host == null) { |
|
56 throw new IllegalArgumentException("HTTP host may not be null"); |
|
57 } |
|
58 this.map.put(host, authScheme); |
|
59 } |
|
60 |
|
61 public AuthScheme get(final HttpHost host) { |
|
62 if (host == null) { |
|
63 throw new IllegalArgumentException("HTTP host may not be null"); |
|
64 } |
|
65 return this.map.get(host); |
|
66 } |
|
67 |
|
68 public void remove(final HttpHost host) { |
|
69 if (host == null) { |
|
70 throw new IllegalArgumentException("HTTP host may not be null"); |
|
71 } |
|
72 this.map.remove(host); |
|
73 } |
|
74 |
|
75 public void clear() { |
|
76 this.map.clear(); |
|
77 } |
|
78 |
|
79 @Override |
|
80 public String toString() { |
|
81 return this.map.toString(); |
|
82 } |
|
83 |
|
84 } |