Hide Table of Contents
esri/dijit/util
esri/layer/pixelFilters
esri/process
esri/support
esri/workers
Class: ReviewerSession

require(["esri/tasks/datareviewer/ReviewerSession"], function(ReviewerSession) { /* code goes here */ });

Description

(Added at v3.14)
Represents an ArcGIS Data Reviewer session in which validation and manual quality control results are written to the reviewer workspace.

Samples

Search for samples that use this class.

Constructors

NameSummary
new ReviewerSession(sessionId, sessionName, userName, versionName)Creates a new ReviewerSession object.

Properties

NameTypeSummary
sessionIdNumberNumeric identifier of the session.
sessionNameStringSession name.
userNameStringName under which records are written to the reviewer workspace.
versionNameStringEnterprise geodatabase version in which records are validated.

Methods

NameReturn typeSummary
toString()StringThe Session ID and name in format Session 10 : Parcels.
Constructor Details

new ReviewerSession(sessionId, sessionName, userName, versionName)

Creates a new ReviewerSession object.
Parameters:
<String> sessionId Required Numeric identifier of the session. For example: Session 10, where 10 is the ID.
<String> sessionName Required Name of the session. For example: Session 10 : Parcels, where Parcels is the name.
<String> userName Required User name under which records are written to the reviewer workspace.
<String> versionName Required The enterprise geodatabase version in which records are validated.
Property Details

<Number> sessionId

Numeric identifier of the session.

<String> sessionName

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

<String> userName

Name under which records are written to the reviewer workspace.

<String> versionName

Enterprise geodatabase version in which records are validated.
Method Details

toString()

The Session ID and name in format Session 10 : Parcels.
Return type: String
Show Modal