nextcloud/lib/public/iusersession.php

31 lines
567 B
PHP
Raw Normal View History

2013-09-20 14:45:56 +04:00
<?php
/**
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
2013-10-31 22:00:53 +04:00
*
2013-09-20 14:45:56 +04:00
*/
namespace OCP;
/**
* User session
*/
interface IUserSession {
/**
* Do a user login
* @param string $user the username
* @param string $password the password
* @return bool true if successful
*/
public function login($user, $password);
/**
2013-10-31 22:00:53 +04:00
* Logs the user out including all the session data
2013-09-20 14:45:56 +04:00
* Logout, destroys session
*/
public function logout();
}