Renamed interface and base implementation, changed methods from static

This commit is contained in:
Dave
2014-12-21 00:25:37 +02:00
parent c85ff25617
commit 3e671520b6
3 changed files with 34 additions and 32 deletions

View File

@@ -0,0 +1,15 @@
package nodash.core.spheres;
import java.io.IOException;
import nodash.models.NoUser;
public interface NoHashSphereInterface {
public void setup();
public void saveToFile() throws IOException;
public void addNewNoUser(NoUser user) throws IOException;
public void insertHash(String hash) throws IOException;
public void removeHash(String hash) throws IOException;
public boolean checkHash(String hash);
public int size();
}