00001 <?php 00002 00021 // $Id: AccessKey.inc.php,v 1.7 2008/07/01 01:16:10 asmecher Exp $ 00022 00023 00024 class AccessKey extends DataObject { 00025 00026 function AccessKey() { 00027 parent::DataObject(); 00028 } 00029 00030 // 00031 // Get/set methods 00032 // 00033 00038 function getAccessKeyId() { 00039 return $this->getData('accessKeyId'); 00040 } 00041 00046 function setAccessKeyId($accessKeyId) { 00047 return $this->setData('accessKeyId', $accessKeyId); 00048 } 00049 00054 function getContext() { 00055 return $this->getData('context'); 00056 } 00057 00062 function setContext($context) { 00063 return $this->setData('context', $context); 00064 } 00065 00070 function getKeyHash() { 00071 return $this->getData('keyHash'); 00072 } 00073 00078 function setKeyHash($keyHash) { 00079 return $this->setData('keyHash', $keyHash); 00080 } 00081 00086 function getUserId() { 00087 return $this->getData('userId'); 00088 } 00089 00094 function setUserId($userId) 00095 { 00096 return $this->setData('userId', $userId); 00097 } 00098 00103 function getAssocId() { 00104 return $this->getData('assocId'); 00105 } 00106 00111 function setAssocId($assocId) 00112 { 00113 return $this->setData('assocId', $assocId); 00114 } 00115 00120 function getExpiryDate() { 00121 return $this->getData('expiryDate'); 00122 } 00123 00128 function setExpiryDate($expiryDate) { 00129 return $this->setData('expiryDate', $expiryDate); 00130 } 00131 } 00132 00133 ?>
1.5.6