Package com.sissi.ucenter.relation.muc.room

Examples of com.sissi.ucenter.relation.muc.room.RoomConfigApprover


      return this.allowed(jid, key, null);
    }

    @Override
    public boolean allowed(JID jid, RoomConfig key, Object value) {
      RoomConfigApprover approver = MongoRoomBuilder.this.readers.get(key);
      return approver != null ? approver.approve(new MucConfigParamImpl(jid, this.group, this.creator, this.configs), value) : false;
    }
View Full Code Here

TOP

Related Classes of com.sissi.ucenter.relation.muc.room.RoomConfigApprover

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.