Class LDAPCertStoreParameters
- All Implemented Interfaces:
Cloneable, CertStoreParameters
CertStore algorithm.
This class is used to provide necessary configuration parameters (server
name and port number) to implementations of the LDAP CertStore
algorithm. However, if you are retrieving certificates or CRLs from
an ldap URI as specified by RFC 5280, use the
URICertStoreParameters
instead, as the URI may contain additional information such as the
distinguished name that will help the LDAP CertStore find the specific
certificates and CRLs.
Concurrent Access
Unless otherwise specified, the methods defined in this class are not thread-safe. Multiple threads that need to access a single object concurrently should synchronize amongst themselves and provide the necessary locking. Multiple threads each manipulating separate objects need not synchronize.
- Since:
- 1.4
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance ofLDAPCertStoreParameterswith the default parameter values (server name "localhost", port 389).LDAPCertStoreParameters(String serverName) Creates an instance ofLDAPCertStoreParameterswith the specified server name and a default port of 389.LDAPCertStoreParameters(String serverName, int port) Creates an instance ofLDAPCertStoreParameterswith the specified parameter values. -
Method Summary
Methods declared in class Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionbooleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
LDAPCertStoreParameters
Creates an instance ofLDAPCertStoreParameterswith the specified parameter values.- Parameters:
serverName- the DNS name of the LDAP serverport- the port number of the LDAP server- Throws:
NullPointerException- ifserverNameisnull
-
LDAPCertStoreParameters
Creates an instance ofLDAPCertStoreParameterswith the specified server name and a default port of 389.- Parameters:
serverName- the DNS name of the LDAP server- Throws:
NullPointerException- ifserverNameisnull
-
LDAPCertStoreParameters
public LDAPCertStoreParameters()Creates an instance ofLDAPCertStoreParameterswith the default parameter values (server name "localhost", port 389).
-
-
Method Details
-
getServerName
-
getPort
public int getPort()Returns the port number of the LDAP server.- Returns:
- the port number
-
clone
Returns a copy of this object. Changes to the copy will not affect the original and vice versa.Note: this method currently performs a shallow copy of the object (simply calls
Object.clone()). This may be changed in a future revision to perform a deep copy if new parameters are added that should not be shared.- Specified by:
clonein interfaceCertStoreParameters- Overrides:
clonein classObject- Returns:
- the copy
- See Also:
-
toString
-