Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Store.java « util « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
}