java.security.cert
Class X509CRLSelector
java.lang.Object
java.security.cert.X509CRLSelector
- All Implemented Interfaces:
- Cloneable, CRLSelector
public class X509CRLSelector
- extends Object
- implements CRLSelector
X509CRLSelector
public X509CRLSelector()
setIssuers
public void setIssuers(Collection<X500Principal> issuers)
setIssuerNames
public void setIssuerNames(Collection<?> names)
throws IOException
- Throws:
IOException
addIssuer
public void addIssuer(X500Principal issuer)
addIssuerName
public void addIssuerName(String iss_name)
throws IOException
- Throws:
IOException
addIssuerName
public void addIssuerName(byte[] iss_name)
throws IOException
- Throws:
IOException
setMinCRLNumber
public void setMinCRLNumber(BigInteger minCRL)
setMaxCRLNumber
public void setMaxCRLNumber(BigInteger maxCRL)
setDateAndTime
public void setDateAndTime(Date dateAndTime)
setCertificateChecking
public void setCertificateChecking(X509Certificate cert)
getIssuers
public Collection<X500Principal> getIssuers()
getIssuerNames
public Collection<Object> getIssuerNames()
getMinCRL
public BigInteger getMinCRL()
getMaxCRL
public BigInteger getMaxCRL()
getDateAndTime
public Date getDateAndTime()
getCertificateChecking
public X509Certificate getCertificateChecking()
toString
public String toString()
- Description copied from class:
Object
- Returns a string containing a concise, human-readable description of the
receiver.
- Overrides:
toString in class Object
- Returns:
- String a printable representation for the receiver.
match
public boolean match(CRL crl)
- Specified by:
match in interface CRLSelector
clone
public Object clone()
- Description copied from class:
Object
- Returns a new instance of the same class as the receiver, whose slots
have been filled in with the values in the slots of the receiver.
Classes which wish to support cloning must specify that they implement
the Cloneable interface, since the implementation checks for this.
- Specified by:
clone in interface CRLSelector- Overrides:
clone in class Object
- Returns:
- Object a shallow copy of this object.
Please submit a feedback, bug or feature