@Override
 public void updateLightState(SetOnoffRead soor) throws Exception {
   try {
     lightDao.updateLightState(soor);
   } catch (Exception e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
   }
 }
 @Override
 public List getLightState(int featureId) throws Exception {
   List list = lightDao.getLightState(featureId);
   return list;
 }