diff -r 000000000000 -r 4eba9c11703f web/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceTemplateParticipantRequest.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceTemplateParticipantRequest.php Mon Dec 13 18:29:26 2010 +0100 @@ -0,0 +1,90 @@ +setTemplateId($templateId) + ->setParticipantId($participantId); + } + + /** + * set the template id + * + * @param string $templateId + * @return Zend_Service_DeveloperGarden_Request_ConferenceCall_GetConferenceTemplateParticipantRequest + */ + public function setTemplateId($templateId) + { + $this->templateId = $templateId; + return $this; + } + + /** + * set the participant id + * + * @param string $participantId + * @return Zend_Service_DeveloperGarden_Request_ConferenceCall_GetConferenceTemplateParticipantRequest + */ + public function setParticipantId($participantId) + { + $this->participantId = $participantId; + return $this; + } +}