Start adding new Bearer Token for Home Assistant

This commit is contained in:
BWS Systems
2019-06-13 15:51:49 -05:00
parent 7d920d3885
commit bfd1b94473
4 changed files with 79 additions and 38 deletions

View File

@@ -0,0 +1,13 @@
package com.bwssystems.HABridge.plugins.hass;
public class HassAuth {
boolean legacyauth;
public boolean isLegacyauth() {
return legacyauth;
}
public void setLegacyauth(boolean legacyauth) {
this.legacyauth = legacyauth;
}
}