First draft and start of tracking for scenes, devices, activities.

Implemented Harmony activity list so far.
This commit is contained in:
Admin
2015-11-17 16:40:24 -06:00
parent 41e22ee64d
commit d8b6232ac1
8 changed files with 190 additions and 48 deletions

View File

@@ -5,6 +5,8 @@ package com.bwssystems.HABridge.dao;
public class DeviceDescriptor{
private String id;
private String name;
private String mapId;
private String mapType;
private String deviceType;
private String offUrl;
private String onUrl;
@@ -21,7 +23,23 @@ public class DeviceDescriptor{
this.name = name;
}
public String getDeviceType() {
public String getMapId() {
return mapId;
}
public void setMapId(String mapId) {
this.mapId = mapId;
}
public String getMapType() {
return mapType;
}
public void setMapType(String mapType) {
this.mapType = mapType;
}
public String getDeviceType() {
return deviceType;
}