]> WPIA git - gigi.git/blob - src/club/wpia/gigi/dbObjects/Verifyable.java
upd: rename package name and all references to it
[gigi.git] / src / club / wpia / gigi / dbObjects / Verifyable.java
1 package club.wpia.gigi.dbObjects;
2
3 import club.wpia.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 }