blob: fd28b838bcd87e7864332a5c5ac521b55b4c7b14 [file] [log] [blame]
package org.bouncycastle.util;
import java.util.Collection;
public interface Store<T>
{
Collection<T> getMatches(Selector<T> selector)
throws StoreException;
}