PoolKey.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. /**
  21.  * The key type for entries in a {@link PerUserPoolDataSource}.
  22.  *
  23.  * @since 2.0
  24.  */
  25. final class PoolKey implements Serializable {
  26.     private static final long serialVersionUID = 2252771047542484533L;

  27.     private final String dataSourceName;
  28.     private final String userName;

  29.     PoolKey(final String dataSourceName, final String userName) {
  30.         this.dataSourceName = dataSourceName;
  31.         this.userName = userName;
  32.     }

  33.     @Override
  34.     public boolean equals(final Object obj) {
  35.         if (this == obj) {
  36.             return true;
  37.         }
  38.         if (obj == null) {
  39.             return false;
  40.         }
  41.         if (getClass() != obj.getClass()) {
  42.             return false;
  43.         }
  44.         final PoolKey other = (PoolKey) obj;
  45.         if (!Objects.equals(dataSourceName, other.dataSourceName)) {
  46.             return false;
  47.         }
  48.         return Objects.equals(userName, other.userName);
  49.     }

  50.     @Override
  51.     public int hashCode() {
  52.         return Objects.hash(dataSourceName, userName);
  53.     }

  54.     @Override
  55.     public String toString() {
  56.         final StringBuilder sb = new StringBuilder(50);
  57.         sb.append("PoolKey(");
  58.         sb.append(dataSourceName);
  59.         sb.append(')');
  60.         return sb.toString();
  61.     }
  62. }