Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateConferenceRequest.php
Go to the documentation of this file.
00001 <?php
00026 require_once 'Zend/Service/DeveloperGarden/Request/RequestAbstract.php';
00027 
00036 class Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateConferenceRequest
00037     extends Zend_Service_DeveloperGarden_Request_RequestAbstract
00038 {
00044     public $conferenceId = null;
00045 
00051     public $account = null;
00052 
00058     public $ownerId = null;
00059 
00065     public $detail = null;
00066 
00072     public $schedule = null;
00073 
00084     public function __construct($environment, $conferenceId, $ownerId = null,
00085         Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails = null,
00086         Zend_Service_DeveloperGarden_ConferenceCall_ConferenceSchedule $conferenceSchedule = null,
00087         $account = null
00088     ) {
00089         parent::__construct($environment);
00090         $this->setConferenceId($conferenceId)
00091              ->setOwnerId($ownerId)
00092              ->setDetail($conferenceDetails)
00093              ->setSchedule($conferenceSchedule)
00094              ->setAccount($account);
00095     }
00096 
00103     public function setConferenceId($conferenceId)
00104     {
00105         $this->conferenceId= $conferenceId;
00106         return $this;
00107     }
00108 
00115     public function setSchedule(
00116         Zend_Service_DeveloperGarden_ConferenceCall_ConferenceSchedule $schedule = null
00117     ) {
00118         $this->schedule = $schedule;
00119         return $this;
00120     }
00121 
00128     public function setDetail(
00129         Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $detail = null
00130     ) {
00131         $this->detail = $detail;
00132         return $this;
00133     }
00134 
00141     public function setOwnerId($ownerId = null)
00142     {
00143         $this->ownerId = $ownerId;
00144         return $this;
00145     }
00146 
00153     public function setAccount($account = null)
00154     {
00155         $this->account = $account;
00156         return $this;
00157     }
00158 }
 All Data Structures Namespaces Files Functions Variables Enumerations