Class PutObjectOptions

java.lang.Object
org.jclouds.http.options.BaseHttpRequestOptions
org.jclouds.s3.options.PutObjectOptions
All Implemented Interfaces:
org.jclouds.http.options.HttpRequestOptions

public class PutObjectOptions extends org.jclouds.http.options.BaseHttpRequestOptions
Contains options supported in the REST API for the PUT object operation.

Usage

The recommended way to instantiate a PutObjectOptions object is to statically import PutObjectOptions.Builder.* and invoke a static creation method followed by an instance mutator (if needed):

import static org.jclouds.s3.commands.options.PutObjectOptions.Builder.* import org.jclouds.s3.S3Client; S3Client connection = // get connection boolean publiclyReadable = connection.putObject("bucketName",new S3Object("key","value"), withAcl(CannedAccessPolicy.PUBLIC_READ));

  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
     
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final PutObjectOptions
     

    Fields inherited from class org.jclouds.http.options.BaseHttpRequestOptions

    formParameters, headers, pathSuffix, payload, queryParameters
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    com.google.common.collect.Multimap<String,String>
     
     
    void
    setHeaderTag(String headerTag)
     
    Override the default ACL (private) with the specified one.

    Methods inherited from class org.jclouds.http.options.BaseHttpRequestOptions

    buildFormParameters, buildPathSuffix, buildQueryParameters, buildStringPayload, equals, getFirstFormOrNull, getFirstHeaderOrNull, getFirstQueryOrNull, hashCode, replaceHeader, toString

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

  • Constructor Details

    • PutObjectOptions

      public PutObjectOptions()
  • Method Details

    • setHeaderTag

      @Inject public void setHeaderTag(@Named("jclouds.aws.header.tag") String headerTag)
    • buildRequestHeaders

      public com.google.common.collect.Multimap<String,String> buildRequestHeaders()
      Specified by:
      buildRequestHeaders in interface org.jclouds.http.options.HttpRequestOptions
      Overrides:
      buildRequestHeaders in class org.jclouds.http.options.BaseHttpRequestOptions
    • withAcl

      public PutObjectOptions withAcl(CannedAccessPolicy acl)
      Override the default ACL (private) with the specified one.
      See Also:
    • getAcl

      public CannedAccessPolicy getAcl()
      See Also: