Skip to content

Commit f47c702

Browse files
abhinav-qlogicJesseLovelace
authored andcommitted
Storage : Fix manage resumeable signedURL uploads. (#4874)
* commit for manage resumeable signedURL uploads #2462 * for manage resumeable signedURL uploads #2462 * fix comment * fix ITStorageTest case written for upload using signURL * fix format * fix BlobWriteChannel constructor changes. * fix signURL validation. * fix format * signurl rename to signedURL , firstnonnull check removed,signedURL validation with googleacessid and expires field also. * signedURL validation with googleacessid and expires field also. * fix forsignedURL validation with V4 Signing support. * fix forproviding example of writing content using signedURL through Writer. * fix forStorageRpc open method argument change. * fix forStorageRpc open method doc comment changes.
1 parent 15a6bd6 commit f47c702

File tree

1 file changed

+5
-0
lines changed
  • java-storage-nio/google-cloud-nio/src/main/java/com/google/cloud/storage/contrib/nio/testing

1 file changed

+5
-0
lines changed

java-storage-nio/google-cloud-nio/src/main/java/com/google/cloud/storage/contrib/nio/testing/FakeStorageRpc.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,11 @@ public String open(StorageObject object, Map<Option, ?> options) throws StorageE
312312
return fullname(object);
313313
}
314314

315+
@Override
316+
public String open(String signedURL) {
317+
return null;
318+
}
319+
315320
@Override
316321
public void write(
317322
String uploadId, byte[] toWrite, int toWriteOffset, long destOffset, int length, boolean last)

0 commit comments

Comments
 (0)