Uses of Class
org.jclouds.http.options.GetOptions

Packages that use GetOptions
org.jclouds.atmos   
org.jclouds.azureblob   
org.jclouds.blobstore.functions   
org.jclouds.http.options   
org.jclouds.openstack.swift   
org.jclouds.openstack.swift.blobstore.functions   
org.jclouds.s3 This package contains an Amazon S3 client implemented by HttpCommandExecutorService commands. 
 

Uses of GetOptions in org.jclouds.atmos
 

Methods in org.jclouds.atmos with parameters of type GetOptions
 com.google.common.util.concurrent.ListenableFuture<AtmosObject> AtmosAsyncClient.readFile(String path, GetOptions... options)
           
 AtmosObject AtmosClient.readFile(String path, GetOptions... options)
           
 

Uses of GetOptions in org.jclouds.azureblob
 

Methods in org.jclouds.azureblob with parameters of type GetOptions
 com.google.common.util.concurrent.ListenableFuture<AzureBlob> AzureBlobAsyncClient.getBlob(String container, String name, GetOptions... options)
           
 AzureBlob AzureBlobClient.getBlob(String container, String name, GetOptions... options)
          The Get Blob operation reads or downloads a blob from the system, including its metadata and properties.
 

Uses of GetOptions in org.jclouds.blobstore.functions
 

Methods in org.jclouds.blobstore.functions that return GetOptions
 GetOptions BlobToHttpGetOptions.apply(GetOptions from)
           
 

Methods in org.jclouds.blobstore.functions with parameters of type GetOptions
 GetOptions HttpGetOptionsListToGetOptions.apply(GetOptions[] from)
           
 

Uses of GetOptions in org.jclouds.http.options
 

Fields in org.jclouds.http.options declared as GetOptions
static GetOptions GetOptions.NONE
           
 

Methods in org.jclouds.http.options that return GetOptions
 GetOptions GetOptions.ifETagDoesntMatch(String eTag)
          The object should not have a eTag hash corresponding with the parameter eTag.
static GetOptions GetOptions.Builder.ifETagDoesntMatch(String eTag)
           
 GetOptions GetOptions.ifETagMatches(String eTag)
          The object's eTag hash should match the parameter eTag.
static GetOptions GetOptions.Builder.ifETagMatches(String eTag)
           
 GetOptions GetOptions.ifModifiedSince(Date ifModifiedSince)
          Only return the object if it has changed since this time.
static GetOptions GetOptions.Builder.ifModifiedSince(Date ifModifiedSince)
           
 GetOptions GetOptions.ifUnmodifiedSince(Date ifUnmodifiedSince)
          Only return the object if it hasn't changed since this time.
static GetOptions GetOptions.Builder.ifUnmodifiedSince(Date ifUnmodifiedSince)
           
 GetOptions GetOptions.range(long start, long end)
          download the specified range of the object.
static GetOptions GetOptions.Builder.range(long start, long end)
           
 GetOptions GetOptions.startAt(long start)
          download the object offset at start
static GetOptions GetOptions.Builder.startAt(long start)
           
 GetOptions GetOptions.tail(long count)
          download the last count bytes of the object
static GetOptions GetOptions.Builder.tail(long count)
           
 

Uses of GetOptions in org.jclouds.openstack.swift
 

Methods in org.jclouds.openstack.swift with parameters of type GetOptions
 com.google.common.util.concurrent.ListenableFuture<SwiftObject> CommonSwiftAsyncClient.getObject(String container, String name, GetOptions... options)
           
 SwiftObject CommonSwiftClient.getObject(String container, String name, GetOptions... options)
           
 

Uses of GetOptions in org.jclouds.openstack.swift.blobstore.functions
 

Methods in org.jclouds.openstack.swift.blobstore.functions that return GetOptions
 GetOptions BlobToObjectGetOptions.apply(GetOptions from)
           
 

Uses of GetOptions in org.jclouds.s3
 

Methods in org.jclouds.s3 with parameters of type GetOptions
 com.google.common.util.concurrent.ListenableFuture<S3Object> S3AsyncClient.getObject(String bucketName, String key, GetOptions... options)
           
 S3Object S3Client.getObject(String bucketName, String key, GetOptions... options)
          Retrieves the S3Object associated with the Key or KeyNotFoundException if not available;

To use GET, you must have READ access to the object.

 



Copyright © 2009-2012 jclouds. All Rights Reserved.