Organize cert-d-java classes in packages

This commit is contained in:
Paul Schaub 2022-08-11 21:50:02 +02:00
parent 7cc0ef5037
commit f91c5065fc
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
19 changed files with 56 additions and 10 deletions

View file

@ -11,7 +11,7 @@ import java.util.HashSet;
import java.util.List;
import java.util.Set;
import pgp.cert_d.SubkeyLookup;
import pgp.cert_d.subkey_lookup.SubkeyLookup;
public class DatabaseSubkeyLookup implements SubkeyLookup {

View file

@ -3,6 +3,6 @@
// SPDX-License-Identifier: Apache-2.0
/**
* Implementation of a {@link pgp.cert_d.SubkeyLookup} mechanism using an SQLite Database.
* Implementation of a {@link pgp.cert_d.subkey_lookup.SubkeyLookup} mechanism using an SQLite Database.
*/
package pgp.cert_d.jdbc.sqlite;