Package com.sissi.ucenter.relation.muc

Examples of com.sissi.ucenter.relation.muc.MucRelation.affiliation()


  private final Error error = new ServerError().type(ProtocolType.AUTH).add(Forbidden.DETAIL);

  @Override
  public boolean input(JIDContext context, Protocol protocol) {
    MucRelation relation = super.ourRelation(context.jid(), super.build(protocol.parent().getTo())).cast(MucRelation.class);
    return relation.activate() && ItemAffiliation.OWNER.equals(relation.affiliation()) ? true : this.writeAndReturn(context, protocol);
  }

  private boolean writeAndReturn(JIDContext context, Protocol protocol) {
    context.write(protocol.parent().reply().setError(this.error));
    return false;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.