Package tigase.xmpp

Examples of tigase.xmpp.XMPPPostprocessorIfc


      preProcessors.put(comp_id, preproc);
      log.config("Added preprocessor: " + preproc.getClass().getSimpleName()
        + " for plugin id: " + comp_id);
      loaded = true;
    }
    XMPPPostprocessorIfc postproc = ProcessorFactory.getPostprocessor(comp_id);
    if (postproc != null) {
      postProcessors.put(comp_id, postproc);
      log.config("Added postprocessor: " + postproc.getClass().getSimpleName()
        + " for plugin id: " + comp_id);
      loaded = true;
    }
    XMPPStopListenerIfc stoplist = ProcessorFactory.getStopListener(comp_id);
    if (stoplist != null) {
View Full Code Here

TOP

Related Classes of tigase.xmpp.XMPPPostprocessorIfc

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.