Package net.pterodactylus.sone.freenet

Examples of net.pterodactylus.sone.freenet.PluginStoreConfigurationBackend


        logger.log(Level.INFO, "Created new configuration file.");
      } catch (ConfigurationException ce2) {
        logger.log(Level.SEVERE, "Could not create configuration file, using Plugin Store!", ce2);
      }
      try {
        oldConfiguration = new Configuration(new PluginStoreConfigurationBackend(pluginRespirator));
        logger.log(Level.INFO, "Plugin store loaded.");
      } catch (DatabaseDisabledException dde1) {
        logger.log(Level.SEVERE, "Could not load any configuration, using empty configuration!");
        oldConfiguration = new Configuration(new MapConfigurationBackend());
      }
View Full Code Here

TOP

Related Classes of net.pterodactylus.sone.freenet.PluginStoreConfigurationBackend

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.