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 Summary
Modifier and TypeMethodDescriptionboolean
Indicates whether anonymous users are allowed to delete features.boolean
Indicates whether anonymous users are allowed to update features.boolean
Indicates whether owner access control allows non-owners to delete features.boolean
Indicates whether owner access control allows non-owners to update features.boolean
Indicates whether the feature service has editor tracking enabled.boolean
Indicates whether the feature service has ownership based access control enabled.
-
Method Details
-
isEditorTrackingEnabled
public boolean isEditorTrackingEnabled()Indicates whether the feature service has editor tracking enabled.- Returns:
- true if the editor tracking enabled, false otherwise
- Since:
- 100.0.0
-
isOwnershipBasedAccessControlEnabled
public 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
-
isAllowOthersToUpdate
public 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
-
isAllowOthersToDelete
public 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
-
isAllowAnonymousToUpdate
public 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
-
isAllowAnonymousToDelete
public 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
-