java.lang.Objectjava.security.cert.CollectionCertStoreParameters
All Implemented Interfaces:
CertStoreParameters
CertStore
algorithm.
This class is used to provide necessary configuration parameters
to implementations of the Collection CertStore
algorithm. The only parameter included in this class is the
Collection
from which the CertStore
will
retrieve 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.
1.4
- Steve
- HannaConstructor: |
---|
CollectionCertStoreParameters with
the default parameter values (an empty and immutable
Collection ). |
CollectionCertStoreParameters
which will allow certificates and CRLs to be retrieved from the
specified Collection . If the specified
Collection contains an object that is not a
Certificate or CRL , that object will be
ignored by the Collection CertStore .
The
If the
|
Method from java.security.cert.CollectionCertStoreParameters Summary: |
---|
clone, getCollection, toString |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from java.security.cert.CollectionCertStoreParameters Detail: |
---|
Collection is copied, and not the contents. |
Collection from which Certificate s
and CRL s are retrieved. This is not a copy of the
Collection , it is a reference. This allows the caller to
subsequently add or remove Certificates or
CRL s from the Collection . |
|