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

IManager  - AS3 ADEP Workspace

Packagelc.foundation
Interfacepublic interface IManager extends IEventDispatcher

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 IManager interface is implemented to expose operations and properties related to the Document Server session. You implement this interface to authenticate a user and provide the session that is required for all other server operations.



Public Properties
 PropertyDefined By
  faultHandler : Function
The default fault handler function.
IManager
Public Methods
 MethodDefined By
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
IEventDispatcher
 Inherited
Dispatches an event into the event flow.
IEventDispatcher
  
Determines whether the default operation is prevented.
IManager
  
Determines whether the default operation is prevented.
IManager
 Inherited
Checks whether the EventDispatcher object has any listeners registered for a specific type of event.
IEventDispatcher
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener from the EventDispatcher object.
IEventDispatcher
 Inherited
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type.
IEventDispatcher
Property Detail

faultHandler

property
faultHandler:Function

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 default fault handler function. The function must take a single parameter of type LiveCycleFaultEvent. All Workspace API fault events are dispatched to this function, not just the events from the ISessionManager implementation.



Implementation
    public function get faultHandler():Function
    public function set faultHandler(value:Function):void
Method Detail

handleEvent

()method
public function handleEvent(token:lc.foundation.util:Token, event:LiveCycleEvent):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

Determines whether the default operation is prevented. When the default operation is not prevented, then the fault events and the fault handlers are dispatched.

Parameters

token:lc.foundation.util:Token — Specifies the token for the operation.
 
event:LiveCycleEvent — Specifies the event to dispatch.

handleFault

()method 
public function handleFault(token:lc.foundation.util:Token, event:LiveCycleFaultEvent):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

Determines whether the default operation is prevented. If the default operation is not prevented, then the fault events and the fault handlers are dispatched.

Parameters

token:lc.foundation.util:Token — Specifies the token for the operation.
 
event:LiveCycleFaultEvent — Specifies the fault event.