Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Service/DeveloperGarden/Request/ConferenceCall/CreateConferenceRequest.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_CreateConferenceRequest
00037     extends Zend_Service_DeveloperGarden_Request_RequestAbstract
00038 {
00044     public $account = null;
00045 
00051     public $ownerId = null;
00052 
00058     public $detail = null;
00059 
00065     public $schedule = null;
00066 
00076     public function __construct($environment, $ownerId,
00077         Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails,
00078         Zend_Service_DeveloperGarden_ConferenceCall_ConferenceSchedule $conferenceSchedule = null,
00079         $account = null
00080     ) {
00081         parent::__construct($environment);
00082         $this->setOwnerId($ownerId)
00083              ->setDetail($conferenceDetails)
00084              ->setSchedule($conferenceSchedule)
00085              ->setAccount($account);
00086     }
00087 
00094     public function setSchedule(
00095         Zend_Service_DeveloperGarden_ConferenceCall_ConferenceSchedule $schedule = null
00096     ) {
00097         $this->schedule = $schedule;
00098         return $this;
00099     }
00100 
00107     public function setDetail(Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $detail)
00108     {
00109         $this->detail = $detail;
00110         return $this;
00111     }
00112 
00119     public function setOwnerId($ownerId)
00120     {
00121         $this->ownerId = $ownerId;
00122         return $this;
00123     }
00124 
00131     public function setAccount($account = null)
00132     {
00133         $this->account = $account;
00134         return $this;
00135     }
00136 }
 All Data Structures Namespaces Files Functions Variables Enumerations