UserPassKey.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.dbcp2.datasources;

  18. import java.io.Serializable;
  19. import java.util.Objects;

  20. import org.apache.commons.pool2.KeyedObjectPool;

  21. /**
  22.  * <p>
  23.  * Holds a user name and password pair. Serves as a poolable object key for the {@link KeyedObjectPool} backing a
  24.  * {@link SharedPoolDataSource}. Two instances with the same user name are considered equal. This ensures that there
  25.  * will be only one keyed pool for each user in the pool. The password is used (along with the user name) by the
  26.  * {@code KeyedCPDSConnectionFactory} when creating new connections.
  27.  * </p>
  28.  *
  29.  * <p>
  30.  * {@link InstanceKeyDataSource#getConnection(String, String)} validates that the password used to create a connection
  31.  * matches the password provided by the client.
  32.  * </p>
  33.  *
  34.  * @since 2.0
  35.  */
  36. final class UserPassKey implements Serializable {
  37.     private static final long serialVersionUID = 5142970911626584817L;

  38.     private final CharArray name;
  39.     private final CharArray password;

  40.     UserPassKey(final CharArray userName, final CharArray userPassword) {
  41.         this.name = userName;
  42.         this.password = userPassword;
  43.     }

  44.     UserPassKey(final String userName) {
  45.         this(new CharArray(userName), CharArray.NULL);
  46.     }

  47.     UserPassKey(final String userName, final char[] password) {
  48.         this(new CharArray(userName), new CharArray(password));
  49.     }

  50.     UserPassKey(final String userName, final String userPassword) {
  51.         this(new CharArray(userName), new CharArray(userPassword));
  52.     }

  53.     /**
  54.      * Only takes the user name into account.
  55.      */
  56.     @Override
  57.     public boolean equals(final Object obj) {
  58.         if (this == obj) {
  59.             return true;
  60.         }
  61.         if (obj == null) {
  62.             return false;
  63.         }
  64.         if (getClass() != obj.getClass()) {
  65.             return false;
  66.         }
  67.         final UserPassKey other = (UserPassKey) obj;
  68.         return Objects.equals(name, other.name);
  69.     }

  70.     /**
  71.      * Gets the value of password.
  72.      *
  73.      * @return value of password.
  74.      */
  75.     String getPassword() {
  76.         return password.asString();
  77.     }

  78.     /**
  79.      * Gets the value of password.
  80.      *
  81.      * @return value of password.
  82.      */
  83.     char[] getPasswordCharArray() {
  84.         return password.get();
  85.     }

  86.     /**
  87.      * Gets the value of user name.
  88.      *
  89.      * @return value of user name.
  90.      */
  91.     String getUserName() {
  92.         return name.asString();
  93.     }

  94.     /**
  95.      * Only takes the user name into account.
  96.      */
  97.     @Override
  98.     public int hashCode() {
  99.         return Objects.hash(name);
  100.     }

  101. }