Interface additions and global changes to allow config to be modified
This commit is contained in:
14
src/nodash/core/NoConfigInterface.java
Normal file
14
src/nodash/core/NoConfigInterface.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package nodash.core;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import javax.crypto.SecretKey;
|
||||
|
||||
public interface NoConfigInterface {
|
||||
public void construct();
|
||||
public SecretKey getSecretKey();
|
||||
public boolean saveDatabase();
|
||||
public boolean saveByteSets();
|
||||
public void saveNoConfig();
|
||||
public NoConfigInterface loadNoConfig() throws IOException;
|
||||
}
|
||||
Reference in New Issue
Block a user