Package com.sissi.protocol.iq.bind

Examples of com.sissi.protocol.iq.bind.Bind


*/
public class BindResourceProcessor extends ProxyProcessor {

  @Override
  public boolean input(JIDContext context, Protocol protocol) {
    Bind bind = protocol.cast(Bind.class);
    if (bind.hasResource()) {
      context.jid().resource(bind.getResource().getText());
    }
    return true;
  }
View Full Code Here

TOP

Related Classes of com.sissi.protocol.iq.bind.Bind

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.