Update application from amazon-echo-bridge-compact to ha-bridge.

Try to remove most code naming away from amazon.

Fix package names being incorrect.

Added Vera query functionality, needs some fine tuning.
This commit is contained in:
Admin
2015-08-12 16:44:48 -05:00
parent 3911f802ee
commit f8bebe38c0
17 changed files with 398 additions and 164 deletions

View File

@@ -0,0 +1,20 @@
package com.bwssystems.HABridge.api.hue;
import java.util.Map;
import com.bwssystems.HABridge.api.hue.DeviceResponse;
/**
* Created by arm on 4/14/15.
*/
public class HueApiResponse {
private Map<String, DeviceResponse> lights;
public Map<String, DeviceResponse> getLights() {
return lights;
}
public void setLights(Map<String, DeviceResponse> lights) {
this.lights = lights;
}
}