Package com.azure.data.tables.sas
Class TableAccountSasService
java.lang.Object
com.azure.data.tables.sas.TableAccountSasService
This is a helper class to construct a string representing the services accessible by an Account SAS. Setting a value
to true means that any SAS which uses these permissions will grant access to that service. Once all the values are
set, this should be serialized with
toString() and set as the services field on an
TableAccountSasSignatureValues object. It is possible to construct the services string without this class, but
the order of the services is particular and this class guarantees correctness.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns the access status for blob resources.booleanReturns the access status for file resources.booleanReturns the access status for queue resources.booleanReturns the access status for table resources.static TableAccountSasServiceCreates anTableAccountSasServicefrom the specified services string.setBlobAccess(boolean blob) Sets the access status for blob resources.setFileAccess(boolean file) Sets the access status for file resources.setQueueAccess(boolean queue) Sets the access status for queue resources.setTableAccess(boolean table) Sets the access status for table resources.toString()Converts the given services to aString.
-
Constructor Details
-
TableAccountSasService
public TableAccountSasService()Creates aTableAccountSasServicewith all fields set to false.
-
-
Method Details
-
parse
Creates anTableAccountSasServicefrom the specified services string. This method will throw anIllegalArgumentExceptionif it encounters a character that does not correspond to a valid service.- Parameters:
servicesString- AStringwhich represents theaccount services.- Returns:
- A
TableAccountSasServicegenerated from the givenString. - Throws:
IllegalArgumentException- IfservicesStringcontains a character other than b, f, q, or t.
-
hasBlobAccess
public boolean hasBlobAccess()Returns the access status for blob resources.- Returns:
- The access status for blob resources.
-
setBlobAccess
Sets the access status for blob resources.- Parameters:
blob- The access status to set.- Returns:
- The updated
TableAccountSasServiceobject.
-
hasFileAccess
public boolean hasFileAccess()Returns the access status for file resources.- Returns:
- The access status for file resources.
-
setFileAccess
Sets the access status for file resources.- Parameters:
file- The access status to set.- Returns:
- The updated
TableAccountSasServiceobject.
-
hasQueueAccess
public boolean hasQueueAccess()Returns the access status for queue resources.- Returns:
- The access status for queue resources.
-
setQueueAccess
Sets the access status for queue resources.- Parameters:
queue- The access status to set.- Returns:
- The updated
TableAccountSasServiceobject.
-
hasTableAccess
public boolean hasTableAccess()Returns the access status for table resources.- Returns:
- The access status for table resources.
-
setTableAccess
Sets the access status for table resources.- Parameters:
table- The access status to set.- Returns:
- The updated
TableAccountSasServiceobject.
-
toString
Converts the given services to aString. Using this method will guarantee the services are in an order accepted by the service. If all services are set to false, an empty string is returned from this method.- Overrides:
toStringin classObject- Returns:
- A
Stringwhich represents theaccount services.
-