Renamed interface and base implementation, changed methods from static
This commit is contained in:
15
src/nodash/core/spheres/NoHashSphereInterface.java
Normal file
15
src/nodash/core/spheres/NoHashSphereInterface.java
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user