Class LocalBlobRequestSigner

java.lang.Object
org.jclouds.blobstore.LocalBlobRequestSigner
All Implemented Interfaces:
BlobRequestSigner

@Singleton public class LocalBlobRequestSigner extends Object implements BlobRequestSigner
  • Constructor Summary

    Constructors
    Constructor
    Description
    LocalBlobRequestSigner(org.jclouds.http.filters.BasicAuthentication basicAuth, BlobToHttpGetOptions blob2HttpGetOptions, com.google.common.base.Supplier<URI> endpoint, org.jclouds.io.ContentMetadataCodec contentMetadataCodec)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.jclouds.http.HttpRequest
    signGetBlob(String container, String name)
    gets a signed request, including headers as necessary, to access a blob from an external client.
    org.jclouds.http.HttpRequest
    signGetBlob(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 time
    org.jclouds.http.HttpRequest
    signGetBlob(String container, String name, GetOptions options)
     
    org.jclouds.http.HttpRequest
    signPutBlob(String container, Blob blob)
    gets a signed request, including headers as necessary, to upload a blob from an external client.
    org.jclouds.http.HttpRequest
    signPutBlob(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

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • LocalBlobRequestSigner

      @Inject public LocalBlobRequestSigner(org.jclouds.http.filters.BasicAuthentication basicAuth, BlobToHttpGetOptions blob2HttpGetOptions, com.google.common.base.Supplier<URI> endpoint, org.jclouds.io.ContentMetadataCodec contentMetadataCodec)
  • Method Details