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 java.util.Objects;
24  
25  import static java.util.Objects.requireNonNull;
26  
27  import org.eclipse.aether.repository.Authentication;
28  import org.eclipse.aether.repository.AuthenticationContext;
29  import org.eclipse.aether.repository.AuthenticationDigest;
30  
31  /**
32   * Authentication block that manages a single authentication key and its string value.
33   */
34  final class StringAuthentication
35      implements Authentication
36  {
37  
38      private final String key;
39  
40      private final String value;
41  
42      StringAuthentication( String key, String value )
43      {
44          this.key = requireNonNull( key, "authentication key cannot be null" );
45          if ( key.length() == 0 )
46          {
47              throw new IllegalArgumentException( "authentication key cannot be empty" );
48          }
49          this.value = value;
50      }
51  
52      public void fill( AuthenticationContext context, String key, Map<String, String> data )
53      {
54          context.put( this.key, value );
55      }
56  
57      public void digest( AuthenticationDigest digest )
58      {
59          digest.update( key, value );
60      }
61  
62      @Override
63      public boolean equals( Object obj )
64      {
65          if ( this == obj )
66          {
67              return true;
68          }
69          if ( obj == null || !getClass().equals( obj.getClass() ) )
70          {
71              return false;
72          }
73          StringAuthentication that = (StringAuthentication) obj;
74          return Objects.equals( key, that.key )
75                  && Objects.equals( value, that.value );
76      }
77  
78      @Override
79      public int hashCode()
80      {
81          int hash = 17;
82          hash = hash * 31 + key.hashCode();
83          hash = hash * 31 + ( ( value != null ) ? value.hashCode() : 0 );
84          return hash;
85      }
86  
87      @Override
88      public String toString()
89      {
90          return key + "=" + value;
91      }
92  
93  }