/**
  * Updates a content on the Adobe Connect server
  * @param String $sco_id
  * @param String $title
  * @param String $description
  * @throws ilAdobeConnectDuplicateContentException
  */
 public function updateContent($sco_id, $title, $description)
 {
     $session = $this->xmlApi->getBreezeSession();
     if ($session != NULL && $this->xmlApi->login($this->adminLogin, $this->adminPass, $session)) {
         $this->xmlApi->updateContent($sco_id, $title, $description, $session);
     }
 }