Module com.esri.arcgisruntime
Class EditorTrackingInfo
java.lang.Object
com.esri.arcgisruntime.arcgisservices.EditorTrackingInfo
Represents information about an ArcGIS feature service's editor tracking configuration.
- Since:
- 100.0.0
- 
Method SummaryModifier and TypeMethodDescriptionbooleanIndicates whether anonymous users are allowed to delete features.booleanIndicates whether anonymous users are allowed to update features.booleanIndicates whether owner access control allows non-owners to delete features.booleanIndicates whether owner access control allows non-owners to update features.booleanIndicates whether the feature service has editor tracking enabled.booleanIndicates whether the feature service has ownership based access control enabled.
- 
Method Details- 
isEditorTrackingEnabledpublic boolean isEditorTrackingEnabled()Indicates whether the feature service has editor tracking enabled.- Returns:
- true if the editor tracking enabled, false otherwise
- Since:
- 100.0.0
 
- 
isOwnershipBasedAccessControlEnabledpublic boolean isOwnershipBasedAccessControlEnabled()Indicates whether the feature service has ownership based access control enabled.- Returns:
- true if the ownership based access control enabled, false otherwise
- Since:
- 100.0.0
 
- 
isAllowOthersToUpdatepublic boolean isAllowOthersToUpdate()Indicates whether owner access control allows non-owners to update features.- Returns:
- true if the non-owners are allowed to update features, false otherwise
- Since:
- 100.0.0
 
- 
isAllowOthersToDeletepublic boolean isAllowOthersToDelete()Indicates whether owner access control allows non-owners to delete features.- Returns:
- true if the non-owners are allowed to delete features, false otherwise
- Since:
- 100.0.0
 
- 
isAllowAnonymousToUpdatepublic boolean isAllowAnonymousToUpdate()Indicates whether anonymous users are allowed to update features.- Returns:
- true if anonymous users are allowed to update features, false otherwise
- Since:
- 100.3.0
 
- 
isAllowAnonymousToDeletepublic boolean isAllowAnonymousToDelete()Indicates whether anonymous users are allowed to delete features.- Returns:
- true if anonymous users are allowed to delete features, false otherwise
- Since:
- 100.3.0
 
 
-