Package nu.fw.jeti.plugins.xmpp.sasl

Examples of nu.fw.jeti.plugins.xmpp.sasl.SaslHandler


  {
    Map<String,PacketHandler> handlers = new HashMap<String,PacketHandler>();
    handlers.put("stream:features",new FeaturesHandler());
    handlers.put("proceed",new StartTlsPacketHandler(false));
    handlers.put("failure",new StartTlsPacketHandler(true));
    handlers.put("success",new SaslHandler(true));
    handlers.put("auth",new SaslHandler());
    handlers.put("challenge",new ChallengeHandler());
    if(PluginsInfo.isPluginLoaded("compression"))
    {
      nu.fw.jeti.plugins.compression.Plugin.addHandler(handlers);
    }
View Full Code Here

TOP

Related Classes of nu.fw.jeti.plugins.xmpp.sasl.SaslHandler

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.