Implementing database and allowlist system

This commit is contained in:
Dawson Hessler
2021-06-18 16:37:09 -04:00
parent 09482b970b
commit 0a7c2c0207
19 changed files with 796 additions and 26 deletions
@@ -12,6 +12,20 @@ public interface VPNConfig {
List<String> getPrefixWhitelists();
boolean isDatabaseEnabled();
String getDatabaseType();
String getDatabaseName();
String getUsername();
String getPassword();
String getIp();
int getPort();
void update();
}