Package org.xtreemfs.babudb.config

Examples of org.xtreemfs.babudb.config.PluginConfig


       
        // start all plugins registered
        for (String configPath : dbs.getConfig().getPlugins()) {
           
            String main = null;
            PluginConfig c = new PluginConfig(configPath);
            String pluginPath = c.getPluginLibraryPath();
            try {
                // load all classes from the plugin JARs
                main = loadJar(pluginPath, "Main");
                if (main == null) {
                    throw new Exception("main class (extending PluginMain) not found!");
View Full Code Here

TOP

Related Classes of org.xtreemfs.babudb.config.PluginConfig

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.