Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed issue where account SAS does not work on clients #6601

Merged
merged 9 commits into from
Dec 6, 2019
Prev Previous commit
Next Next commit
trying to fix analyze step + java 9 inaccessible class
gapra-msft committed Dec 3, 2019
commit f4605393ad17e4b4e0b9d9885f1dde7ea59a4e36
1 change: 1 addition & 0 deletions sdk/storage/azure-storage-blob/pom.xml
Original file line number Diff line number Diff line change
@@ -274,6 +274,7 @@
--add-exports com.azure.core/com.azure.core.implementation.serializer.jackson=ALL-UNNAMED
--add-exports com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED
--add-opens com.azure.storage.common/com.azure.storage.common.implementation=ALL-UNNAMED
--add-opens com.azure.storage.common/com.azure.storage.common.sas=ALL-UNNAMED
--add-opens com.azure.storage.blob/com.azure.storage.blob=ALL-UNNAMED
--add-opens com.azure.storage.blob/com.azure.storage.blob.implementation=ALL-UNNAMED
--add-opens com.azure.storage.blob/com.azure.storage.blob.specialized=ALL-UNNAMED
Original file line number Diff line number Diff line change
@@ -9,6 +9,11 @@
import java.time.OffsetDateTime;
import java.util.Map;

/**
* 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 URLParts type. NOTE: Instances of this class are immutable to ensure thread
* safety.
*/
public class CommonSasQueryParameters extends BaseSasQueryParameters {

private final String services;