ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
com.adobe.ep.taskmanagement.domain 

ITask  - AS3 ADEP Task Management

Packagecom.adobe.ep.taskmanagement.domain
Interfacepublic interface ITask

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The interface for task objects that are managed by the ITaskManager API.



Public Properties
 PropertyDefined By
  ActionNames : IList
The list of user actions supported by the task.
ITask
  completeTime : Date
The date and time that the was task completed.
ITask
  createTime : Date
The date and time that the task was created.
ITask
  description : String
The description for the task.
ITask
  id : String
The task identifier.
ITask
  instructions : String
The instructions to complete the task.
ITask
  name : String
[read-only] The name of the task.
ITask
  ownerId : String
[read-only] An identifier that specifies the owner of the task.
ITask
  properties : Object
Returns the custom properties for the task.
ITask
  status : String
The status of the task.
ITask
  taskTypeName : String
A name that specifies the tasktype.
ITask
  updateTime : Date
The date and time the task was last updated.
ITask
Public Methods
 MethodDefined By
  
setPropertyValue(aPropertyName:String, aPropertyValue:Object, aPropertyType:String = null):void
Changes the value of a custom task property.
ITask
Property Detail

ActionNames

property
ActionNames:IList

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The list of user actions supported by the task.



Implementation
    public function get ActionNames():IList
    public function set ActionNames(value:IList):void

completeTime

property 
completeTime:Date

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The date and time that the was task completed.



Implementation
    public function get completeTime():Date
    public function set completeTime(value:Date):void

createTime

property 
createTime:Date

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The date and time that the task was created.



Implementation
    public function get createTime():Date
    public function set createTime(value:Date):void

description

property 
description:String

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The description for the task.



Implementation
    public function get description():String
    public function set description(value:String):void

id

property 
id:String

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The task identifier.



Implementation
    public function get id():String
    public function set id(value:String):void

instructions

property 
instructions:String

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The instructions to complete the task.



Implementation
    public function get instructions():String
    public function set instructions(value:String):void

name

property 
name:String  [read-only]

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The name of the task.



Implementation
    public function get name():String

ownerId

property 
ownerId:String  [read-only]

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

An identifier that specifies the owner of the task.



Implementation
    public function get ownerId():String

properties

property 
properties:Object

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

Returns the custom properties for the task. Custom properties are defined by a task's tasktype. The values are stored in an instance of an Object class with one more ITaskProperty objects.



Implementation
    public function get properties():Object
    public function set properties(value:Object):void

status

property 
status:String

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The status of the task.



Implementation
    public function get status():String
    public function set status(value:String):void

taskTypeName

property 
taskTypeName:String

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

A name that specifies the tasktype.



Implementation
    public function get taskTypeName():String
    public function set taskTypeName(value:String):void

updateTime

property 
updateTime:Date

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The date and time the task was last updated.



Implementation
    public function get updateTime():Date
    public function set updateTime(value:Date):void
Method Detail

setPropertyValue

()method
public function setPropertyValue(aPropertyName:String, aPropertyValue:Object, aPropertyType:String = null):void

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

Changes the value of a custom task property. Use this function to change the value of the named custom task property, optionally, specifying the property type.

Parameters

aPropertyName:String — Specifies the name of the property to change.
 
aPropertyValue:Object — Specifies the new value for the property.
 
aPropertyType:String (default = null) — Specifies the property type of the value. The value has to match the type specified by the tasktype definition on the Experience server.