Package com.sissi.protocol.message

Examples of com.sissi.protocol.message.Message


    JID group = super.build(protocol.getTo());
    return this.room.build(group).allowed(context.jid(), RoomConfig.WHOISEXISTS) ? true : this.writeAndReturn(context, group);
  }

  private boolean writeAndReturn(JIDContext context, JID group) {
    context.write(new Message().noneThread().body(this.body).muc(this.x).setType(MessageType.GROUPCHAT).setFrom(group.asStringWithBare()));
    return true;
  }
View Full Code Here

TOP

Related Classes of com.sissi.protocol.message.Message

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.