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...
com.adobe.solutions.prm.service 

IWorkItemManagementService  - AS3 Project Management

Packagecom.adobe.solutions.prm.service
Interfacepublic interface IWorkItemManagementService
Implémenteurs WorkItemManagementService

Version du langage: ActionScript 3.0
Version du produit: Bloc de création Project Management 10.0
Versions du moteur d’exécution: Flash Player 10.2, AIR (unsupported)

This interface defines operations to manage a work item. A work item is a single unit of work associated with a project. There can be many work items associated with a project.



Méthodes publiques
 MéthodeDéfini par
  
This function activates a given workitem.
IWorkItemManagementService
  
This function adds a supporting document to a workitem.
IWorkItemManagementService
  
This function adds a team member to a workitem.
IWorkItemManagementService
  
This function adds a work item to an existing project.
IWorkItemManagementService
  
This function creates a workitem using an existing workitem as a template.
IWorkItemManagementService
  
This function removes a supporting document from a workitem.
IWorkItemManagementService
  
This function removes a team member from a workitem.
IWorkItemManagementService
  
removeWorkItem(workItemId:String, forceTerminate:Boolean):mx.rpc:AsyncToken
This function removes a workitem from an existing project.
IWorkItemManagementService
  
This function starts a work item immediately.
IWorkItemManagementService
  
This function terminates a given work item.
IWorkItemManagementService
  
This function updates the properties and schedule of a workitem.
IWorkItemManagementService
Détails de la méthode

activateWorkItem

()méthode
public function activateWorkItem(workItemId:String):mx.rpc:AsyncToken

Version du langage: ActionScript 3.0
Version du produit: Bloc de création Project Management 10.0
Versions du moteur d’exécution: Flash Player 10.2, AIR (unsupported)

This function activates a given workitem.

Paramètres

workItemId:String — The identifier of the workitem to be activated.

Valeur renvoyée
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached. The resulting event contains a value object of the activated workitem.

addSupportingDocument

()méthode 
public function addSupportingDocument(workItemId:String, supportingDocument:DocumentVO):mx.rpc:AsyncToken

Version du langage: ActionScript 3.0
Version du produit: Bloc de création Project Management 10.0
Versions du moteur d’exécution: Flash Player 10.2, AIR (unsupported)

This function adds a supporting document to a workitem.

Paramètres

workItemId:String — The identifier of the workitem to which a supporting document is to be added.
 
supportingDocument:DocumentVO — An instance of a supporting document.

Valeur renvoyée
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached.

addTeamMember

()méthode 
public function addTeamMember(workItemId:String, member:com.adobe.solutions.prm.vo:TeamMemberVO):mx.rpc:AsyncToken

Version du langage: ActionScript 3.0
Version du produit: Bloc de création Project Management 10.0
Versions du moteur d’exécution: Flash Player 10.2, AIR (unsupported)

This function adds a team member to a workitem.

Paramètres

workItemId:String — The identifier of the workitem to which a team member is to be added.
 
member:com.adobe.solutions.prm.vo:TeamMemberVO — An instance of the team member to be added.

Valeur renvoyée
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached. The resulting event contains a list of team members associated with the workitem.

addWorkItem

()méthode 
public function addWorkItem(projectId:String, workItem:WorkItemVO):mx.rpc:AsyncToken

Version du langage: ActionScript 3.0
Version du produit: Bloc de création Project Management 10.0
Versions du moteur d’exécution: Flash Player 10.2, AIR (unsupported)

This function adds a work item to an existing project.

Paramètres

projectId:String — The project identifier of the project to which a workitem is to be added.
 
workItem:WorkItemVO — The WorkItem value object to be added.

Valeur renvoyée
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached. The resulting event contains the value object of the added workitem.

createWorkItemFromTemplate

()méthode 
public function createWorkItemFromTemplate(workItemId:String):mx.rpc:AsyncToken

Version du langage: ActionScript 3.0
Version du produit: Bloc de création Project Management 10.0
Versions du moteur d’exécution: Flash Player 10.2, AIR (unsupported)

This function creates a workitem using an existing workitem as a template.

Paramètres

workItemId:String — The identifier for the workitem that is to be used as a template.

Valeur renvoyée
mx.rpc:AsyncToken — It returns a token on which success on fault handlers can be attached. The resulting event contains a value object of the newly created workitem.

removeSupportingDocument

()méthode 
public function removeSupportingDocument(workItemId:String, supportingDocument:DocumentVO):mx.rpc:AsyncToken

Version du langage: ActionScript 3.0
Version du produit: Bloc de création Project Management 10.0
Versions du moteur d’exécution: Flash Player 10.2, AIR (unsupported)

This function removes a supporting document from a workitem.

Paramètres

workItemId:String — An identifier of the workitem from which a supporting document is to be removed.
 
supportingDocument:DocumentVO — An instance of a supporting document.

Valeur renvoyée
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached.

removeTeamMember

()méthode 
public function removeTeamMember(workItemId:String, member:com.adobe.solutions.prm.vo:TeamMemberVO):mx.rpc:AsyncToken

Version du langage: ActionScript 3.0
Version du produit: Bloc de création Project Management 10.0
Versions du moteur d’exécution: Flash Player 10.2, AIR (unsupported)

This function removes a team member from a workitem.

Paramètres

workItemId:String — The identifier of the workitem from which a team member is to be removed.
 
member:com.adobe.solutions.prm.vo:TeamMemberVO — An instance of the team member to be removed.

Valeur renvoyée
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached. The resulting event contains a list of team members associated with the workitem.

removeWorkItem

()méthode 
public function removeWorkItem(workItemId:String, forceTerminate:Boolean):mx.rpc:AsyncToken

Version du langage: ActionScript 3.0
Version du produit: Bloc de création Project Management 10.0
Versions du moteur d’exécution: Flash Player 10.2, AIR (unsupported)

This function removes a workitem from an existing project.

Paramètres

workItemId:String — The identifier of the workitem to be removed.
 
forceTerminate:Boolean — If this Boolean flag is set to True, the system terminates the workflow running in that workitem.

Valeur renvoyée
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached. The resulting event contains the value object of the removed workitem.

startWorkItem

()méthode 
public function startWorkItem(workItemId:String):mx.rpc:AsyncToken

Version du langage: ActionScript 3.0
Version du produit: Bloc de création Project Management 10.0
Versions du moteur d’exécution: Flash Player 10.2, AIR (unsupported)

This function starts a work item immediately.

Paramètres

workItemId:String — The identifier of a workitem to be started.

Valeur renvoyée
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached. The resulting event contains a value object of the started workitem.

terminateWorkItem

()méthode 
public function terminateWorkItem(workItemId:String):mx.rpc:AsyncToken

Version du langage: ActionScript 3.0
Version du produit: Bloc de création Project Management 10.0
Versions du moteur d’exécution: Flash Player 10.2, AIR (unsupported)

This function terminates a given work item.

Paramètres

workItemId:String — The identifier of the workitem to be terminated.

Valeur renvoyée
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached. The resulting event contains a reference to the terminated workitem.

updateWorkItem

()méthode 
public function updateWorkItem(workItem:WorkItemVO):mx.rpc:AsyncToken

Version du langage: ActionScript 3.0
Version du produit: Bloc de création Project Management 10.0
Versions du moteur d’exécution: Flash Player 10.2, AIR (unsupported)

This function updates the properties and schedule of a workitem.

Paramètres

workItem:WorkItemVO — A WorkItem value object with updated values.

Valeur renvoyée
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached. The resulting event contains a value object of the updated workitem.




[ 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.