ArcGIS Data Reviewer API for FlexAll Packages | All Classes | Index | Frames
BatchValidationJobDetails
 
Packagecom.esri.drs
Classpublic class BatchValidationJobDetails
InheritanceBatchValidationJobDetails Inheritance Object
Implements flash.events.IEventDispatcher

Encapsulates a Batch Validation Job. Contains information about a job, including settings and schedule. Schedule applies to scheduled jobs only.



Public Properties
 PropertyDefined By
  batchRunIds : Array
Contains a list of batch run IDs, one for each batch validation execution associated with a batch validation job.
BatchValidationJobDetails
  creationDate : Date
Gets job creation date.
BatchValidationJobDetails
  executionDetails : BatchValidationJobExecutionDetails
Gets batch job execution details.
BatchValidationJobDetails
  jobId : String
Gets the Job Id.
BatchValidationJobDetails
  parameters : BatchValidationParameters
Gets batch job parameters.
BatchValidationJobDetails
  status : String
Gets the job status.
BatchValidationJobDetails
  type : String
Gets the job type.
BatchValidationJobDetails
Public Methods
 MethodDefined By
  
BatchValidationJobDetails(jsonObject:Object)
Constructor Creates a BatchValidationJobDetails object using the decoded object returned from returned from ArcGIS Data Reviewer for Server to the BatchValidationTask class.
BatchValidationJobDetails
Property Detail
batchRunIdsproperty
batchRunIds:Array

Contains a list of batch run IDs, one for each batch validation execution associated with a batch validation job. For adhoc jobs this list will have one result. For scheduled jobs this list will contain one ID per job execution per schedule.

This property can be used as the source for data binding.


Implementation
    public function get batchRunIds():Array
    public function set batchRunIds(value:Array):void
creationDateproperty 
creationDate:Date

Gets job creation date.

This property can be used as the source for data binding.


Implementation
    public function get creationDate():Date
    public function set creationDate(value:Date):void
executionDetailsproperty 
executionDetails:BatchValidationJobExecutionDetails

Gets batch job execution details.

This property can be used as the source for data binding.


Implementation
    public function get executionDetails():BatchValidationJobExecutionDetails
    public function set executionDetails(value:BatchValidationJobExecutionDetails):void

See also

jobIdproperty 
jobId:String

Gets the Job Id. Job Id is a GUID that corresponds to an adhoc or scheduled batch validation job.

This property can be used as the source for data binding.


Implementation
    public function get jobId():String
    public function set jobId(value:String):void
parametersproperty 
parameters:BatchValidationParameters

Gets batch job parameters.

This property can be used as the source for data binding.


Implementation
    public function get parameters():BatchValidationParameters
    public function set parameters(value:BatchValidationParameters):void

See also

statusproperty 
status:String

Gets the job status. Status values are:

This property can be used as the source for data binding.


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

Gets the job type. Type values are adhoc or scheduled.

This property can be used as the source for data binding.


Implementation
    public function get type():String
    public function set type(value:String):void
Constructor Detail
BatchValidationJobDetails()Constructor
public function BatchValidationJobDetails(jsonObject:Object)

Constructor Creates a BatchValidationJobDetails object using the decoded object returned from returned from ArcGIS Data Reviewer for Server to the BatchValidationTask class.

Parameters
jsonObject:Object — a json encoded object returned from ArcGIS Data Reviewer for Server

See also