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