|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00026 require_once 'Zend/Service/DeveloperGarden/Request/VoiceButler/VoiceButlerAbstract.php'; 00027 00036 class Zend_Service_DeveloperGarden_Request_VoiceButler_CallStatus 00037 extends Zend_Service_DeveloperGarden_Request_VoiceButler_VoiceButlerAbstract 00038 { 00044 public $keepAlive = null; 00045 00054 public function __construct($environment, $sessionId, $keepAlive = null) 00055 { 00056 parent::__construct($environment); 00057 $this->setSessionId($sessionId) 00058 ->setKeepAlive($keepAlive); 00059 } 00060 00064 public function getSessionId() 00065 { 00066 return $this->sessionId; 00067 } 00068 00075 public function setSessionId($sessionId) 00076 { 00077 $this->sessionId = $sessionId; 00078 return $this; 00079 } 00080 00084 public function getKeepAlive() 00085 { 00086 return $this->keepAlive; 00087 } 00088 00095 public function setKeepAlive($keepAlive) 00096 { 00097 $this->keepAlive = $keepAlive; 00098 return $this; 00099 } 00100 }