Uses of Class
blackboard.platform.session.BbSession.Scope

Packages that use BbSession.Scope
blackboard.platform.session   
 

Uses of BbSession.Scope in blackboard.platform.session
 

Fields in blackboard.platform.session declared as BbSession.Scope
static BbSession.Scope BbSession.Scope.GLOBAL_USER
          Deprecated. Attributes with global scope are offloaded to persistent storage in database or filesystem and are subsequently available to any webapp or consumer in any process.
static BbSession.Scope BbSession.Scope.LOCAL_USER
          Deprecated. Attributes with local scope are stored in memory and are available to all webapps and other consumers in the system.
 

Methods in blackboard.platform.session with parameters of type BbSession.Scope
 java.lang.Object BbSession.getAttribute(java.lang.String name, BbSession.Scope scope)
          Deprecated. Use HttpSession for private attributes (visible only to the calling webapp). Use getGlobalKey() for global attributes (visible across all webapps).
 java.lang.Object BbSession.removeAttribute(java.lang.String name, BbSession.Scope scope)
          Deprecated. This method has no meaning since the corresponding set/get are not implemented.
 void BbSession.setAttribute(java.lang.String name, java.lang.Object value, BbSession.Scope scope)
          Deprecated. Use HttpSession for private attributes (visible only to the calling webapp). Use setGlobalKey() for global attributes (visible across all webapps).
 



Copyright © 2003 Blackboard, Inc. All Rights Reserved.