Package com.azure.data.tables.sas
Class TableSasPermission
java.lang.Object
com.azure.data.tables.sas.TableSasPermission
Constructs a string representing the permissions granted by an Azure Service SAS to a table. Setting a value to true
means that any SAS which uses these permissions will grant permissions for that operation. Once all the values are
set, this should be serialized with
toString and set as the permissions field on
TableSasSignatureValues.setPermissions(TableSasPermission) TableSasSignatureValues}.
It is possible to construct the permissions string without this class, but the order of the permissions is particular and this class guarantees correctness.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanGets the add permission status.booleanGets the delete permission status.booleanGets the read permissions status.booleanGets the update permission status.static TableSasPermissionCreates aTableSasPermissionfrom the specified permissions string.setAddPermission(boolean hasAddPermission) Sets the add permission status.setDeletePermission(boolean hasDeletePermission) Sets the process permission status.setReadPermission(boolean hasReadPermission) Sets the read permission status.setUpdatePermission(boolean hasUpdatePermission) Sets the update permission status.toString()Converts the given permissions to aString.
-
Constructor Details
-
TableSasPermission
public TableSasPermission()
-
-
Method Details
-
parse
Creates aTableSasPermissionfrom the specified permissions string. This method will throw anIllegalArgumentExceptionif it encounters a character that does not correspond to a valid permission.- Parameters:
permString- AStringwhich represents theTableSasPermission.- Returns:
- A
TableSasPermissiongenerated from the givenString. - Throws:
IllegalArgumentException- IfpermStringcontains a character other than r, a, u, or d.
-
hasReadPermission
public boolean hasReadPermission()Gets the read permissions status.- Returns:
trueif the SAS has permission to get entities and query entities.false, otherwise.
-
setReadPermission
Sets the read permission status.- Parameters:
hasReadPermission-trueif the SAS has permission to get entities and query entities.false, otherwise- Returns:
- The updated TableSasPermission object.
-
hasAddPermission
public boolean hasAddPermission()Gets the add permission status.- Returns:
trueif the SAS has permission to add entities to the table.false, otherwise.
-
setAddPermission
Sets the add permission status.- Parameters:
hasAddPermission-trueif the SAS has permission to add entities to the table.false, otherwise.Note: The
addandupdatepermissions are required for upsert operations.- Returns:
- The updated
TableSasPermissionobject.
-
hasUpdatePermission
public boolean hasUpdatePermission()Gets the update permission status.- Returns:
trueif the SAS has permission to update entities in the table.false, otherwise.
-
setUpdatePermission
Sets the update permission status.Note: The
addandupdatepermissions are required for upsert operations.- Parameters:
hasUpdatePermission-trueif the SAS has permission to update entities in the table.false, otherwise.- Returns:
- The updated
TableSasPermissionobject.
-
hasDeletePermission
public boolean hasDeletePermission()Gets the delete permission status.- Returns:
trueif the SAS has permission to delete entities from the table.false, otherwise.
-
setDeletePermission
Sets the process permission status.- Parameters:
hasDeletePermission-trueif the SAS has permission to delete entities from the table.false, otherwise.- Returns:
- The updated
TableSasPermissionobject.
-
toString
Converts the given permissions to aString. Using this method will guarantee the permissions are in an order accepted by the service. If all permissions are set to false, an empty string is returned from this method.- Overrides:
toStringin classObject- Returns:
- A
Stringwhich represents theTableSasPermission.
-