Guide de référence ActionScript® 3.0 pour la plate-forme Adobe® Flash®
Accueil  |  Masquer la liste des packages et des classes |  Packages  |  Classes  |  Nouveautés  |  Index  |  Annexes  |  Pourquoi existe-t-il du contenu en anglais ?
Filtres : Récupération des données du serveur...
Récupération des données du serveur...
lc.procmgmt 

IStartpointManager  - AS3 ADEP Workspace

Packagelc.procmgmt
Interfacepublic interface IStartpointManager extends IManager , IEventDispatcher

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versions du moteur d’exécution: 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.

Eléments de l’API associés



Propriétés publiques
 PropriétéDéfini par
 InheritedfaultHandler : Function
The default fault handler function.
IManager
Méthodes publiques
 MéthodeDéfini par
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Enregistre un objet écouteur d’événement auprès d’un objet EventDispatcher afin que l’écouteur soit averti d’un événement.
IEventDispatcher
 Inherited
Distribue un événement dans le flux d’événements.
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
Vérifie si des écouteurs sont enregistrés auprès de l’objet EventDispatcher pour un type spécifique d’événement.
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
Supprime un écouteur de l’objet EventDispatcher.
IEventDispatcher
 Inherited
Vérifie si un écouteur d’événement est enregistré auprès de cet objet EventDispatcher ou de ses ancêtres pour le type d’événement spécifié.
IEventDispatcher
Détails de la méthode

getCategories

()méthode
public function getCategories():lc.foundation.util:CollectionToken

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versions du moteur d’exécution: AIR (unsupported), Flash Player 9, Flash Player 10

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

Valeur renvoyée
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

()méthode 
public function getImageUrlForStartpoint(startpoint:Startpoint):String

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versions du moteur d’exécution: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieves the location of the image for an startpoint.

Paramètres

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

Valeur renvoyée
String — A URL that represents the location of the image.

getStartpoint

()méthode 
public function getStartpoint(startpointId:String):lc.foundation.util:ObjectToken

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versions du moteur d’exécution: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieves the startpoint by using the specified startpoint identifer.

Paramètres

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

Valeur renvoyée
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

()méthode 
public function getStartpoints(startpointIds:Array):lc.foundation.util:CollectionToken

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versions du moteur d’exécution: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieves the startpoints for an array of startpoint identifiers.

Paramètres

startpointIds:Array — Specifies startpoint identifiers as an array.

Valeur renvoyée
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

()méthode 
public function getStartpointsForCategory(categoryName:String):lc.foundation.util:CollectionToken

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versions du moteur d’exécution: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieves the startpoints in the specified category.

Paramètres

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

Valeur renvoyée
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

()méthode 
public function invokeStartpoint(startpointId:String):lc.foundation.util:ObjectToken

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versions du moteur d’exécution: 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.

Paramètres

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

Valeur renvoyée
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

()méthode 
public function invokeStartpointFromStartTask(taskId:String):lc.foundation.util:ObjectToken

Version du langage: ActionScript 3.0
Version du produit: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versions du moteur d’exécution: 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.

Paramètres

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

Valeur renvoyée
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 ]Pourquoi existe-t-il du contenu en anglais ?
Certaines parties du Guide de référence ActionScript 3.0 sont en anglais

Tout le contenu du Guide de référence ActionScript 3.0 n’a pas été traduit dans toutes les langues. Si un élément de langage n’est pas traduit, il s’affiche en anglais. Par exemple, la classe ga.controls.HelpBox n’est traduite dans aucune langue. Ainsi, dans la version française du guide de référence, la classe ga.controls.HelpBox apparaît en anglais.