ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
com.adobe.mosaic.om.interfaces 

IClientFramework  - AS3 ADEP Composite Application

Packagecom.adobe.mosaic.om.interfaces
Interfacepublic interface IClientFramework

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The IClientFramework interface is the highest-level interface in the object model and provides access to the framework manager objects which provide high-level application functionality.



Public Methods
 MethodDefined By
  
Creates or gets the instance of the requested Composite Application Framework component that implements IManager.
IClientFramework
  
Informs the Composite Application Framework that the supplied IManager is no longer needed by the composite application and may be marked for resource clean-up.
IClientFramework
Method Detail

acquireManager

()method
public function acquireManager(name:String):IManager

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10
Runtime Versions: AIR 2.6, Flash Player 10.2

Creates or gets the instance of the requested Composite Application Framework component that implements IManager.

Parameters

name:String — Specifies the name (one of com.adobe.mosaic.om.constants.FrameworkConstants) of the singleton instance of the requested framework component.

Returns
IManager — the instance of the IManager requested (e.g. IRuntimeManager, ISessionManager)

Related API Elements

releaseManager

()method 
public function releaseManager(manager:IManager):void

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10
Runtime Versions: AIR 2.6, Flash Player 10.2

Informs the Composite Application Framework that the supplied IManager is no longer needed by the composite application and may be marked for resource clean-up.

Parameters

manager:IManager — The IManager instance no longer needed by the application

Related API Elements