Class EditorTrackingInfo
- java.lang.Object
-
- com.esri.arcgisruntime.arcgisservices.EditorTrackingInfo
-
public final class EditorTrackingInfo extends java.lang.ObjectRepresents information about an ArcGIS feature service's editor tracking configuration.- Since:
- 100.0.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisAllowAnonymousToDelete()Indicates whether anonymous users are allowed to delete features.booleanisAllowAnonymousToUpdate()Indicates whether anonymous users are allowed to update features.booleanisAllowOthersToDelete()Indicates whether owner access control allows non-owners to delete features.booleanisAllowOthersToUpdate()Indicates whether owner access control allows non-owners to update features.booleanisEditorTrackingEnabled()Indicates whether the feature service has editor tracking enabled.booleanisOwnershipBasedAccessControlEnabled()Indicates whether the feature service has ownership based access control enabled.
-
-
-
Method Detail
-
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
-
-