1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-12-16 09:11:08 +01:00
This commit is contained in:
Paul Schaub 2022-02-03 14:38:08 +01:00
parent 3ba57109a1
commit ddcd4bff00
17 changed files with 478 additions and 189 deletions

View file

@ -4,6 +4,8 @@
package pgp.certificate_store;
import java.io.IOException;
/**
* Merge a given certificate (update) with an existing certificate.
*/
@ -18,6 +20,6 @@ public interface MergeCallback {
* @param existing optional already existing copy of the certificate
* @return merged certificate
*/
Certificate merge(Certificate data, Certificate existing);
Certificate merge(Certificate data, Certificate existing) throws IOException;
}