server/lib/public/iusersession.php

39 lines
807 B
PHP
Raw Normal View History

2013-09-20 10:45:56 +00: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 18:00:53 +00:00
*
2013-09-20 10:45:56 +00:00
*/
2013-11-03 12:38:25 +00:00
/**
* Public interface of ownCloud for apps to use.
* User session interface
*
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
2013-09-20 10:45:56 +00: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 18:00:53 +00:00
* Logs the user out including all the session data
2013-09-20 10:45:56 +00:00
* Logout, destroys session
*/
public function logout();
}