0N/A/*
2362N/A * Copyright (c) 2002, 2005, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage com.sun.jndi.ldap;
0N/A
0N/Aimport java.util.Arrays; // JDK1.2
0N/Aimport java.io.OutputStream;
0N/Aimport javax.naming.ldap.Control;
0N/A
0N/A/**
0N/A * Represents the identity of a 'simple' authenticated LDAP connection.
0N/A * In addition to ClientId information, this class contains also the
0N/A * username and password.
0N/A *
0N/A * @author Rosanna Lee
0N/A */
0N/Aclass SimpleClientId extends ClientId {
0N/A final private String username;
0N/A final private Object passwd;
0N/A final private int myHash;
0N/A
0N/A SimpleClientId(int version, String hostname, int port,
0N/A String protocol, Control[] bindCtls, OutputStream trace,
0N/A String socketFactory, String username, Object passwd) {
0N/A
0N/A super(version, hostname, port, protocol, bindCtls, trace,
0N/A socketFactory);
0N/A
0N/A this.username = username;
0N/A if (passwd == null) {
0N/A this.passwd = null;
0N/A } else if (passwd instanceof String) {
0N/A this.passwd = passwd;
0N/A } else if (passwd instanceof byte[]) {
0N/A this.passwd = (byte[]) ((byte[])passwd).clone();
0N/A } else if (passwd instanceof char[]) {
0N/A this.passwd = (char[]) ((char[])passwd).clone();
0N/A } else {
0N/A this.passwd = passwd;
0N/A }
0N/A
0N/A myHash = super.hashCode()
0N/A + (username != null ? username.hashCode() : 0)
0N/A + (passwd != null ? passwd.hashCode() : 0);
0N/A }
0N/A
0N/A public boolean equals(Object obj) {
0N/A if (obj == null || !(obj instanceof SimpleClientId)) {
0N/A return false;
0N/A }
0N/A
0N/A SimpleClientId other = (SimpleClientId)obj;
0N/A
0N/A return super.equals(obj)
0N/A && (username == other.username // null OK
0N/A || (username != null && username.equals(other.username)))
0N/A && ((passwd == other.passwd) // null OK
0N/A || (passwd != null && other.passwd != null
0N/A && (((passwd instanceof String) && passwd.equals(other.passwd))
0N/A || ((passwd instanceof byte[])
0N/A && (other.passwd instanceof byte[])
0N/A && Arrays.equals((byte[])passwd, (byte[])other.passwd))
0N/A || ((passwd instanceof char[])
0N/A && (other.passwd instanceof char[])
0N/A && Arrays.equals((char[])passwd, (char[])other.passwd)))));
0N/A
0N/A }
0N/A
0N/A public int hashCode() {
0N/A return myHash;
0N/A }
0N/A
0N/A public String toString() {
0N/A return super.toString() + ":" + username; // omit password for security
0N/A }
0N/A}