Packagecom.esri.drs
Classpublic class ReviewerSession
InheritanceReviewerSession Inheritance Object
Implements flash.events.IEventDispatcher

Represents an ArcGIS Data Reviewer session in which validation and manual quality control results are written to the Reviewer workspace. Instances of this class are returned by the getReviewerSessions function in DashboardTask, BatchValidationTask and ReviewerResultsTask.

See also

DRSBaseTask.getReviewerSessions()


Public Properties
 PropertyDefined By
  sessionId : uint
Numeric identifier of the session
ReviewerSession
  sessionName : String
Session name, the string following the colon (:) in Session 1 : Parcels.
ReviewerSession
  userName : String
Name under which records are written to the reviewer workspace.
ReviewerSession
  versionName : String
Enterprise geodatabase version in which records are validated.
ReviewerSession
Public Methods
 MethodDefined By
  
ReviewerSession(sessionId:uint, sessionName:String, userName:String = null, versionName:String = null)
Constructor
ReviewerSession
  
toString():String
ReviewerSession
Property Detail
sessionIdproperty
sessionId:uint

Numeric identifier of the session

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


Implementation
    public function get sessionId():uint
    public function set sessionId(value:uint):void
sessionNameproperty 
sessionName:String

Session name, the string following the colon (:) in Session 1 : Parcels.

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


Implementation
    public function get sessionName():String
    public function set sessionName(value:String):void
userNameproperty 
userName:String

Name under which records are written to the reviewer workspace.

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


Implementation
    public function get userName():String
    public function set userName(value:String):void
versionNameproperty 
versionName:String

Enterprise geodatabase version in which records are validated.

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


Implementation
    public function get versionName():String
    public function set versionName(value:String):void
Constructor Detail
ReviewerSession()Constructor
public function ReviewerSession(sessionId:uint, sessionName:String, userName:String = null, versionName:String = null)

Constructor

Parameters
sessionId:uint — Numeric identifier of the session. For example: Session 10, where 10 is the ID.
 
sessionName:String — Name of the session. For example: Session 10 : Parcels, where Parcels is the name.
 
userName:String (default = null) — User name under which records are written to the reviewer workspace.
 
versionName:String (default = null) — Enterprise geodatabase version in which records are validated.
Method Detail
toString()method
public function toString():String

Returns
String — The Session ID and name in format Session 10 : Parcels.