public OpenstackStorageClient(HttpClient httpClient, URI uri, TokenProvider tokenProvider) {
super(httpClient, uri, tokenProvider);
}
public StorageObjectInfo findStorageObjectInfo(String path) throws RestClientException {
HttpRequest request = buildHead(path);
HttpResponse response = null;
try {
response = executeRawRequest(request);
StorageObjectInfo info = new StorageObjectInfo();