Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
java.security.cert.CertSelector

Uses of CertSelector in java.security.cert
 

Classes in java.security.cert that implement CertSelector
 class X509CertSelector
          A concrete implementation of CertSelector for X.509 certificates, which allows a number of criteria to be set when accepting certificates, from validity dates, to issuer and subject distinguished names, to some of the various X.509 extensions.
 

Fields in java.security.cert declared as CertSelector
private  CertSelector PKIXParameters.targetConstraints
          The target constraints.
 

Methods in java.security.cert that return CertSelector
 CertSelector PKIXParameters.getTargetCertConstraints()
          Returns the constraints placed on the target certificate, or null if there are none.
 

Methods in java.security.cert with parameters of type CertSelector
 void PKIXParameters.setTargetCertConstraints(CertSelector targetConstraints)
          Sets the constraints placed on the target certificate.
abstract  java.util.Collection CertStoreSpi.engineGetCertificates(CertSelector selector)
          Get the certificates from this store, filtering them through the specified CertSelector.
 java.util.Collection CertStore.getCertificates(CertSelector selector)
          Get a collection of certificates from this CertStore, optionally filtered by the specified CertSelector.
 

Constructors in java.security.cert with parameters of type CertSelector
PKIXBuilderParameters(java.security.KeyStore keystore, CertSelector targetConstraints)
          Create a new PKIXBuilderParameters object, populating the trusted certificates set with all X.509 certificates found in the given key store.
PKIXBuilderParameters(java.util.Set trustAnchors, CertSelector targetConstraints)
          Create a new PKIXBuilderParameters object, populating the trusted certificates set with the elements of the given set, each of which must be a TrustAnchor.