View Javadoc
1   package org.eclipse.aether.util.repository;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   * 
12   *  http://www.apache.org/licenses/LICENSE-2.0
13   * 
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import java.util.Map;
23  import static java.util.Objects.requireNonNull;
24  
25  import org.eclipse.aether.repository.Authentication;
26  import org.eclipse.aether.repository.AuthenticationContext;
27  import org.eclipse.aether.repository.AuthenticationDigest;
28  
29  /**
30   * Authentication block that manages a single authentication key and its string value.
31   */
32  final class StringAuthentication
33      implements Authentication
34  {
35  
36      private final String key;
37  
38      private final String value;
39  
40      public StringAuthentication( String key, String value )
41      {
42          this.key = requireNonNull( key, "authentication key cannot be null" );
43          if ( key.length() == 0 )
44          {
45              throw new IllegalArgumentException( "authentication key cannot be empty" );
46          }
47          this.value = value;
48      }
49  
50      public void fill( AuthenticationContext context, String key, Map<String, String> data )
51      {
52          context.put( this.key, value );
53      }
54  
55      public void digest( AuthenticationDigest digest )
56      {
57          digest.update( key, value );
58      }
59  
60      @Override
61      public boolean equals( Object obj )
62      {
63          if ( this == obj )
64          {
65              return true;
66          }
67          if ( obj == null || !getClass().equals( obj.getClass() ) )
68          {
69              return false;
70          }
71          StringAuthentication that = (StringAuthentication) obj;
72          return eq( key, that.key ) && eq( value, that.value );
73      }
74  
75      private static <T> boolean eq( T s1, T s2 )
76      {
77          return s1 != null ? s1.equals( s2 ) : s2 == null;
78      }
79  
80      @Override
81      public int hashCode()
82      {
83          int hash = 17;
84          hash = hash * 31 + key.hashCode();
85          hash = hash * 31 + ( ( value != null ) ? value.hashCode() : 0 );
86          return hash;
87      }
88  
89      @Override
90      public String toString()
91      {
92          return key + "=" + value;
93      }
94  
95  }