API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.security.cert. X509CRLSelector View Source
Author(s)
Steve Hanna
Since
1.4
Version
1.17 11/17/05
Serial
Hierarchy
 Object
      X509CRLSelector
Implements
 CRLSelector
Subclasses
Description
public class X509CRLSelector
  A CRLSelector that selects X509CRLs that match all specified criteria.
See also:    CRLSelector X509CRL
Constructors
public X509CRLSelector ()
  Creates an X509CRLSelector.
Methods
Hide/Show inherited methods
public void addIssuer (X500Principal issuer)
  Adds a name to the issuerNames criterion.
public void addIssuerName (byte[] name) throws IOException
  Adds a name to the issuerNames criterion.
public void addIssuerName (String name) throws IOException
public Object clone () [Specified in CRLSelector]
  Returns a copy of this object.
public X509Certificate getCertificateChecking ()
  Returns the certificate being checked.
public Date getDateAndTime ()
  Returns the dateAndTime criterion.
public Collection<Object> getIssuerNames ()
  Returns a copy of the issuerNames criterion.
public Collection<X500Principal> getIssuers ()
  Returns the issuerNames criterion.
public BigInteger getMaxCRL ()
  Returns the maxCRLNumber criterion.
public BigInteger getMinCRL ()
  Returns the minCRLNumber criterion.
public boolean match (CRL crl) [Specified in CRLSelector]
  Decides whether a CRL should be selected.
public void setCertificateChecking (X509Certificate cert)
  Sets the certificate being checked.
public void setDateAndTime (Date dateAndTime)
  Sets the dateAndTime criterion.
public void setIssuerNames (Collection<Object> names) throws IOException
  Note: use X509CRLSelector.setIssuers(Collection) instead or only specify the byte array form of distinguished names when using this method.
public void setIssuers (Collection<X500Principal> issuers)
  Sets the issuerNames criterion.
public void setMaxCRLNumber (BigInteger maxCRL)
  Sets the maxCRLNumber criterion.
public void setMinCRLNumber (BigInteger minCRL)
  Sets the minCRLNumber criterion.
public String toString ()
  Returns a printable representation of the X509CRLSelector.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar