Interface additions and global changes to allow config to be modified

This commit is contained in:
Dave
2014-12-21 16:35:21 +02:00
parent 902a00d625
commit 219253c518
4 changed files with 77 additions and 36 deletions

View 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;
}