Package com.sissi.protocol.iq.auth

Examples of com.sissi.protocol.iq.auth.Challenge


  }

  @Override
  public boolean auth(Auth auth, JIDContext context) {
    try {
      context.write(new Challenge(this.saslServers.push(context, Sasl.createSaslServer(mechanism, this.protocol, context.domain(), this.props, new ServerCallbackHandler(context))).evaluateResponse(new byte[0])));
      return true;
    } catch (Exception e) {
      this.log.error(e.toString());
      Trace.trace(this.log, e);
      return false;
View Full Code Here

TOP

Related Classes of com.sissi.protocol.iq.auth.Challenge

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.