| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/Libteiser - Ojs/ojs2/classes/security/ |
Upload File : |
<?php
/**
* @defgroup security
*/
/**
* @file classes/security/AccessKey.inc.php
*
* Copyright (c) 2003-2009 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class AccessKey
* @ingroup security
* @see AccessKeyDAO
*
* @brief AccessKey class.
*/
// $Id: AccessKey.inc.php,v 1.7.2.1 2009/04/08 19:42:49 asmecher Exp $
class AccessKey extends DataObject {
function AccessKey() {
parent::DataObject();
}
//
// Get/set methods
//
/**
* Get the ID of the key.
* @return int
*/
function getAccessKeyId() {
return $this->getData('accessKeyId');
}
/**
* Set the ID of the access key.
* @param $accessKeyId int
*/
function setAccessKeyId($accessKeyId) {
return $this->setData('accessKeyId', $accessKeyId);
}
/**
* Get context.
* @return string
*/
function getContext() {
return $this->getData('context');
}
/**
* Set context.
* @param $context string
*/
function setContext($context) {
return $this->setData('context', $context);
}
/**
* Get key hash.
* @return string
*/
function getKeyHash() {
return $this->getData('keyHash');
}
/**
* Set key hash.
* @param $keyHash string
*/
function setKeyHash($keyHash) {
return $this->setData('keyHash', $keyHash);
}
/**
* Get user ID.
* @return int
*/
function getUserId() {
return $this->getData('userId');
}
/**
* Set user ID.
* @param $userId int
*/
function setUserId($userId)
{
return $this->setData('userId', $userId);
}
/**
* Get associated ID.
* @return int
*/
function getAssocId() {
return $this->getData('assocId');
}
/**
* Set associated ID.
* @param $assocId int
*/
function setAssocId($assocId)
{
return $this->setData('assocId', $assocId);
}
/**
* Get expiry date.
* @return string
*/
function getExpiryDate() {
return $this->getData('expiryDate');
}
/**
* Set expiry date.
* @param $expiryDate string
*/
function setExpiryDate($expiryDate) {
return $this->setData('expiryDate', $expiryDate);
}
}
?>