Finished coding need to test.

This commit is contained in:
Admin
2015-11-02 16:46:48 -06:00
parent bf5ad2e23c
commit 408b79d5d8
8 changed files with 148 additions and 30 deletions

View File

@@ -12,6 +12,7 @@ public class BridgeSettings {
private boolean upnpstrict;
private boolean traceupnp;
private boolean vtwocompatibility;
private boolean devmode;
public String getUpnpConfigAddress() {
return upnpconfigaddress;
@@ -82,6 +83,12 @@ public class BridgeSettings {
this.vtwocompatibility = vtwocompatibility;
}
public boolean isDevMode() {
return devmode;
}
public void setDevMode(boolean devmode) {
this.devmode = devmode;
}
public Boolean isValidVera() {
if(this.veraaddress.contains(Configuration.DEFAULT_VERA_ADDRESS))
return false;