Package org.jboss.fresh.vfs

Examples of org.jboss.fresh.vfs.VFSStore


            p = System.getProperties();

        String fsname = p.getProperty("memfs.name", "");
        if("".equals(fsname)) throw new RuntimeException("memfs.name property not specified - it is used to specify a required VFS name");

        VFSStore store = new MemVFSStore(meta, fsname);

        return store;
    }
View Full Code Here


            p = System.getProperties();

        String fsroot = p.getProperty("diskfs.root", "");
        if("".equals(fsroot)) throw new RuntimeException("diskfs.root property not specified - it is required.");

        VFSStore store = new DiskVFSStore(meta, fsroot);

        return store;
    }
View Full Code Here

TOP

Related Classes of org.jboss.fresh.vfs.VFSStore

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.