Package com.azure.storage.blob.sas
Class BlobSasPermission
java.lang.Object
com.azure.storage.blob.sas.BlobSasPermission
This is a helper class to construct a string representing the permissions granted by a ServiceSAS to a blob. Setting
a value to true means that any SAS which uses these permissions will grant permissions for that operation. 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
ConstructorDescriptionInitializes aBlobSasPermission
object with all fields set to false. -
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
static BlobSasPermission
Creates aBlobSasPermission
from the specified permissions string.setAddPermission
(boolean hasAddPermission) Sets the add permission status.setCreatePermission
(boolean hasCreatePermission) Sets the create permission status.setDeletePermission
(boolean hasDeletePermission) Sets the delete permission status.setDeleteVersionPermission
(boolean hasDeleteVersionPermission) Sets the delete version permission status.setExecutePermission
(boolean hasExecutePermission) Sets the execute permission status.setImmutabilityPolicyPermission
(boolean immutabilityPolicyPermission) Sets the set immutability policy permission status.setListPermission
(boolean hasListPermission) Sets the list permission status.setMovePermission
(boolean hasMovePermission) Sets the move permission status.setPermanentDeletePermission
(boolean permanentDeletePermission) Sets the permanent delete permission status.setReadPermission
(boolean hasReadPermission) Sets the read permission status.setTagsPermission
(boolean tagsPermission) Sets the tags permission status.setWritePermission
(boolean hasWritePermission) Sets the write permission status.toString()
Converts the given permissions to aString
.
-
Constructor Details
-
BlobSasPermission
public BlobSasPermission()Initializes aBlobSasPermission
object with all fields set to false.
-
-
Method Details
-
parse
Creates aBlobSasPermission
from the specified permissions string. This method will throw anIllegalArgumentException
if it encounters a character that does not correspond to a valid permission.- Parameters:
permissionString
- AString
which represents theBlobSasPermission
.- Returns:
- A
BlobSasPermission
generated from the givenString
. - Throws:
IllegalArgumentException
- IfpermString
contains a character other than r, a, c, w, d, x, l, t, m, e or i.
-
hasReadPermission
public boolean hasReadPermission()- Returns:
- the read permission status.
-
setReadPermission
Sets the read permission status.- Parameters:
hasReadPermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
hasAddPermission
public boolean hasAddPermission()- Returns:
- the add permission status.
-
setAddPermission
Sets the add permission status.- Parameters:
hasAddPermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
hasCreatePermission
public boolean hasCreatePermission()- Returns:
- the create permission status.
-
setCreatePermission
Sets the create permission status.- Parameters:
hasCreatePermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
hasWritePermission
public boolean hasWritePermission()- Returns:
- the write permission status.
-
setWritePermission
Sets the write permission status.- Parameters:
hasWritePermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
hasDeletePermission
public boolean hasDeletePermission()- Returns:
- the delete permission status.
-
setDeletePermission
Sets the delete permission status.- Parameters:
hasDeletePermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
hasDeleteVersionPermission
public boolean hasDeleteVersionPermission()- Returns:
- the delete version permission status.
-
setDeleteVersionPermission
Sets the delete version permission status.- Parameters:
hasDeleteVersionPermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
hasPermanentDeletePermission
public boolean hasPermanentDeletePermission()- Returns:
- the permanent delete permission status.
-
setPermanentDeletePermission
Sets the permanent delete permission status.- Parameters:
permanentDeletePermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
hasTagsPermission
public boolean hasTagsPermission()- Returns:
- the tags permission status.
-
setTagsPermission
Sets the tags permission status.- Parameters:
tagsPermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
hasListPermission
public boolean hasListPermission()- Returns:
- the list permission status.
-
setListPermission
Sets the list permission status.- Parameters:
hasListPermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
hasMovePermission
public boolean hasMovePermission()- Returns:
- the move permission status.
-
setMovePermission
Sets the move permission status.- Parameters:
hasMovePermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
hasExecutePermission
public boolean hasExecutePermission()- Returns:
- the execute permission status.
-
setExecutePermission
Sets the execute permission status.- Parameters:
hasExecutePermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
hasImmutabilityPolicyPermission
public boolean hasImmutabilityPolicyPermission()- Returns:
- the set immutability policy permission status.
-
setImmutabilityPolicyPermission
Sets the set immutability policy permission status.- Parameters:
immutabilityPolicyPermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
toString
Converts the given permissions to aString
. Using this method will guarantee the permissions are in an order accepted by the service.
-