Interface SessionStore

Interface for a basic session store.

A sesseion store is responsible for storing the id and the associated key/value pairs of a session.

Methods

Method name Description
create Creates a new session.
open Opens an existing session.
set Sets a name/value pair for a given session.
get Returns the value for a given session key.
isKeySet Determines if a certain session key is set.
destroy Terminates the given sessiom.
iterateSession Iterates all key/value pairs stored in the given session.

Authors

Jan Krüger, Sönke Ludwig

Copyright

© 2012 RejectedSoftware e.K.

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.