Class OwnershipBasedAccessControlInfo
- java.lang.Object
-
- com.esri.arcgisruntime.arcgisservices.OwnershipBasedAccessControlInfo
-
public final class OwnershipBasedAccessControlInfo extends Object
Represents information about the ownership-based access control for the features of a feature service layer.- Since:
- 100.0.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isAllowAnonymousToDelete()
Indicates whether anonymous users are allowed to delete features.boolean
isAllowAnonymousToUpdate()
Indicates whether anonymous users are allowed to update features.boolean
isAllowOthersToDelete()
Indicates whether a feature can be deleted by others (i.e.boolean
isAllowOthersToQuery()
Indicates whether a feature can be queried by others (i.e.boolean
isAllowOthersToUpdate()
Indicates whether a feature can be updated by others (i.e.
-
-
-
Method Detail
-
isAllowOthersToDelete
public boolean isAllowOthersToDelete()
Indicates whether a feature can be deleted by others (i.e. non creator).- Returns:
- true if non creators are allowed to delete features, false otherwise
- Since:
- 100.0.0
-
isAllowOthersToQuery
public boolean isAllowOthersToQuery()
Indicates whether a feature can be queried by others (i.e. non creator).- Returns:
- true if non creators are allowed to query features, false otherwise
- Since:
- 100.0.0
-
isAllowOthersToUpdate
public boolean isAllowOthersToUpdate()
Indicates whether a feature can be updated by others (i.e. non creator).- Returns:
- true if non creators are allowed to update 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
-
-