Package | lc.foundation |
Interface | public 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 |
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
Property | Defined By | ||
---|---|---|---|
faultHandler : Function
The default fault handler function. | IManager |
Public Methods
Method | Defined By | ||
---|---|---|---|
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 | ||
Dispatches an event into the event flow. | IEventDispatcher | ||
Determines whether the default operation is prevented. | IManager | ||
Determines whether the default operation is prevented. | IManager | ||
Checks whether the EventDispatcher object has any listeners registered for a specific type
of event. | IEventDispatcher | ||
Removes a listener from the EventDispatcher object. | IEventDispatcher | ||
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.
|
Mon Nov 28 2011, 06:48 AM -08:00