/**
  *  Add a new participant to the meeting
  * @param String $login
  * @param String $status
  *
  * @return boolean Returns true if everything is ok
  */
 public function addSwitchParticipant($login, $status)
 {
     $session = $this->xmlApi->getBreezeSession();
     $participant = $this->xmlApi->updateMeetingParticipantByTechnicalUser($this->getScoId(), $login, $session, $status);
     return $participant;
 }