Packagecom.esri.bacore.client
Interfacepublic interface IBATask
Implementors BAQueryTask, BATask, ThematicMappingQueryTask, ThematicMappingQueryTask

Since : Community Analyst API for Flex 2.2.

The IBATask interface is implemented with all Community Analyst Tasks.



Public Properties
 PropertyDefined By
  disableClientCaching : Boolean
If true, adds a timestamp parameter ("_ts") to the REST request to prevent the request from being loaded from the browser's cache.
IBATask
  proxyURL : String
The URL to proxy the request through.
IBATask
  requestTimeout : Number
The request timeout in seconds.
IBATask
  token : String
Token for accessing a secure task.
IBATask
  tokenProvider : ITokenProvider
Provider responsible for updating the security token if the last one expires.
IBATask
  url : String
Base task URL.
IBATask
Property Detail
disableClientCachingproperty
disableClientCaching:Boolean

If true, adds a timestamp parameter ("_ts") to the REST request to prevent the request from being loaded from the browser's cache. By default, this value should be false.


Implementation
    public function get disableClientCaching():Boolean
    public function set disableClientCaching(value:Boolean):void
proxyURLproperty 
proxyURL:String

The URL to proxy the request through.


Implementation
    public function get proxyURL():String
    public function set proxyURL(value:String):void
requestTimeoutproperty 
requestTimeout:Number

The request timeout in seconds. A value less than or equal to zero prevents request timeout.


Implementation
    public function get requestTimeout():Number
    public function set requestTimeout(value:Number):void
tokenproperty 
token:String

Token for accessing a secure task.


Implementation
    public function get token():String
    public function set token(value:String):void
tokenProviderproperty 
tokenProvider:ITokenProvider

Provider responsible for updating the security token if the last one expires.


Implementation
    public function get tokenProvider():ITokenProvider
    public function set tokenProvider(value:ITokenProvider):void
urlproperty 
url:String

Base task URL.


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