Package com.azure.storage.blob.sas
Class BlobContainerSasPermission
java.lang.Object
com.azure.storage.blob.sas.BlobContainerSasPermission
This is a helper class to construct a string representing the permissions granted by a ServiceSAS to a container.
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 anBlobContainerSasPermission
object with all fields set to false. -
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
static BlobContainerSasPermission
Creates anBlobContainerSasPermission
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.setFilterPermission
(boolean hasFilterPermission) Sets the filter 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.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
-
BlobContainerSasPermission
public BlobContainerSasPermission()Initializes anBlobContainerSasPermission
object with all fields set to false.
-
-
Method Details
-
parse
Creates anBlobContainerSasPermission
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 theBlobContainerSasPermission
.- Returns:
- A
BlobContainerSasPermission
generated from the givenString
. - Throws:
IllegalArgumentException
- IfpermString
contains a character other than r, a, c, w, d, x, l, t 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 BlobContainerSasPermission 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 BlobContainerSasPermission 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 BlobContainerSasPermission 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 BlobContainerSasPermission 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 BlobContainerSasPermission 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 BlobContainerSasPermission 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 BlobContainerSasPermission 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 BlobContainerSasPermission 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 BlobContainerSasPermission 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 BlobContainerSasPermission object.
-
hasFilterPermission
public boolean hasFilterPermission()- Returns:
- the filter permission status.
-
setFilterPermission
Sets the filter permission status.- Parameters:
hasFilterPermission
- Permission status to set- Returns:
- the updated BlobSasPermission object.
-
hasImmutabilityPolicyPermission
public boolean hasImmutabilityPolicyPermission()- Returns:
- the set immutability policy permission status.
-
setImmutabilityPolicyPermission
public BlobContainerSasPermission setImmutabilityPolicyPermission(boolean immutabilityPolicyPermission) 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.
-