Package com.mozilla.grouperfish.services.api

Examples of com.mozilla.grouperfish.services.api.FileSystem


    }

    @Override
    protected void configure() {

        final FileSystem localFs = new LocalFileSystem("./data/local/");

        bind(FileSystem.class).annotatedWith(Local.class).toInstance(localFs);
        bind(FileSystem.class).toInstance(localFs);
        if (hasHadoop(properties)) {
            log.info("Hadoop available. Using HDFS for shared file system.");
View Full Code Here

TOP

Related Classes of com.mozilla.grouperfish.services.api.FileSystem

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.