패키지 | lc.procmgmt |
인터페이스 | public interface ITaskManager extends IManager , IEventDispatcher |
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
ITaskManager
interface contains methods
and properties to retrieve and manage tasks. In general,
this interface is used for retrieving and searching for tasks because
most other operations should operate on the Task
object.
For example, use task.complete()
instead of
ITaskManager.complete(taskId)
.
관련 API 요소
메서드 | 정의 주체 | ||
---|---|---|---|
Abandons the task identified by the task identifier. | ITaskManager | ||
addAttachment(taskId:String, file:FileReference, attachmentPermissions:AttachmentPermissions):lc.foundation.util:Token
Adds an attachment to a task item. | ITaskManager | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
리스너에서 이벤트 알림을 받을 수 있도록 EventDispatcher 객체에 이벤트 리스너 객체를 등록합니다. | IEventDispatcher | ||
addNote(taskId:String, title:String, note:String, attachmentPermissions:AttachmentPermissions):lc.foundation.util:ObjectToken
Adds a note to a task item. | ITaskManager | ||
Claims the task from another user or group. | ITaskManager | ||
Completes task item. | ITaskManager | ||
Consults with another user about the specified task. | ITaskManager | ||
Deletes an attachment or note from a task item. | ITaskManager | ||
이벤트를 이벤트 흐름으로 전달합니다. | IEventDispatcher | ||
Returns the tasks returned from a search request using the provided search filter. | ITaskManager | ||
Forwards the task identified, by the task identifier to another user. | ITaskManager | ||
getAllTasksForProcess(processId:Number, includeSubprocessTasks:Boolean):lc.foundation.util:CollectionToken
A new version of the method getTasksForProcess. | ITaskManager | ||
Retrieves the collection of Assignment objects that are associated with a task identifier. | ITaskManager | ||
Retrieves the collection of attachments and notes that are associated with a task. | ITaskManager | ||
Gets the completion comment of a task. | ITaskManager | ||
Retrieves an extended note. | ITaskManager | ||
Retrieves the location, as a URL, of an image for a task. | ITaskManager | ||
Retrieves the data for a task item. | ITaskManager | ||
Retrieves the collection of pending tasks that are associated with the process instance identifier. | ITaskManager | ||
Retrieves a collection of process variable definitions for a given task that
the user participated in. | ITaskManager | ||
Retrieves a specific search template. | ITaskManager | ||
Retrieves a collection of search template descriptors. | ITaskManager | ||
Retrieves the task that is associated with the task identifier. | ITaskManager | ||
Retrieves an attachment document for a task item. | ITaskManager | ||
Retrieves the task that is associated with the task identifier by using a remote object
to the server. | ITaskManager | ||
Deprecated Since LiveCycle ES Update 1 (8.2): Please use lc.procmgmt.ITaskManager.getImageUrlForTask(). | ITaskManager | ||
Retrieves all the tasks that a user has access to. | ITaskManager | ||
Retrieves the collection of tasks that are associated with the process instance identifier. | ITaskManager | ||
Determines whether the default operation is prevented. | IManager | ||
Determines whether the default operation is prevented. | IManager | ||
EventDispatcher 객체에 특정 유형의 이벤트에 대한 리스너가 등록되어 있는지 여부를 확인합니다. | IEventDispatcher | ||
Locks the task and prevents other users from claiming the task. | ITaskManager | ||
Updates the task id in the session prior to submitting the task
| ITaskManager | ||
Rejects the task. | ITaskManager | ||
EventDispatcher 객체에서 리스너를 제거합니다. | IEventDispatcher | ||
Retrieves a form for a task. | ITaskManager | ||
Saves the task item data to the server. | ITaskManager | ||
Sets the completion comment of a task. | ITaskManager | ||
Sets the description value of a task. | ITaskManager | ||
Sets the visibility of a task in searches. | ITaskManager | ||
Shares a task with another user. | ITaskManager | ||
submitItemWithData(taskId:String, taskItemIndex:int, data:Object, params:Object = null):lc.foundation.util:ObjectToken
Submits current task item data to the server. | ITaskManager | ||
submitItemWithPriorData(taskId:String, taskItemIndex:int, resultKey:Object, params:Object = null):lc.foundation.util:ObjectToken
Submits task item data that was last saved to the server. | ITaskManager | ||
Unlocks the task to allow other
users to claim the task provided they have access to it. | ITaskManager | ||
Updates an attachment to a task item. | ITaskManager | ||
이 EventDispatcher 객체 또는 조상 객체에 지정한 이벤트 유형에 대한 이벤트 리스너가 등록되어 있는지 여부를 확인합니다. | IEventDispatcher |
abandon | () | 메서드 |
public function abandon(taskId:String):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Abandons the task identified by the task identifier.
매개 변수
taskId:String — Specifies the task identifier.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation is complete.
|
addAttachment | () | 메서드 |
public function addAttachment(taskId:String, file:FileReference, attachmentPermissions:AttachmentPermissions):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Adds an attachment to a task item.
매개 변수
taskId:String — Specifies the identifier of the task to reject.
| |
file:FileReference — Specifies the FileReference object for the attachment.
| |
attachmentPermissions:AttachmentPermissions — Specifies the permissions for the attachment.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the
operation is complete.
|
addNote | () | 메서드 |
public function addNote(taskId:String, title:String, note:String, attachmentPermissions:AttachmentPermissions):lc.foundation.util:ObjectToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Adds a note to a task item.
매개 변수
taskId:String — Specifies the task identifier.
| |
title:String — Specifies the title for the note.
| |
note:String — Specifies the note text.
| |
attachmentPermissions:AttachmentPermissions — Specifies the permissions for the attachment.
|
lc.foundation.util:ObjectToken — A token that will contain an AttachmentInfo object when the request completes.
You can set result and fault handlers on the token to be called when the invocation is complete and the result is returned.
|
claim | () | 메서드 |
public function claim(taskId:String, lockTask:Boolean):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Claims the task from another user or group.
매개 변수
taskId:String — Specifies the task identifier.
| |
lockTask:Boolean — Specifies whether to claim and lock a task. If a value
of true is provided, the task is both locked and claimed.
If a value of false is provided, the task is claimed but not
locked.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation is complete.
|
complete | () | 메서드 |
public function complete(taskId:String, routeName:String = null):lc.foundation.util:ObjectToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Completes task item.
매개 변수
taskId:String — Specifies the task identifier.
| |
routeName:String (default = null ) — Specifies the selected route name if it exists.
|
lc.foundation.util:ObjectToken — A token used to set result and fault handlers to be called when the operation is complete.
|
consult | () | 메서드 |
public function consult(taskId:String, userOid:String):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Consults with another user about the specified task.
매개 변수
taskId:String — Specifies the task identifier.
| |
userOid:String — Specifies the OID of the person to consult with.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when
the operation is complete.
|
deleteAttachment | () | 메서드 |
public function deleteAttachment(taskId:String, attachmentId:String):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Deletes an attachment or note from a task item.
매개 변수
taskId:String — Specifies the task identifier.
| |
attachmentId:String — Specifies the attachment to be deleted.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation is complete.
|
findTasks | () | 메서드 |
public function findTasks(searchFilter:SearchFilter):lc.foundation.util:CollectionToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Returns the tasks returned from a search request using the provided search filter.
매개 변수
searchFilter:SearchFilter — The search criteria to filter the results. It also contains a list of the fields
that must be returned and up to two fields that the results are to be sorted using.
|
lc.foundation.util:CollectionToken — A token containing the task collection. The collection may not be populated yet.
You can set result and fault handlers on the token to be called when the collection has
been fully populated. The result collection will contain Task objects.
|
forward | () | 메서드 |
public function forward(taskId:String, userOid:String):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Forwards the task identified, by the task identifier to another user.
매개 변수
taskId:String — Specifies the task identifier.
| |
userOid:String — The OID of the person to forward the task to.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation is complete.
|
getAllTasksForProcess | () | 메서드 |
public function getAllTasksForProcess(processId:Number, includeSubprocessTasks:Boolean):lc.foundation.util:CollectionToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 10 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A new version of the method getTasksForProcess. The new feature introduced in getAllTasksForProcess is the capability to specify the return of tasks from subprocesses. Retrieves the collection of tasks that are associated with the process instance identifier.
매개 변수
processId:Number — Specifies the identifier of the process instance to obtain the task for.
| |
includeSubprocessTasks:Boolean — Indicator if results should include tasks in sub-processes associated
with the specified process instance.
|
lc.foundation.util:CollectionToken — A token containing a collection of Task objects when the request completes.
You can set result and fault handlers on the token to be called when the
invocation is complete and the collection is fully populated.
|
getAssignmentsForTask | () | 메서드 |
public function getAssignmentsForTask(taskId: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 collection of Assignment
objects that are associated with a task identifier.
매개 변수
taskId:String — Specifies the identifier of the task.
|
lc.foundation.util:CollectionToken — A token containing a collection of Assignment objects when the request
completes. You can set result and fault handlers on the token to be called when
the invocation is complete and the collection is fully populated.
|
getAttachments | () | 메서드 |
public function getAttachments(taskId: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 collection of attachments and notes that are associated with a task.
매개 변수
taskId:String — Specifies the task identifier.
|
lc.foundation.util:CollectionToken — A token containing a collection of Attachment objects.
You can set result and fault handlers on the token to be called when it is
fully populated.
|
getCompletionComment | () | 메서드 |
public function getCompletionComment(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 |
Gets the completion comment of a task.
매개 변수
taskId:String — Specifies the task identifier.
|
lc.foundation.util:ObjectToken — A token containing the completion comment and used to set result and fault handlers to be called when the operation is complete.
|
getExtendedNote | () | 메서드 |
public function getExtendedNote(taskId:String, noteId:String):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves an extended note.
매개 변수
taskId:String — Specifies the task identifier.
| |
noteId:String — Specifies the attachment identifier.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation is complete.
|
getImageUrlForTask | () | 메서드 |
public function getImageUrlForTask(task:lc.procmgmt.domain:Task):String
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves the location, as a URL, of an image for a task.
매개 변수
task:lc.procmgmt.domain:Task — Specifies the task for which to obtain the image URL.
|
String — A URL from which the image can be retrieved.
|
getItemData | () | 메서드 |
public function getItemData(taskId:String, taskItemIndex:int):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 data for a task item. The item retrieved using the renderItem
method
may already contain merged data.
매개 변수
taskId:String — Specifies the task identifier.
| |
taskItemIndex:int — Specifies the task item to be returned.
|
lc.foundation.util:ObjectToken — A token that will contain a TaskItemResult object when
the request completes. You can set result and fault handlers on the token
to be called when the invocation is complete and the result is returned.
The returned object is an XML type if the data is XML; otherwise, it
is a ByteArray type.
|
getPendingTasksForProcess | () | 메서드 |
public function getPendingTasksForProcess(processId:Number):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 collection of pending tasks that are associated with the process instance identifier.
매개 변수
processId:Number — Specifies the identifier of the process instance to obtain the task for.
|
lc.foundation.util:CollectionToken — A token containing a collection of Task objects when the
request completes. You can set result and fault handlers on the token to be
called when the invocation is complete and the collection is fully populated.
|
getProcessVariablesForTask | () | 메서드 |
public function getProcessVariablesForTask(taskId: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 a collection of process variable definitions for a given task that the user participated in.
매개 변수
taskId:String — Specifies the task identifier.
|
lc.foundation.util:CollectionToken — A token containing a collection of ProcessVariable objects
when the request completes. You can set result and fault handlers on the token
to be called when the invocation is complete and the collection is fully populated.
|
getSearchTemplate | () | 메서드 |
public function getSearchTemplate(searchTemplateId:Number):lc.foundation.util:ObjectToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves a specific search template.
매개 변수
searchTemplateId:Number — Specifies the unique identifier of the search template.
|
lc.foundation.util:ObjectToken — A token that will contain a SearchTemplate object (as XML) when
the request completes. You can set result and fault handlers on the token
to be called when the invocation is complete and the result is returned.
|
getSearchTemplateDescriptors | () | 메서드 |
public function getSearchTemplateDescriptors():lc.foundation.util:CollectionToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves a collection of search template descriptors.
반환값lc.foundation.util:CollectionToken — A token containing a collection of SearchTemplateDescriptor
objects when the request completes. You can set result and fault handlers on the
token to be called when the invocation is complete and the collection
is fully populated.
|
getTask | () | 메서드 |
public function getTask(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 |
Retrieves the task that is associated with the task identifier. This method uses the
data service getItem
method and returns an ObjectToken
containing the requested Task.
매개 변수
taskId:String — Specifies the task identifier to obtain the task for.
|
lc.foundation.util:ObjectToken — A token containing the task when the request completes. You can set result and fault handlers on the token to be called when the invocation is complete.
|
getTaskAttachmentDocument | () | 메서드 |
public function getTaskAttachmentDocument(taskId:String, attachmentId: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 an attachment document for a task item. The document URL should be used once only.
매개 변수
taskId:String — Specifies the task identifier.
| |
attachmentId:String — Specifies the attachment identifier.
|
lc.foundation.util:ObjectToken — A token that will contain the attachment document when the
request completes. You can set result and fault handlers on the token
to be called when the invocation is complete and the result is returned.
The returned object will be of type XML if the data is XML;
otherwise, it will be of type ByteArray .
|
getTaskById | () | 메서드 |
public function getTaskById(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 |
Retrieves the task that is associated with the task identifier by using a remote object to the server.
매개 변수
taskId:String — Specifies the identifier of the task to obtain.
|
lc.foundation.util:ObjectToken — A token containing the task when the request completes. You can set result and fault handlers on the token to be called when the invocation is complete.
|
getTaskImageUrl | () | 메서드 |
public function getTaskImageUrl(taskId:String, imageTicket:String):String
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Deprecated Since LiveCycle ES Update 1 (8.2): Please use lc.procmgmt.ITaskManager.getImageUrlForTask()
.
Retrieves the location, as a URL, of an image for a task.
매개 변수
taskId:String — Specifies the identifier of the task for which to obtain the image.
| |
imageTicket:String — Specifies the imageTicket from the task.
|
String — A URL from which the image can be retrieved.
|
관련 API 요소
getTasks | () | 메서드 |
public function getTasks(refresh:Boolean = false):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 the tasks that a user has access to.
매개 변수
refresh:Boolean (default = false ) — Indicator if a refresh of the results from the server is required.
|
lc.foundation.util:CollectionToken — A token containing the task collection. The collection may not be populated yet.
You can set result and fault handlers on the token to be called when the collection
is fully populated. The result collection will contain Task objects.
|
getTasksForProcess | () | 메서드 |
public function getTasksForProcess(processId:Number):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 collection of tasks that are associated with the process instance identifier.
매개 변수
processId:Number — Specifies the identifier of the process instance to obtain the task for.
|
lc.foundation.util:CollectionToken — A token containing a collection of Task objects when the request completes.
You can set result and fault handlers on the token to be called when the
invocation is complete and the collection is fully populated.
|
lock | () | 메서드 |
public function lock(taskId:String):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Locks the task and prevents other users from claiming the task.
매개 변수
taskId:String — Specifies the identifier of the task to lock.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation is complete.
|
prepareForSubmit | () | 메서드 |
public function prepareForSubmit(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 |
Updates the task id in the session prior to submitting the task
매개 변수
taskId:String — Specifies the task identifier.
|
lc.foundation.util:ObjectToken — A token used to set result and fault handlers to be called when the operation 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.
|
reject | () | 메서드 |
public function reject(taskId:String):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Rejects the task. This will cause the task to return to the previous assigned user.
매개 변수
taskId:String — Specifies the identifier of the task to reject.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation is complete.
|
renderItem | () | 메서드 |
public function renderItem(taskId:String, taskItemIndex:int, params:Object = null):lc.foundation.util:ObjectToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves a form for a task.
매개 변수
taskId:String — Specifies the task identifier.
| |
taskItemIndex:int — Reserved for future use.
| |
params:Object (default = null ) — Specifies an optional map of parameters for the render service.
|
lc.foundation.util:ObjectToken — A token that will contain a TaskItemResult object when the request completes.
You can set result and fault handlers on the token to be called when the invocation
is complete and the result is returned.
|
saveItemData | () | 메서드 |
public function saveItemData(taskId:String, taskItemIndex:int, data:Object):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Saves the task item data to the server.
매개 변수
taskId:String — Specifies the task identifier.
| |
taskItemIndex:int — Reserved for future use.
| |
data:Object — Specifies the data to be saved. The type must be an XML or ByteArray type.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation has completed.
|
setCompletionComment | () | 메서드 |
public function setCompletionComment(taskId:String, comment:String):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Sets the completion comment of a task.
매개 변수
taskId:String — Specifies the task identifier.
| |
comment:String — Specifies the new comment value.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation is complete.
|
setDescription | () | 메서드 |
public function setDescription(taskId:String, description:String):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Sets the description value of a task.
매개 변수
taskId:String — Specifies the task identifier.
| |
description:String — Specifies the new description value.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation is complete.
|
setVisible | () | 메서드 |
public function setVisible(taskId:String, visible:Boolean):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Sets the visibility of a task in searches. Setting visible to false
means that the task is not visible in searches. Setting visible to true
means that
the task is visible in searches.
매개 변수
taskId:String — Specifies the task identifier.
| |
visible:Boolean — Specifies the whether the task is visible in a search.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation is complete.
|
share | () | 메서드 |
public function share(taskId:String, userOid:String):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Shares a task with another user.
매개 변수
taskId:String — Specifies the task identifier.
| |
userOid:String — Specifies the OID of the person to share the task with.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when
the operation is complete.
|
submitItemWithData | () | 메서드 |
public function submitItemWithData(taskId:String, taskItemIndex:int, data:Object, params:Object = null):lc.foundation.util:ObjectToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Submits current task item data to the server.
매개 변수
taskId:String — Specifies the task identifier.
| |
taskItemIndex:int — Specifies the data to be submitted.
| |
data:Object — Reserved for future use.
| |
params:Object (default = null ) — Specifies a map of parameters for the render service.
|
lc.foundation.util:ObjectToken — A token that will contain a TaskItemResult object when the request completes.
You can set result and fault handlers on the token to be called when the
invocation is complete and the result is returned.
|
submitItemWithPriorData | () | 메서드 |
public function submitItemWithPriorData(taskId:String, taskItemIndex:int, resultKey:Object, params:Object = null):lc.foundation.util:ObjectToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Submits task item data that was last saved to the server.
매개 변수
taskId:String — Specifies the task identifier.
| |
taskItemIndex:int — Reserved for future use.
| |
resultKey:Object — Specifies the unique key to look up data in the current session.
| |
params:Object (default = null ) — Specifies a map of parameters for the render service.
|
lc.foundation.util:ObjectToken — A token that will contain a TaskItemResult object when the request completes.
You can set result and fault handlers on the token to be called when the invocation is
complete and the result is returned.
|
unlock | () | 메서드 |
public function unlock(taskId:String):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Unlocks the task to allow other users to claim the task provided they have access to it.
매개 변수
taskId:String — Specifies the task identifier.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation is complete.
|
updateAttachment | () | 메서드 |
public function updateAttachment(taskId:String, attachmentId:String, file:FileReference):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Updates an attachment to a task item.
매개 변수
taskId:String — Specifies the task identifier.
| |
attachmentId:String — Specifies the identifier for the attachment.
| |
file:FileReference — Specifies the FileReference object for the attachment.
|
lc.foundation.util:Token — A token used to set result and fault handlers to be called when the operation is complete.
|
ITaskManager
interface from the current session:
var taskManager:ITaskManager = WorkspaceSession.getTaskManager(session);
Tue Jun 12 2018, 03:17 PM Z