ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
lc.foundation.domain 

SessionMap  - AS3 ADEP Workspace

Packagelc.foundation.domain
Classpublic class SessionMap
InheritanceSessionMap Inheritance Object

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Document Services - Workspace 9
Runtime Versions: AIR (unsupported), Flash Player 9, Flash Player 10

The SessionMap object is initialized during application initialization and passed to all components, as the session property, therefore making it available throughout the application.

It is recommended to use the typed convenience methods from the WorkspaceSession object to retrieve Workspace API objects. For example, if you want to use the QueuesManager object, it can be retrieved using the following code:

var queuesManager:QueuesManager = WorkspaceSession.getQueuesManager(session);

Additional objects can be added using the setObject method. The general convention for key names is that the key name should match the fully qualified class or interface name that you want. For example, to add a new object to the session, your can use the following code:

session.setObject("my.example.ISample", new Sample());

This object may be retrieved from the session property using the following code:

var mySample:ISample = ISample(session.getObject("my.example.ISample"));

For information on using this component to customize Workspace, see Customizing the Digital Enterprise Platform Document Services - Workspace 10.0 User Interface .

Related API Elements



Public Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
Public Methods
 MethodDefined By
  
Retrieves a session object using the provided key.
SessionMap
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
  
Adds an object to be retrieved with the given key.
SessionMap
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Method Detail

getObject

()method
public function getObject(key:String):Object

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Document Services - Workspace 9
Runtime Versions: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieves a session object using the provided key.

Parameters

key:String — Specifies the key for the SessionMap object. The standard convention is that this will be the fully qualified name of the class or interface to which the returned object would be cast.

Returns
Object — An object matching the given key. If no match for the key exists, a value of null is returned.

setObject

()method 
public function setObject(key:String, object:Object):void

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Document Services - Workspace 9
Runtime Versions: AIR (unsupported), Flash Player 9, Flash Player 10

Adds an object to be retrieved with the given key. If the object with that key already exists, it will be replaced.

Parameters

key:String — Specifies the key for the object.
 
object:Object — Specifies the object to be stored for the given key.

Related API Elements

lc.domain.SessionMap.getObject()