Package fuse.compat

Examples of fuse.compat.Filesystem2ToFilesystem3Adapter


     * @param filesystem2 The filesystem to adapt.
     * @param log         The logger that should be used by the adapter.
     * @return The new FuseFS adapter.
     */
    public static FuseFS adapt(Filesystem2 filesystem2, Log log) {
        return adapt(new Filesystem2ToFilesystem3Adapter(filesystem2), 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

                new Filesystem2ToFilesystem3Adapter(new Filesystem1ToFilesystem2Adapter(filesystem1)),
                LogFactory.getLog(filesystem1.getClass()));
    }

    public static void mount(String[] args, Filesystem2 filesystem2) throws Exception {
        mount(args, new Filesystem2ToFilesystem3Adapter(filesystem2), LogFactory.getLog(filesystem2.getClass()));
    }
View Full Code Here

TOP

Related Classes of fuse.compat.Filesystem2ToFilesystem3Adapter

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.