Home | History | Annotate | Download | only in util
      1 package org.bouncycastle.util;
      2 
      3 import java.util.Collection;
      4 
      5 public interface Store
      6 {
      7     Collection getMatches(Selector selector)
      8         throws StoreException;
      9 }
     10