org.jboss.seam.security.session
Interface SessionStore


public interface SessionStore

Store where Session objects are stored/retrieved.

Author:
George Gastaldi

Method Summary
 Collection<Session> findAllSessions()
          Finds all sessions related to this store
 Session findById(String sessionId)
          Searchs the Session for the specified ID
 void persist(Session session)
          Persists the session in the current store
 void remove(Session session)
          Removes the session in this store
 

Method Detail

persist

void persist(Session session)
Persists the session in the current store

Parameters:
session -

remove

void remove(Session session)
Removes the session in this store

Parameters:
session -

findById

Session findById(String sessionId)
Searchs the Session for the specified ID

Parameters:
id -
Returns:

findAllSessions

Collection<Session> findAllSessions()
Finds all sessions related to this store

Returns:


Copyright © 2011 Seam Framework. All Rights Reserved.