27   public function getID();
 
   34   public function get($key);
 
   41   public function set($key, $value);
 
   47   public function remove($key);
 
   54   public function exist($key);
 
   59   public function clear();
 
   83   public function addError($key, $error);
 
getID()
Get the id of the session. 
setAuthUser(User $authUser)
Set the authenticated user. 
User is the interface for users. 
getError($key)
Get an error stored in the session data. 
getAuthUser()
Get the authenticated user. 
clear()
Clear the session data. 
addError($key, $error)
Add an error to the session data. 
Session is the interface for session implementations and defines access to session variables...
exist($key)
Tests, if a certain session variable is defined. 
getErrors()
Get all errors stored in the session data. 
clearErrors()
Clear the session error data. 
set($key, $value)
Sets the value of an session variable. 
destroy()
Destroy the session.