Package org.jclouds.blobstore.internal
Class RequestSigningUnsupported
java.lang.Object
org.jclouds.blobstore.internal.RequestSigningUnsupported
- All Implemented Interfaces:
BlobRequestSigner
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.jclouds.http.HttpRequestsignGetBlob(String container, String name) gets a signed request, including headers as necessary, to access a blob from an external client.org.jclouds.http.HttpRequestsignGetBlob(String container, String name, long timeInSeconds) gets a signed request, including headers as necessary, to allow access to a blob from an external client for a limited period of timeorg.jclouds.http.HttpRequestsignGetBlob(String container, String name, GetOptions options) org.jclouds.http.HttpRequestsignPutBlob(String container, Blob blob) gets a signed request, including headers as necessary, to upload a blob from an external client.org.jclouds.http.HttpRequestsignPutBlob(String container, Blob blob, long timeInSeconds) gets a signed request, including headers as necessary, to upload a blob from an external client for a limited period of time
-
Constructor Details
-
RequestSigningUnsupported
public RequestSigningUnsupported()
-
-
Method Details
-
signGetBlob
Description copied from interface:BlobRequestSignergets a signed request, including headers as necessary, to access a blob from an external client.- Specified by:
signGetBlobin interfaceBlobRequestSigner- Parameters:
container- container where the blob resides
-
signGetBlob
Description copied from interface:BlobRequestSignergets a signed request, including headers as necessary, to allow access to a blob from an external client for a limited period of time- Specified by:
signGetBlobin interfaceBlobRequestSignertimeInSeconds- validity time in seconds for the generated request- See Also:
-
signGetBlob
- Specified by:
signGetBlobin interfaceBlobRequestSigner- See Also:
-
signPutBlob
Description copied from interface:BlobRequestSignergets a signed request, including headers as necessary, to upload a blob from an external client.Blob blob = context.getBlobStore.blobBuilder().name("name").forSigning().contentType("text/plain") .contentLength(length).build();- Specified by:
signPutBlobin interfaceBlobRequestSigner- Parameters:
container- container where the blob residesblob- what to upload- See Also:
-
BlobBuilder#forSigning
-
signPutBlob
Description copied from interface:BlobRequestSignergets a signed request, including headers as necessary, to upload a blob from an external client for a limited period of time- Specified by:
signPutBlobin interfaceBlobRequestSignertimeInSeconds- validity time in seconds for the generated request- See Also:
-
BlobBuilder#forSigningBlobRequestSigner.signPutBlob(java.lang.String, org.jclouds.blobstore.domain.Blob)
-