Interface PKIXCRLStore<T extends CRL>

Type Parameters:
T - the CRL type.
All Superinterfaces:
Store<T>

public interface PKIXCRLStore<T extends CRL> extends Store<T>
Generic interface for a PKIX based CRL store.
  • Method Summary

    Modifier and Type
    Method
    Description
    getMatches(Selector<T> selector)
    Return the matches associated with the passed in selector.
  • Method Details

    • getMatches

      Collection<T> getMatches(Selector<T> selector) throws StoreException
      Return the matches associated with the passed in selector.
      Specified by:
      getMatches in interface Store<T extends CRL>
      Parameters:
      selector - the selector defining the match criteria.
      Returns:
      a collection of matches with the selector, an empty selector if there are none.
      Throws:
      StoreException - in the event of an issue doing a match.