Package fuse.compat

Examples of fuse.compat.Filesystem1ToFilesystem2Adapter


     * @param filesystem1 The filesystem to adapt.
     * @param log         The logger that should be used by the adapter.
     * @return The new FuseFS adapter.
     */
    public static FuseFS adapt(Filesystem1 filesystem1, Log log) {
        return adapt(new Filesystem1ToFilesystem2Adapter(filesystem1), log);
    }
View Full Code Here


    //
    // compatibility APIs
    public static void mount(String[] args, Filesystem1 filesystem1) throws Exception {
        mount(args,
                new Filesystem2ToFilesystem3Adapter(new Filesystem1ToFilesystem2Adapter(filesystem1)),
                LogFactory.getLog(filesystem1.getClass()));
    }
View Full Code Here

TOP

Related Classes of fuse.compat.Filesystem1ToFilesystem2Adapter

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.