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

IFilter  - AS3 ADEP Task Management

Packagecom.adobe.ep.taskmanagement.filter
Interfacepublic interface IFilter

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 Filter interface is provided to define task filters. The task filters are used to limit the tasks returned by ITaskManager.getTasks(..).



Public Properties
 PropertyDefined By
  taskTypeName : String
The task type to use to filter the results.
IFilter
Public Methods
 MethodDefined By
  
addCondition(aProperty:IProperty, aComparisonOperator:IComparisonOperator, aComparisonValue:Object):void
Adds a condition to the filter.
IFilter
Property Detail

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

The task type to use to filter the results.



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

addCondition

()method
public function addCondition(aProperty:IProperty, aComparisonOperator:IComparisonOperator, aComparisonValue:Object):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

Adds a condition to the filter. All conditions are combined using the boolean AND operation. Note: The tasktype filtering can not be specified using the addCondition function. Instead, use the filter's tasktype property to specify the tasks of the tasktype to return.

Parameters

aProperty:IProperty — Specifies the name of the property to use in this condition.
 
aComparisonOperator:IComparisonOperator — Specifies what operator to use, equals, less_than, etc. See IComparisonOperator and ComparisonOperator for details.
 
aComparisonValue:Object — Specifies the literal value to use as a comparison value in this condition.