aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/util/Store.java
blob: b19f69478514bdf66b21ffa4359f1745c572ca19 (plain)
1
2
3
4
5
6
7
8
9
package org.spongycastle.util;

import java.util.Collection;

public interface Store
{
    Collection getMatches(Selector selector)
        throws StoreException;
}