]> WPIA git - gigi.git/blob - src/org/cacert/gigi/dbObjects/Verifyable.java
fix: ResultSet.getDate is often wrong as it fetches day-precision times
[gigi.git] / src / org / cacert / gigi / dbObjects / Verifyable.java
1 package org.cacert.gigi.dbObjects;
2
3 import org.cacert.gigi.GigiApiException;
4
5 public interface Verifyable {
6
7     public void verify(String hash) throws GigiApiException;
8
9     public boolean isVerifyable(String hash) throws GigiApiException;
10
11 }