. * */ /** * 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 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); /** * Logs the user out including all the session data * Logout, destroys session * @return void */ public function logout(); /** * set the currently active user * * @param \OCP\IUser|null $user */ public function setUser($user); /** * get the current active user * * @return \OCP\IUser */ public function getUser(); }