This repository was archived by the owner on Jul 19, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-6
lines changed
main/java/com/microsoft/azure/storage/blob
test/java/com/microsoft/azure/storage/blob Expand file tree Collapse file tree 2 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -148,15 +148,15 @@ public SASQueryParameters generateSASQueryParameters(SharedKeyCredentials shared
148148 this .startTime == null ? "" : Utility .ISO8601UTCDateFormatter .format (this .startTime ),
149149 this .expiryTime == null ? "" : Utility .ISO8601UTCDateFormatter .format (this .expiryTime ),
150150 getCanonicalName (sharedKeyCredentials .getAccountName ()),
151- this .identifier ,
151+ this .identifier == null ? "" : this . identifier ,
152152 this .ipRange == null ? IPRange .DEFAULT .toString () : this .ipRange .toString (),
153153 this .protocol == null ? "" : protocol .toString (),
154154 this .version ,
155- this .cacheControl ,
156- this .contentDisposition ,
157- this .contentEncoding ,
158- this .contentLanguage ,
159- this .contentType
155+ this .cacheControl == null ? "" : this . cacheControl ,
156+ this .contentDisposition == null ? "" : this . contentDisposition ,
157+ this .contentEncoding == null ? "" : this . contentEncoding ,
158+ this .contentLanguage == null ? "" : this . contentLanguage ,
159+ this .contentType == null ? "" : this . contentType
160160 );
161161
162162 String signature = null ;
Original file line number Diff line number Diff line change 1+ package com.microsoft.azure.storage.blob
2+
3+ import com.microsoft.azure.storage.APISpec
4+
5+ class ServiceSASSignatureValuesTest extends APISpec {
6+
7+ }
You can’t perform that action at this time.
0 commit comments