Package org.xmlBlaster.client.protocol

Examples of org.xmlBlaster.client.protocol.I_XmlBlasterConnection


   public I_XmlBlasterConnection getPlugin(String type, String version) throws XmlBlasterException {
      if (log.isLoggable(Level.FINER)) log.finer("Creating instance of " + createPluginPropertyKey(type, version));

      // We need a new instance every time! (no caching in base class)
      PluginInfo pluginInfo = new PluginInfo(glob, this, type, version);
      I_XmlBlasterConnection driver = (I_XmlBlasterConnection)super.instantiatePlugin(pluginInfo, false);
      if (driver == null) {
         log.warning("Creating instance of " + createPluginPropertyKey(type, version) + " failed, no such plugin found.");
      }
      return driver;
   }
View Full Code Here

TOP

Related Classes of org.xmlBlaster.client.protocol.I_XmlBlasterConnection

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.