Package tigase.xmpp

Examples of tigase.xmpp.XMPPProcessorIfc


    return props;
  }

  private void addPlugin(String comp_id) {
    System.out.println("Loading plugin: " + comp_id + " ...");
    XMPPProcessorIfc proc = ProcessorFactory.getProcessor(comp_id);
    boolean loaded = false;
    if (proc != null) {
      ProcessorThread pt = new ProcessorThread(proc);
      pt.setDaemon(true);
      pt.setName(proc.id());
      pt.start();
      processors.put(comp_id, pt);
      log.config("Added processor: " + proc.getClass().getSimpleName()
        + " for plugin id: " + comp_id);
      loaded = true;
    }
    XMPPPreprocessorIfc preproc = ProcessorFactory.getPreprocessor(comp_id);
    if (preproc != null) {
View Full Code Here

TOP

Related Classes of tigase.xmpp.XMPPProcessorIfc

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.