Package org.jclouds.blobstore.options

Examples of org.jclouds.blobstore.options.CreateContainerOptions$ImmutableCreateContainerOptions


                return;
            }
        }
        logger.debug("Creating bucket with location: {}", location);

        CreateContainerOptions options = new CreateContainerOptions();
        String acl = request.getHeader("x-amz-acl");
        if ("public-read".equals(acl)) {
            options.publicRead();
        }

        try {
            if (blobStore.createContainerInLocation(location, containerName,
                    options)) {

TOP

Related Classes of org.jclouds.blobstore.options.CreateContainerOptions$ImmutableCreateContainerOptions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.