AccountSasQueryParameters Class
- java.
lang. Object - com.
azure. storage. common. sas. BaseSasQueryParameters - com.
azure. storage. common. sas. AccountSasQueryParameters
- com.
- com.
@Deprecated
public final class AccountSasQueryParameters
extends BaseSasQueryParameters
Note
This class has been deprecated.
Please use the generate
Represents the components that make up an Azure Storage SAS' query parameters. This type is not constructed directly by the user; it is only generated by the AccountSasSignatureValues type. Once generated, it can be set on a ServiceClientBuilder object to be constructed as part of a URL or it can be encoded into a String
and appended to a URL directly (though caution should be taken here in case there are existing query parameters, which might affect the appropriate means of appending these query parameters). NOTE: Instances of this class are immutable to ensure thread safety.
Method Summary
Modifier and Type | Method and Description |
---|---|
String |
encode()
Deprecated
Please use the generate
Encodes all SAS query parameters into a string that can be appended to a URL. |
String |
getResourceTypes()
Deprecated
Please use AccountSasSignatureValues
|
String |
getServices()
Deprecated
Please use AccountSasSignatureValues
|
Methods inherited from BaseSasQueryParameters
Methods inherited from java.lang.Object
Method Details
encode
@Deprecated
public String encode()
Deprecated
Encodes all SAS query parameters into a string that can be appended to a URL.
Overrides:
AccountSasQueryParameters.encode()Returns:
String
representing the SAS query parameters.getResourceTypes
@Deprecated
public String getResourceTypes()
Deprecated
Returns:
getServices
@Deprecated
public String getServices()
Deprecated
Returns:
Applies to
Azure SDK for Java