패키지 | lc.procmgmt |
인터페이스 | public interface IStartpointManager extends IManager , IEventDispatcher |
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
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.
관련 API 요소
메서드 | 정의 주체 | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
리스너에서 이벤트 알림을 받을 수 있도록 EventDispatcher 객체에 이벤트 리스너 객체를 등록합니다. | IEventDispatcher | ||
이벤트를 이벤트 흐름으로 전달합니다. | 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 | ||
Determines whether the default operation is prevented. | IManager | ||
Determines whether the default operation is prevented. | IManager | ||
EventDispatcher 객체에 특정 유형의 이벤트에 대한 리스너가 등록되어 있는지 여부를 확인합니다. | 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 | ||
EventDispatcher 객체에서 리스너를 제거합니다. | IEventDispatcher | ||
이 EventDispatcher 객체 또는 조상 객체에 지정한 이벤트 유형에 대한 이벤트 리스너가 등록되어 있는지 여부를 확인합니다. | IEventDispatcher |
getCategories | () | 메서드 |
public function getCategories():lc.foundation.util:CollectionToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves all categories of startpoints that are available to an authenticated user.
반환값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 | () | 메서드 |
public function getImageUrlForStartpoint(startpoint:Startpoint):String
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves the location of the image for an startpoint.
매개 변수
startpoint:Startpoint — Specifies the startpoint to locate an image for.
|
String — A URL that represents the location of the image.
|
getStartpoint | () | 메서드 |
public function getStartpoint(startpointId:String):lc.foundation.util:ObjectToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves the startpoint by using the specified startpoint identifer.
매개 변수
startpointId:String — Specifies the unique identifier of an startpoint.
|
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 | () | 메서드 |
public function getStartpoints(startpointIds:Array):lc.foundation.util:CollectionToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves the startpoints for an array of startpoint identifiers.
매개 변수
startpointIds:Array — Specifies startpoint identifiers as an array.
|
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 | () | 메서드 |
public function getStartpointsForCategory(categoryName:String):lc.foundation.util:CollectionToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves the startpoints in the specified category.
매개 변수
categoryName:String — Specifies the unique identifier of the category.
|
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 | () | 메서드 |
public function invokeStartpoint(startpointId:String):lc.foundation.util:ObjectToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | 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.
매개 변수
startpointId:String — Specifies the unique identifier of the startpoint to invoke.
|
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 | () | 메서드 |
public function invokeStartpointFromStartTask(taskId:String):lc.foundation.util:ObjectToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | 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.
매개 변수
taskId:String — Specifies the unique identifier of the Task object to create a new task.
|
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.
|
Tue Jun 12 2018, 03:17 PM Z