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

Encapsulates batch validation job execution details. Details include status, messages, geoprocessing and batch run IDs, and start and finish times. Job execution details are included in Batch Validation job details.

Batch Job Execution Details are empty until execution has started. Adhoc jobs contain details for a single execution. Scheduled jobs contain details for the last execution only.

See also

BatchValidationJobDetails


Public Properties
 PropertyDefined By
  batchRunId : String
Gets the batch run Id of the job execution.
BatchValidationJobExecutionDetails
  finishTimeUTC : Date
Gets the finish time of the job execution.
BatchValidationJobExecutionDetails
  gpJobId : String
Gets the job's geoprocessing Job Id.
BatchValidationJobExecutionDetails
  gpUrl : String
Gets the URL of the geoprocessing service that executed the batch validation.
BatchValidationJobExecutionDetails
  messages : String
Gets batch validation messages.
BatchValidationJobExecutionDetails
  startTimeUTC : Date
Gets the start time of the job execution.
BatchValidationJobExecutionDetails
  status : String
Gets the batch validation status.
BatchValidationJobExecutionDetails
Public Methods
 MethodDefined By
  
Constructor Creates a BatchValidationJobExecutionDetails object using the decoded object returned from ArcGIS Data Reviewer for Server to the BatchValidationTask class.
BatchValidationJobExecutionDetails
Property Detail
batchRunIdproperty
batchRunId:String

Gets the batch run Id of the job execution.

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


Implementation
    public function get batchRunId():String
    public function set batchRunId(value:String):void
finishTimeUTCproperty 
finishTimeUTC:Date

Gets the finish time of the job execution.

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


Implementation
    public function get finishTimeUTC():Date
    public function set finishTimeUTC(value:Date):void
gpJobIdproperty 
gpJobId:String

Gets the job's geoprocessing Job Id.

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


Implementation
    public function get gpJobId():String
    public function set gpJobId(value:String):void
gpUrlproperty 
gpUrl:String

Gets the URL of the geoprocessing service that executed the batch validation.

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


Implementation
    public function get gpUrl():String
    public function set gpUrl(value:String):void
messagesproperty 
messages:String

Gets batch validation messages.

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


Implementation
    public function get messages():String
    public function set messages(value:String):void
startTimeUTCproperty 
startTimeUTC:Date

Gets the start time of the job execution.

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


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

Gets the batch validation 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
Constructor Detail
BatchValidationJobExecutionDetails()Constructor
public function BatchValidationJobExecutionDetails(jsonObject:Object)

Constructor Creates a BatchValidationJobExecutionDetails object using the decoded object 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