mobile/android/thirdparty/ch/boye/httpclientandroidlib/impl/client/BasicAuthCache.java

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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  */
    27 package ch.boye.httpclientandroidlib.impl.client;
    29 import java.util.HashMap;
    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;
    36 /**
    37  * Default implementation of {@link AuthCache}.
    38  *
    39  * @since 4.0
    40  */
    41 @NotThreadSafe
    42 public class BasicAuthCache implements AuthCache {
    44     private final HashMap<HttpHost, AuthScheme> map;
    46     /**
    47      * Default constructor.
    48      */
    49     public BasicAuthCache() {
    50         super();
    51         this.map = new HashMap<HttpHost, AuthScheme>();
    52     }
    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     }
    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     }
    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     }
    75     public void clear() {
    76         this.map.clear();
    77     }
    79     @Override
    80     public String toString() {
    81         return this.map.toString();
    82     }
    84 }

mercurial