/zf/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateParticipantRequest.php
PHP | 138 lines | 44 code | 10 blank | 84 comment | 1 complexity | 3e46ac41c56f7725bda05e671e1e5a3b MD5 | raw file
Possible License(s): MIT, BSD-3-Clause, Apache-2.0, LGPL-2.1, LGPL-3.0, BSD-2-Clause
1<?php 2/** 3 * Zend Framework 4 * 5 * LICENSE 6 * 7 * This source file is subject to the new BSD license that is bundled 8 * with this package in the file LICENSE.txt. 9 * It is also available through the world-wide-web at this URL: 10 * http://framework.zend.com/license/new-bsd 11 * If you did not receive a copy of the license and are unable to 12 * obtain it through the world-wide-web, please send an email 13 * to license@zend.com so we can send you a copy immediately. 14 * 15 * @category Zend 16 * @package Zend_Service 17 * @subpackage DeveloperGarden 18 * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com) 19 * @license http://framework.zend.com/license/new-bsd New BSD License 20 * @version $Id: UpdateParticipantRequest.php 23775 2011-03-01 17:25:24Z ralph $ 21 */ 22 23/** 24 * @see Zend_Service_DeveloperGarden_Request_RequestAbstract 25 */ 26require_once 'Zend/Service/DeveloperGarden/Request/RequestAbstract.php'; 27 28/** 29 * @category Zend 30 * @package Zend_Service 31 * @subpackage DeveloperGarden 32 * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com) 33 * @author Marco Kaiser 34 * @license http://framework.zend.com/license/new-bsd New BSD License 35 */ 36class Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateParticipantRequest 37 extends Zend_Service_DeveloperGarden_Request_RequestAbstract 38{ 39 /** 40 * the conference id 41 * 42 * @var string 43 */ 44 public $conferenceId = null; 45 46 /** 47 * the participant id 48 * 49 * @var string 50 */ 51 public $participantId = null; 52 53 /** 54 * conference participant 55 * 56 * @var Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail 57 */ 58 public $participant = null; 59 60 /** 61 * possible action 62 * 63 * @var integer 64 */ 65 public $action = null; 66 67 /** 68 * constructor 69 * 70 * @param integer $environment 71 * @param string $conferenceId 72 * @param string $participantId 73 * @param integer $action 74 * @param Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant 75 */ 76 public function __construct($environment, $conferenceId, $participantId, 77 $action = null, 78 Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant = null 79 ) { 80 parent::__construct($environment); 81 $this->setConferenceId($conferenceId) 82 ->setParticipantId($participantId) 83 ->setAction($action) 84 ->setParticipant($participant); 85 } 86 87 /** 88 * set the conference id 89 * 90 * @param string $conferenceId 91 * @return Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateParticipantRequest 92 */ 93 public function setConferenceId($conferenceId) 94 { 95 $this->conferenceId = $conferenceId; 96 return $this; 97 } 98 99 /** 100 * set the participant id 101 * 102 * @param string $participantId 103 * @return Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateParticipantRequest 104 */ 105 public function setParticipantId($participantId) 106 { 107 $this->participantId = $participantId; 108 return $this; 109 } 110 111 /** 112 * sets new action 113 * 114 * @param integer $action 115 * @return Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateParticipantRequest 116 */ 117 public function setAction($action = null) 118 { 119 if ($action !== null) { 120 Zend_Service_DeveloperGarden_ConferenceCall::checkParticipantAction($action); 121 } 122 $this->action = $action; 123 return $this; 124 } 125 126 /** 127 * sets new participant 128 * 129 * @param Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant 130 * @return Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateParticipantRequest 131 */ 132 public function setParticipant( 133 Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant = null 134 ) { 135 $this->participant = $participant; 136 return $this; 137 } 138}