ActionScript® 3.0 Referenzhandbuch für die Adobe® Flash®-Plattform
Home  |  Liste der Pakete und Klassen ausblenden |  Pakete  |  Klassen  |  Neue Funktionen  |  Stichwortverzeichnis  |  Anhänge  |  Warum auf Englisch?
Filter: Daten werden vom Server abgerufen...
Daten werden vom Server abgerufen...
lc.procmgmt 

IStartpointManager  - AS3 ADEP Workspace

Paketlc.procmgmt
Schnittstellepublic interface IStartpointManager extends IManager , IEventDispatcher

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Document Services - Workspace 9
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

The IStartpointManager interface is implemented to manage TaskManager startpoints. Workspace start points that are added to a process diagram create TaskManager startpoints. TaskManager startpoints are invoked to start the process by using Workspace. When using Workspace to start a process, a form is always used. A PDF form or form data is passed as input to the process. For more information about creating processes for Workspace, see "Designing human-centric processes" in Adobe Digital Enterprise Platform Document Services - Workbench 10.0 Help .

Implement the IStartpointManager interface to get categories of startpoints, invoke startpoints, retrieve startpoints, and get images associated with startpoints.

Verwandte API-Elemente



Öffentliche Eigenschaften
 EigenschaftDefiniert von
 InheritedfaultHandler : Function
The default fault handler function.
IManager
Öffentliche Methoden
 MethodeDefiniert von
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registriert ein Ereignis-Listener-Objekt bei einem EventDispatcher-Objekt, sodass der Listener über ein Ereignis benachrichtigt wird.
IEventDispatcher
 Inherited
Sendet ein Ereignis in den Ereignisablauf.
IEventDispatcher
  
Retrieves all categories of startpoints that are available to an authenticated user.
IStartpointManager
  
Retrieves the location of the image for an startpoint.
IStartpointManager
  
Retrieves the startpoint by using the specified startpoint identifer.
IStartpointManager
  
Retrieves the startpoints for an array of startpoint identifiers.
IStartpointManager
  
Retrieves the startpoints in the specified category.
IStartpointManager
 Inherited
Determines whether the default operation is prevented.
IManager
 Inherited
Determines whether the default operation is prevented.
IManager
 Inherited
Überprüft, ob das EventDispatcher-Objekt Listener für einen bestimmten Ereignistyp registriert hat.
IEventDispatcher
  
Invokes the specified startpoint by its unique identifier.
IStartpointManager
  
Invokes an startpoint with the data from the task that the task ID identified as the initial data.
IStartpointManager
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Entfernt einen Listener aus dem EventDispatcher-Objekt.
IEventDispatcher
 Inherited
Überprüft, ob bei diesem EventDispatcher-Objekt oder bei einem seiner Vorgänger ein Ereignis-Listener für einen bestimmten Ereignistyp registriert ist.
IEventDispatcher
Methodendetails

getCategories

()Methode
public function getCategories():lc.foundation.util:CollectionToken

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Document Services - Workspace 9
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieves all categories of startpoints that are available to an authenticated user.

Rückgabewerte
lc.foundation.util:CollectionToken — A collection of tokens that contains Category objects when the request is complete. You can set the result and fault handlers on each Token object to be called when the invocation is complete and the collection is fully populated.

getImageUrlForStartpoint

()Methode 
public function getImageUrlForStartpoint(startpoint:Startpoint):String

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Document Services - Workspace 9
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieves the location of the image for an startpoint.

Parameter

startpoint:Startpoint — Specifies the startpoint to locate an image for.

Rückgabewerte
String — A URL that represents the location of the image.

getStartpoint

()Methode 
public function getStartpoint(startpointId:String):lc.foundation.util:ObjectToken

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Document Services - Workspace 9
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieves the startpoint by using the specified startpoint identifer.

Parameter

startpointId:String — Specifies the unique identifier of an startpoint.

Rückgabewerte
lc.foundation.util:ObjectToken — A token that will contain the Startpoint object when the request is complete. You can set result and fault handlers on the token to be called when the invocation is complete and the result is returned.

getStartpoints

()Methode 
public function getStartpoints(startpointIds:Array):lc.foundation.util:CollectionToken

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Document Services - Workspace 9
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieves the startpoints for an array of startpoint identifiers.

Parameter

startpointIds:Array — Specifies startpoint identifiers as an array.

Rückgabewerte
lc.foundation.util:CollectionToken — A token that contains a collection of Startpoint objects when the request is complete. You can set result and fault handlers on the token to be called when the invocation is complete and the collection is fully populated.

getStartpointsForCategory

()Methode 
public function getStartpointsForCategory(categoryName:String):lc.foundation.util:CollectionToken

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Document Services - Workspace 9
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieves the startpoints in the specified category.

Parameter

categoryName:String — Specifies the unique identifier of the category.

Rückgabewerte
lc.foundation.util:CollectionToken — A token that contains a collection of Startpoint objects when the request is complete. You can set result and fault handlers on the token to be called when the invocation is complete and the collection is fully populated.

invokeStartpoint

()Methode 
public function invokeStartpoint(startpointId:String):lc.foundation.util:ObjectToken

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Document Services - Workspace 9
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Invokes the specified startpoint by its unique identifier. If the startpoint returns a Document object on the server-side, a DocumentReference object is returned; if the startpoint returns task information, a Task object is returned. Invoked startpoints return either a DocumentReference or Task object.

Parameter

startpointId:String — Specifies the unique identifier of the startpoint to invoke.

Rückgabewerte
lc.foundation.util:ObjectToken — A token that will contain the startpoint invocation result, a Task, or a DocumentReference object when the request is complete. You can set result and fault handlers on the token to be called when the invocation is complete and the result is returned.

invokeStartpointFromStartTask

()Methode 
public function invokeStartpointFromStartTask(taskId:String):lc.foundation.util:ObjectToken

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Document Services - Workspace 9
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Invokes an startpoint with the data from the task that the task ID identified as the initial data. The invoked startpoint returns a DocumentReference object when a Document object is returned on the server-side. A Task object is returned when an startpoint returns task information.

Parameter

taskId:String — Specifies the unique identifier of the Task object to create a new task.

Rückgabewerte
lc.foundation.util:ObjectToken — An ObjectToken object that contains the startpoint invocation result. A Task or a DocumentReference object is provided. You can set result and fault handlers on the ObjectToken object that are called when the invocation is complete and the result is returned.




[ X ]Warum auf Englisch?
Inhalt des ActionScript 3.0-Referenzhandbuchs wird in englischer Sprache angezeigt

Nicht alle Teile des ActionScript 3.0-Referenzhandbuchs wurden in alle Sprachen übersetzt. Wenn der Text zu einem Sprachelement nicht übersetzt wurde, wird er auf Englisch angezeigt. Zum Beispiel wurden die Informationen zur ga.controls.HelpBox-Klasse nicht in andere Sprachen übersetzt. In der deutschen Version des Referenzhandbuchs erscheint der Abschnitt zur ga.controls.HelpBox-Klasse deshalb auf Englisch.