0N/A/*
2362N/A * Copyright (c) 2000, 2001, 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 java.security.cert;
0N/A
0N/A/**
0N/A * Parameters used as input for the LDAP <code>CertStore</code> algorithm.
0N/A * <p>
0N/A * This class is used to provide necessary configuration parameters (server
0N/A * name and port number) to implementations of the LDAP <code>CertStore</code>
0N/A * algorithm.
0N/A * <p>
0N/A * <b>Concurrent Access</b>
0N/A * <p>
0N/A * Unless otherwise specified, the methods defined in this class are not
0N/A * thread-safe. Multiple threads that need to access a single
0N/A * object concurrently should synchronize amongst themselves and
0N/A * provide the necessary locking. Multiple threads each manipulating
0N/A * separate objects need not synchronize.
0N/A *
0N/A * @since 1.4
0N/A * @author Steve Hanna
0N/A * @see CertStore
0N/A */
0N/Apublic class LDAPCertStoreParameters implements CertStoreParameters {
0N/A
0N/A private static final int LDAP_DEFAULT_PORT = 389;
0N/A
0N/A /**
0N/A * the port number of the LDAP server
0N/A */
0N/A private int port;
0N/A
0N/A /**
0N/A * the DNS name of the LDAP server
0N/A */
0N/A private String serverName;
0N/A
0N/A /**
0N/A * Creates an instance of <code>LDAPCertStoreParameters</code> with the
0N/A * specified parameter values.
0N/A *
0N/A * @param serverName the DNS name of the LDAP server
0N/A * @param port the port number of the LDAP server
0N/A * @exception NullPointerException if <code>serverName</code> is
0N/A * <code>null</code>
0N/A */
0N/A public LDAPCertStoreParameters(String serverName, int port) {
0N/A if (serverName == null)
0N/A throw new NullPointerException();
0N/A this.serverName = serverName;
0N/A this.port = port;
0N/A }
0N/A
0N/A /**
0N/A * Creates an instance of <code>LDAPCertStoreParameters</code> with the
0N/A * specified server name and a default port of 389.
0N/A *
0N/A * @param serverName the DNS name of the LDAP server
0N/A * @exception NullPointerException if <code>serverName</code> is
0N/A * <code>null</code>
0N/A */
0N/A public LDAPCertStoreParameters(String serverName) {
0N/A this(serverName, LDAP_DEFAULT_PORT);
0N/A }
0N/A
0N/A /**
0N/A * Creates an instance of <code>LDAPCertStoreParameters</code> with the
0N/A * default parameter values (server name "localhost", port 389).
0N/A */
0N/A public LDAPCertStoreParameters() {
0N/A this("localhost", LDAP_DEFAULT_PORT);
0N/A }
0N/A
0N/A /**
0N/A * Returns the DNS name of the LDAP server.
0N/A *
0N/A * @return the name (not <code>null</code>)
0N/A */
0N/A public String getServerName() {
0N/A return serverName;
0N/A }
0N/A
0N/A /**
0N/A * Returns the port number of the LDAP server.
0N/A *
0N/A * @return the port number
0N/A */
0N/A public int getPort() {
0N/A return port;
0N/A }
0N/A
0N/A /**
0N/A * Returns a copy of this object. Changes to the copy will not affect
0N/A * the original and vice versa.
0N/A * <p>
0N/A * Note: this method currently performs a shallow copy of the object
0N/A * (simply calls <code>Object.clone()</code>). This may be changed in a
0N/A * future revision to perform a deep copy if new parameters are added
0N/A * that should not be shared.
0N/A *
0N/A * @return the copy
0N/A */
0N/A public Object clone() {
0N/A try {
0N/A return super.clone();
0N/A } catch (CloneNotSupportedException e) {
0N/A /* Cannot happen */
0N/A throw new InternalError(e.toString());
0N/A }
0N/A }
0N/A
0N/A /**
0N/A * Returns a formatted string describing the parameters.
0N/A *
0N/A * @return a formatted string describing the parameters
0N/A */
0N/A public String toString() {
0N/A StringBuffer sb = new StringBuffer();
0N/A sb.append("LDAPCertStoreParameters: [\n");
0N/A
0N/A sb.append(" serverName: " + serverName + "\n");
0N/A sb.append(" port: " + port + "\n");
0N/A sb.append("]");
0N/A return sb.toString();
0N/A }
0N/A}