Class AttributeCertificateIssuer

java.lang.Object
org.bouncycastle.x509.AttributeCertificateIssuer
All Implemented Interfaces:
Cloneable, CertSelector, Selector

public class AttributeCertificateIssuer extends Object implements CertSelector, Selector
Deprecated.
use org.bouncycastle.cert.AttributeCertificateIssuer
Carrying class for an attribute certificate issuer.
  • Constructor Details

    • AttributeCertificateIssuer

      public AttributeCertificateIssuer(AttCertIssuer issuer)
      Deprecated.
      Set the issuer directly with the ASN.1 structure.
      Parameters:
      issuer - The issuer
    • AttributeCertificateIssuer

      public AttributeCertificateIssuer(X500Principal principal) throws IOException
      Deprecated.
      Throws:
      IOException
    • AttributeCertificateIssuer

      public AttributeCertificateIssuer(X509Principal principal)
      Deprecated.
  • Method Details

    • getPrincipals

      public Principal[] getPrincipals()
      Deprecated.
      Return any principal objects inside the attribute certificate issuer object.
      Returns:
      an array of Principal objects (usually X500Principal)
    • clone

      public Object clone()
      Deprecated.
      Specified by:
      clone in interface CertSelector
      Specified by:
      clone in interface Selector
      Overrides:
      clone in class Object
    • match

      public boolean match(Certificate cert)
      Deprecated.
      Specified by:
      match in interface CertSelector
    • equals

      public boolean equals(Object obj)
      Deprecated.
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Deprecated.
      Overrides:
      hashCode in class Object
    • match

      public boolean match(Object obj)
      Deprecated.
      Description copied from interface: Selector
      Match the passed in object, returning true if it would be selected by this selector, false otherwise.
      Specified by:
      match in interface Selector
      Parameters:
      obj - the object to be matched.
      Returns:
      true if the object is a match for this selector, false otherwise.