Exemplo n.º 1
0
 /**
  * Populates the properties of the queue info instance with a 
  * ATOM ENTRY XML string. 
  * 
  * @param string $entryXml An ATOM entry based XML string.
  * 
  * @return none
  */
 public function parseXml($entryXml)
 {
     $this->_entry->parseXml($entryXml);
     $content = $this->_entry->getContent();
     if (is_null($content)) {
         $this->_queueDescription = null;
     } else {
         $this->_queueDescription = QueueDescription::create($content->getText());
     }
 }