diff -r 000000000000 -r 4eba9c11703f web/Zend/Service/DeveloperGarden/ConferenceCall/ConferenceDetail.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/Zend/Service/DeveloperGarden/ConferenceCall/ConferenceDetail.php Mon Dec 13 18:29:26 2010 +0100 @@ -0,0 +1,129 @@ +setName($name); + $this->setDescription($description); + $this->setDuration($duration); + } + + /** + * sets new duration for this conference in seconds + * + * @param integer $duration + * @return Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail + */ + public function setDuration($duration) + { + $this->duration = $duration; + return $this; + } + + /** + * @return string + */ + public function getDuration() + { + return $this->duration; + } + + /** + * set the description of this conference + * + * @param $description the $description to set + * @return Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail + */ + public function setDescription($description) + { + $this->description = $description; + return $this; + } + + /** + * @return string + */ + public function getDescription() + { + return $this->description; + } + + /** + * sets the name of this conference + * + * @param string $name + * @return Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail + */ + public function setName($name) + { + $this->name = $name; + return $this; + } + + /** + * @return string + */ + public function getName() + { + return $this->name; + } +}