/**
  * Gets a JSON-formatted list of the Feature Recognition Methods which have
  * associated events for the requested time window, sorted by event type
  *
  * @return void
  */
 public function getFRMs()
 {
     include_once HV_ROOT_DIR . '/../src/Event/HEKAdapter.php';
     $hek = new Event_HEKAdapter();
     header('Content-type: application/json');
     echo $hek->getFRMs($this->_params['startTime'], $this->_params['endTime']);
 }