Package org.elasticsearch.common.blobstore.url

Examples of org.elasticsearch.common.blobstore.url.URLBlobStore


            throw new RepositoryException(name.name(), "missing url");
        } else {
            url = new URL(path);
        }
        listDirectories = repositorySettings.settings().getAsBoolean("list_directories", componentSettings.getAsBoolean("list_directories", true));
        blobStore = new URLBlobStore(componentSettings, url);
        basePath = BlobPath.cleanPath();
    }
View Full Code Here

TOP

Related Classes of org.elasticsearch.common.blobstore.url.URLBlobStore

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.