Files
sysPass/inc/SP/Auth/AuthDataBase.class.php
nuxsmin c54d4947a0 * [FIX] Fixed wrong behavior when performing Ajax requests through reverse proxy.
* [MOD] Customer list is based on user ACL.
* [ADD] Logs X-Forwarded-For on login
* [MOD] Minor tweaks
2017-01-16 15:04:48 +01:00

134 lines
2.4 KiB
PHP

<?php
/**
* sysPass
*
* @author nuxsmin
* @link http://syspass.org
* @copyright 2012-2017, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
* sysPass is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* sysPass is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
*/
namespace SP\Auth;
/**
* Class AuthData
*
* @package Auth
*/
abstract class AuthDataBase
{
/**
* @var string
*/
protected $name;
/**
* @var string
*/
protected $email;
/**
* @var int
*/
protected $authenticated;
/**
* @var int
*/
protected $statusCode = 0;
/**
* @var string
*/
protected $server;
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getEmail()
{
return $this->email;
}
/**
* @param string $email
*/
public function setEmail($email)
{
$this->email = $email;
}
/**
* @return int
*/
public function getAuthenticated()
{
return $this->authenticated;
}
/**
* @param int $authenticated
*/
public function setAuthenticated($authenticated)
{
$this->authenticated = (int)$authenticated;
}
/**
* @return string
*/
public function getServer()
{
return $this->server;
}
/**
* @param string $server
*/
public function setServer($server)
{
$this->server = $server;
}
/**
* @return int
*/
public function getStatusCode()
{
return (int)$this->statusCode;
}
/**
* @param int $statusCode
*/
public function setStatusCode($statusCode)
{
$this->statusCode = (int)$statusCode;
}
}