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