Class FileSystemSasPermission
java.lang.Object
com.azure.storage.file.datalake.sas.FileSystemSasPermission
This is a helper class to construct a string representing the permissions granted by a ServiceSAS to a file system.
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
ConstructorsConstructorDescriptionInitializes anFileSystemSasPermission
object with all fields set to false. -
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
static FileSystemSasPermission
Creates anFileSystemSasPermission
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.setExecutePermission
(boolean hasExecutePermission) Sets the execute permission status.setListPermission
(boolean hasListPermission) Sets the list permission status.setManageAccessControlPermission
(boolean hasManageAccessControlPermission) Sets the manage access control permission status.setManageOwnershipPermission
(boolean hasManageOwnershipPermission) Sets the manage ownership permission status.setMovePermission
(boolean hasMovePermission) Sets the move permission status.setReadPermission
(boolean hasReadPermission) Sets the read permission status.setWritePermission
(boolean hasWritePermission) Sets the write permission status.toString()
Converts the given permissions to aString
.
-
Constructor Details
-
FileSystemSasPermission
public FileSystemSasPermission()Initializes anFileSystemSasPermission
object with all fields set to false.
-
-
Method Details
-
parse
Creates anFileSystemSasPermission
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 theFileSystemSasPermission
.- Returns:
- A
FileSystemSasPermission
generated from the givenString
. - Throws:
IllegalArgumentException
- IfpermissionString
contains a character other than r, a, c, w, d, l, m, e, o, or p.
-
hasReadPermission
public boolean hasReadPermission()- Returns:
- the read permission status
-
setReadPermission
Sets the read permission status.- Parameters:
hasReadPermission
- Permission status to set- Returns:
- the updated FileSystemSasPermission 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 FileSystemSasPermission 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 FileSystemSasPermission 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 FileSystemSasPermission 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 FileSystemSasPermission 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 FileSystemSasPermission 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 FileSystemSasPermission 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 FileSystemSasPermission object.
-
hasManageOwnershipPermission
public boolean hasManageOwnershipPermission()- Returns:
- the manage ownership permission status.
-
setManageOwnershipPermission
Sets the manage ownership permission status.- Parameters:
hasManageOwnershipPermission
- Permission status to set- Returns:
- the updated FileSystemSasPermission object.
-
hasManageAccessControlPermission
public boolean hasManageAccessControlPermission()- Returns:
- the manage access control permission status.
-
setManageAccessControlPermission
public FileSystemSasPermission setManageAccessControlPermission(boolean hasManageAccessControlPermission) Sets the manage access control permission status.- Parameters:
hasManageAccessControlPermission
- Permission status to set- Returns:
- the updated FileSystemSasPermission object.
-
toString
Converts the given permissions to aString
. Using this method will guarantee the permissions are in an order accepted by the service.
-