Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Service/DeveloperGarden/Request/ConferenceCall/NewParticipantRequest.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_NewParticipantRequest
00037     extends Zend_Service_DeveloperGarden_Request_RequestAbstract
00038 {
00044     public $conferenceId = null;
00045 
00051     public $participant = null;
00052 
00060     public function __construct($environment, $conferenceId,
00061         Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant)
00062     {
00063         parent::__construct($environment);
00064         $this->setConferenceId($conferenceId)
00065              ->setParticipant($participant);
00066     }
00067 
00074     public function setConferenceId($conferenceId)
00075     {
00076         $this->conferenceId = $conferenceId;
00077         return $this;
00078     }
00079 
00086     public function setParticipant(Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant)
00087     {
00088         $this->participant = $participant;
00089         return $this;
00090     }
00091 }
 All Data Structures Namespaces Files Functions Variables Enumerations