Uses of Interface
org.jclouds.io.Payload

Packages that use Payload
org.jclouds.http   
org.jclouds.http.internal   
org.jclouds.io   
org.jclouds.io.internal   
org.jclouds.io.payloads   
org.jclouds.rest   
org.jclouds.rest.internal   
 

Uses of Payload in org.jclouds.http
 

Fields in org.jclouds.http declared as Payload
protected  Payload HttpMessage.Builder.payload
           
 

Methods in org.jclouds.http with parameters of type Payload
 T HttpMessage.Builder.payload(Payload payload)
           
 

Constructors in org.jclouds.http with parameters of type Payload
HttpMessage(com.google.common.collect.Multimap<String,String> headers, Payload payload)
           
HttpRequest(String method, URI endpoint, com.google.common.collect.Multimap<String,String> headers, Payload payload, Iterable<HttpRequestFilter> filters)
           
HttpResponse(int statusCode, String message, com.google.common.collect.Multimap<String,String> headers, Payload payload)
           
 

Uses of Payload in org.jclouds.http.internal
 

Fields in org.jclouds.http.internal declared as Payload
protected  Payload PayloadEnclosingImpl.payload
           
 

Methods in org.jclouds.http.internal that return Payload
 Payload PayloadEnclosingImpl.getPayload()
          
 

Methods in org.jclouds.http.internal with parameters of type Payload
 void PayloadEnclosingImpl.setPayload(Payload data)
          Sets payload for the request or the content from the response.
 

Constructors in org.jclouds.http.internal with parameters of type Payload
PayloadEnclosingImpl(Payload payload)
           
 

Uses of Payload in org.jclouds.io
 

Methods in org.jclouds.io that return Payload
 Payload PayloadEnclosing.getPayload()
           
static Payload Payloads.newPayload(Object data)
          Deprecated. see newPayload(ByteSource) or newPayload(InputStream)
 Payload PayloadSlicer.slice(Payload input, long offset, long length)
          Returns a Payload that returns input streams from the an underlying payload, where each stream starts at the given offset and is limited to the specified number of bytes.
 

Methods in org.jclouds.io that return types with arguments of type Payload
 Iterable<Payload> PayloadSlicer.slice(Payload input, long size)
          Returns an Iterable of Payload instances that are no larger than size bytes in length.
 

Methods in org.jclouds.io with parameters of type Payload
static com.google.common.io.ByteSource ByteStreams2.asByteSource(Payload payload)
          Deprecated. 
 void PayloadEnclosing.setPayload(Payload data)
          Sets payload for the request or the content from the response.
 Iterable<Payload> PayloadSlicer.slice(Payload input, long size)
          Returns an Iterable of Payload instances that are no larger than size bytes in length.
 Payload PayloadSlicer.slice(Payload input, long offset, long length)
          Returns a Payload that returns input streams from the an underlying payload, where each stream starts at the given offset and is limited to the specified number of bytes.
 

Uses of Payload in org.jclouds.io.internal
 

Methods in org.jclouds.io.internal that return Payload
protected  Payload BasePayloadSlicer.copyMetadataAndSetLength(Payload input, Payload returnVal, long length)
           
protected  Payload BasePayloadSlicer.doSlice(byte[] content, long offset, long length)
           
protected  Payload BasePayloadSlicer.doSlice(com.google.common.io.ByteSource content, long offset, long length)
           
protected  Payload BasePayloadSlicer.doSlice(File content, long offset, long length)
           
protected  Payload BasePayloadSlicer.doSlice(InputStream content, long offset, long length)
           
protected  Payload BasePayloadSlicer.doSlice(Payload content, long offset, long length)
           
protected  Payload BasePayloadSlicer.doSlice(String content, long offset, long length)
           
 Payload BasePayloadSlicer.PayloadIterator.next()
           
 Payload BasePayloadSlicer.slice(Payload input, long offset, long length)
          Returns a Payload that returns input streams from the an underlying payload, where each stream starts at the given offset and is limited to the specified number of bytes.
 

