Class X509CertStoreSelector

java.lang.Object
java.security.cert.X509CertSelector
org.bouncycastle.x509.X509CertStoreSelector
All Implemented Interfaces:
Cloneable, CertSelector, Selector

public class X509CertStoreSelector extends X509CertSelector implements Selector
Deprecated.
use the classes under org.bouncycastle.cert.selector
This class is a Selector implementation for X.509 certificates.
See Also:
  • Constructor Details

    • X509CertStoreSelector

      public X509CertStoreSelector()
      Deprecated.
  • Method Details

    • 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.
    • match

      public boolean match(Certificate cert)
      Deprecated.
      Specified by:
      match in interface CertSelector
      Overrides:
      match in class X509CertSelector
    • clone

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

      public static X509CertStoreSelector getInstance(X509CertSelector selector)
      Deprecated.
      Returns an instance of this from a X509CertSelector.
      Parameters:
      selector - A X509CertSelector instance.
      Returns:
      An instance of an X509CertStoreSelector.
      Throws:
      IllegalArgumentException - if selector is null or creation fails.