use of org.bigbluebutton.common.messages.GetCurrentLayoutReplyMessage in project bigbluebutton by bigbluebutton.
the class UserClientMessageSender method processGetCurrentLayoutReplyMessage.
private void processGetCurrentLayoutReplyMessage(String message) {
GetCurrentLayoutReplyMessage msg = GetCurrentLayoutReplyMessage.fromJson(message);
if (msg != null) {
Map<String, Object> args = new HashMap<String, Object>();
args.put("locked", msg.locked);
args.put("setById", msg.setByUserid);
args.put("layout", msg.layout);
DirectClientMessage m = new DirectClientMessage(msg.meetingId, msg.requestedByUserid, "getCurrentLayoutResponse", args);
service.sendMessage(m);
}
}
Aggregations