Update for start of virtualize multiple respnses

This commit is contained in:
Admin
2015-11-19 16:43:30 -06:00
parent 314ae58ebd
commit feef345a3b
4 changed files with 10 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ public class BridgeSettings {
private String harmonyaddress;
private String harmonyuser;
private String harmonypwd;
private Integer upnpresponsedevices;
private boolean upnpstrict;
private boolean traceupnp;
private boolean devmode;
@@ -61,6 +62,12 @@ public class BridgeSettings {
public void setHarmonyPwd(String harmonypwd) {
this.harmonypwd = harmonypwd;
}
public Integer getUpnpResponseDevices() {
return upnpresponsedevices;
}
public void setUpnpResponseDevices(Integer upnpresponsedevices) {
this.upnpresponsedevices = upnpresponsedevices;
}
public boolean isUpnpStrict() {
return upnpstrict;
}