}
// hue light are also considered as warning devices
List hueLights = fireApplication.getHueLights();
for(Iterator it = hueLights.iterator(); it.hasNext();) {
HueLightDevice hld = (HueLightDevice) it.next();
String name = hld.getName();
String id = HUE_PREFIX_ID + hld.getId();
Map properties = new HashMap();
properties.put(ID_PROP, id);
properties.put(NAME_PROP, name);
properties.put(TECHNO_PROP, HUE_TECHNO);