Package io.fathom.cloud.openstack.client.storage.model

Examples of io.fathom.cloud.openstack.client.storage.model.StorageObjectInfo


        HttpRequest request = buildHead(path);
        HttpResponse response = null;
        try {
            response = executeRawRequest(request);

            StorageObjectInfo info = new StorageObjectInfo();

            {
                String header = response.getFirstHeader(HttpHeaders.CONTENT_LENGTH);
                if (header != null) {
                    info.length = Long.valueOf(header);
View Full Code Here

TOP

Related Classes of io.fathom.cloud.openstack.client.storage.model.StorageObjectInfo

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.