Uses of Interface
uk.org.ogsadai.sessions.SessionAttribute

Packages that use SessionAttribute
uk.org.ogsadai.sessions Contains the core classes and interfaces used to support sessions. 
uk.org.ogsadai.sessions.impl Contains implementations of the sessions interfaces to provide support for transient sessions. 
 

Uses of SessionAttribute in uk.org.ogsadai.sessions
 

Methods in uk.org.ogsadai.sessions that return SessionAttribute
 SessionAttribute Session.getAttribute(javax.xml.namespace.QName name)
          Gets the session attribute for the given name or null if no such attribute exists.
 

Methods in uk.org.ogsadai.sessions with parameters of type SessionAttribute
 void Session.setAttribute(SessionAttribute attribute)
          Sets the specified session attribute, storing it in the session.
 

Uses of SessionAttribute in uk.org.ogsadai.sessions.impl
 

Classes in uk.org.ogsadai.sessions.impl that implement SessionAttribute
 class DynamicSessionAttribute
          A dynamic session attribute is a session attribute with a value that can still be changed after creation.
 class StaticSessionAttribute
          A static session attribute is a session attribute with a value that cannot be changed after creation.
 

Methods in uk.org.ogsadai.sessions.impl that return SessionAttribute
 SessionAttribute SafeSession.getAttribute(javax.xml.namespace.QName name)
           
 SessionAttribute TransientSession.getAttribute(javax.xml.namespace.QName name)
           
 

Methods in uk.org.ogsadai.sessions.impl with parameters of type SessionAttribute
 void SafeSession.setAttribute(SessionAttribute property)
           
 void TransientSession.setAttribute(SessionAttribute property)