use of org.bigbluebutton.common.messages.GetPresentationInfoReplyMessage in project bigbluebutton by bigbluebutton.
the class PresentationClientMessageSender method processGetPresentationInfoReplyMessage.
private void processGetPresentationInfoReplyMessage(String json) {
GetPresentationInfoReplyMessage msg = GetPresentationInfoReplyMessage.fromJson(json);
if (msg != null) {
Map<String, Object> args = new HashMap<String, Object>();
args.put("meetingID", msg.meetingId);
args.put("presenter", msg.presenter);
args.put("presentations", msg.presentations);
Map<String, Object> message = new HashMap<String, Object>();
Gson gson = new Gson();
message.put("msg", gson.toJson(args));
DirectClientMessage m = new DirectClientMessage(msg.meetingId, msg.requesterId, "getPresentationInfoReply", message);
service.sendMessage(m);
}
}
Aggregations