public String toString() {
   Map<String, Object> properties = new HashMap<String, Object>();
   properties.putAll(controllerInfo.getProperties());
   StringBuffer buffer = new StringBuffer();
   buffer.append(properties.toString());
   buffer.append(", COMMANDS = ");
   buffer.append(super.toString());
   return buffer.toString();
 }