Methods in org.jclouds.io.internal that return types with arguments of type Payload
protected  Iterable<Payload> BasePayloadSlicer.doSlice(byte[] rawContent, ContentMetadata meta)
           
protected  Iterable<Payload> BasePayloadSlicer.doSlice(File rawContent, ContentMetadata meta)
           
protected  Iterable<Payload> BasePayloadSlicer.doSlice(InputStream rawContent, ContentMetadata meta)
           
protected  Iterable<Payload> BasePayloadSlicer.doSlice(Payload input, ContentMetadata meta)
           
protected  Iterable<Payload> BasePayloadSlicer.doSlice(String rawContent, ContentMetadata meta)
           
 Iterator<Payload> BasePayloadSlicer.PayloadIterator.iterator()
           
 Iterable<Payload> BasePayloadSlicer.slice(Payload input, long size)
           
 

Methods in org.jclouds.io.internal with parameters of type Payload
protected  Payload BasePayloadSlicer.copyMetadataAndSetLength(Payload input, Payload returnVal, long length)
           
protected  Iterable<Payload> BasePayloadSlicer.doSlice(Payload input, ContentMetadata meta)
           
protected  Payload BasePayloadSlicer.doSlice(Payload content, long offset, long length)
           
 Iterable<Payload> BasePayloadSlicer.slice(Payload input, long size)
           
 Payload BasePayloadSlicer.slice(Payload input, long offset, long length)
          Returns a Payload that returns input streams from the an underlying payload, where each stream starts at the given offset and is limited to the specified number of bytes.
 

Uses of Payload in org.jclouds.io.payloads
 

Classes in org.jclouds.io.payloads that implement Payload
 class BaseCipherPayload
           
 class BasePayload<V>
           
 class ByteArrayPayload
          Deprecated. see ByteSourcePayload
 class ByteSourcePayload
          A repeatable, ByteSource-backed Payload.
 class DelegatingPayload
           
 class FilePayload
          Deprecated. see ByteSourcePayload
 class InputStreamPayload
           
 class MultipartForm
           
 class Part
           
 class PhantomPayload
           
 class RSADecryptingPayload
           
 class RSAEncryptingPayload
           
 class StringPayload
          Deprecated. see ByteSourcePayload
 class UrlEncodedFormPayload
           
 

Methods in org.jclouds.io.payloads that return Payload
 Payload DelegatingPayload.getDelegate()
           
 

Methods in org.jclouds.io.payloads with parameters of type Payload
static Part Part.create(String name, Payload delegate, Part.PartOptions options)
           
 

Constructors in org.jclouds.io.payloads with parameters of type Payload
BaseCipherPayload(Crypto crypto, Payload delegate, Key key)
           
DelegatingPayload(Payload delegate)
           
RSADecryptingPayload(Crypto crypto, Payload delegate, Key key)
           
RSAEncryptingPayload(Crypto crypto, Payload delegate, Key key)
           
 

Uses of Payload in org.jclouds.rest
 

Methods in org.jclouds.rest with parameters of type Payload
 String HttpClient.post(URI location, Payload payload)
           
 com.google.common.util.concurrent.ListenableFuture<String> HttpAsyncClient.post(URI location, Payload payload)
          Deprecated.  
 String HttpClient.put(URI location, Payload payload)
           
 com.google.common.util.concurrent.ListenableFuture<String> HttpAsyncClient.put(URI location, Payload payload)
          Deprecated.  
 

Uses of Payload in org.jclouds.rest.internal
 

Constructors in org.jclouds.rest.internal with parameters of type Payload
GeneratedHttpRequest(String method, URI endpoint, com.google.common.collect.Multimap<String,String> headers, Payload payload, Iterable<HttpRequestFilter> filters, Invocation invocation, com.google.common.base.Optional<Invocation> caller)
           
 



Copyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.