|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.digt.trusted.jce.provider.CAPICertStore
public class CAPICertStore
Constructor Summary | |
---|---|
|
CAPICertStore()
|
protected |
CAPICertStore(java.security.cert.CertStoreSpi storeSpi,
java.security.Provider provider,
java.lang.String type,
java.security.cert.CertStoreParameters params,
java.util.Collection certs,
java.util.Collection crls)
Creates a CertStore object of the given type, and
encapsulates the given provider implementation (SPI object) in it. |
Method Summary | |
---|---|
java.util.Collection |
getAllCertificates()
|
java.util.Collection |
getAllCRLs()
|
java.util.Collection |
getCertificates(java.security.cert.CertSelector selector)
Returns a Collection of Certificate s that
match the specified selector. |
java.security.cert.CertStoreParameters |
getCertStoreParameters()
Returns the parameters used to initialize this CertStore . |
java.util.Collection |
getCRLs(java.security.cert.CRLSelector selector)
Returns a Collection of CRL s that
match the specified selector. |
static java.lang.String |
getDefaultType()
Returns the default CertStore type as specified in the
Java security properties file, or the string "LDAP" if no
such property exists. |
CAPICertStore |
getInstance(java.lang.String type,
java.security.cert.CertStoreParameters params)
Returns a GOSTCertStore object that implements the specified
GOSTCertStore type and is initialized with the specified
parameters. |
java.security.Provider |
getProvider()
Returns the provider of this CertStore . |
java.lang.String |
getType()
Returns the type of this CertStore . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CAPICertStore()
protected CAPICertStore(java.security.cert.CertStoreSpi storeSpi, java.security.Provider provider, java.lang.String type, java.security.cert.CertStoreParameters params, java.util.Collection certs, java.util.Collection crls)
CertStore
object of the given type, and
encapsulates the given provider implementation (SPI object) in it.
storeSpi
- the provider implementationprovider
- the providertype
- the typeparams
- the initialization parameters (may be null
)Method Detail |
---|
public final java.util.Collection getCertificates(java.security.cert.CertSelector selector) throws java.security.cert.CertStoreException
Collection
of Certificate
s that
match the specified selector. If no Certificate
s
match the selector, an empty Collection
will be returned.CertStore
types, the resulting
Collection
may not contain all of the
Certificate
s that match the selector. For instance,
an LDAP CertStore
may not search all entries in the
directory. Instead, it may just search entries that are likely to
contain the Certificate
s it is looking for.CertStore
implementations (especially LDAP
CertStore
s) may throw a CertStoreException
unless a non-null CertSelector
is provided that
includes specific criteria that can be used to find the certificates.
Issuer and/or subject names are especially useful criteria.
selector
- A CertSelector
used to select which
Certificate
s should be returned. Specify null
to return all Certificate
s (if supported).
Collection
of Certificate
s that
match the specified selector (never null
)
java.security.cert.CertStoreException
- if an exception occurspublic final java.util.Collection getAllCertificates()
public final java.util.Collection getCRLs(java.security.cert.CRLSelector selector) throws java.security.cert.CertStoreException
Collection
of CRL
s that
match the specified selector. If no CRL
s
match the selector, an empty Collection
will be returned.CertStore
types, the resulting
Collection
may not contain all of the
CRL
s that match the selector. For instance,
an LDAP CertStore
may not search all entries in the
directory. Instead, it may just search entries that are likely to
contain the CRL
s it is looking for.CertStore
implementations (especially LDAP
CertStore
s) may throw a CertStoreException
unless a non-null CRLSelector
is provided that
includes specific criteria that can be used to find the CRLs.
Issuer names and/or the certificate to be checked are especially useful.
selector
- A CRLSelector
used to select which
CRL
s should be returned. Specify null
to return all CRL
s (if supported).
Collection
of CRL
s that
match the specified selector (never null
)
java.security.cert.CertStoreException
- if an exception occurspublic final java.util.Collection getAllCRLs() throws java.security.cert.CertStoreException
java.security.cert.CertStoreException
public CAPICertStore getInstance(java.lang.String type, java.security.cert.CertStoreParameters params) throws java.security.NoSuchAlgorithmException, java.io.IOException
GOSTCertStore
object that implements the specified
GOSTCertStore
type and is initialized with the specified
parameters.GOSTCertStore
type, an instance of
GOSTCertStore
containing that implementation is returned.
If the requested type is not available in the default package, other
packages are searched.GOSTCertStore
that is returned is initialized with the
specified CertStoreParameters
. The type of parameters
needed may vary between different types of CertStore
s.
Note that the specified CertStoreParameters
object is
cloned.
type
- the name of the requested CertStore
typeparams
- the initialization parameters (may be null
)
CertStore
object that implements the specified
CertStore
type
java.security.NoSuchAlgorithmException
- if the requested type is not
available in the default provider package or any of the other provider
packages that were searched
java.io.IOException
public final java.security.cert.CertStoreParameters getCertStoreParameters()
CertStore
.
Note that the CertStoreParameters
object is cloned before
it is returned.
CertStore
(may be null
)public final java.lang.String getType()
CertStore
.
CertStore
public final java.security.Provider getProvider()
CertStore
.
CertStore
public static final java.lang.String getDefaultType()
CertStore
type as specified in the
Java security properties file, or the string "LDAP" if no
such property exists. The Java security properties file is located in
the file named <JAVA_HOME>/lib/security/java.security, where
<JAVA_HOME> refers to the directory where the SDK was installed.CertStore
type can be used by applications
that do not want to use a hard-coded type when calling one of the
getInstance
methods, and want to provide a default
CertStore
type in case a user does not specify its own.CertStore
type can be changed by setting
the value of the "certstore.type" security property (in the Java
security properties file) to the desired type.
CertStore
type as specified in the
Java security properties file, or the string "LDAP"
if no such property exists.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |