Examples of ValidateAuthTokenMessage


Examples of org.bigbluebutton.conference.service.messaging.ValidateAuthTokenMessage

        } else if (msg instanceof DestroyMeetingMessage) {
          DestroyMeetingMessage emm = (DestroyMeetingMessage) msg;
          log.debug("Received destroy meeting request. Meeting id [{}]", emm.meetingId);
          bbbGW.destroyMeeting(emm.meetingId);
        } else if (msg instanceof ValidateAuthTokenMessage) {
          ValidateAuthTokenMessage emm = (ValidateAuthTokenMessage) msg;
          log.debug("Received ValidateAuthTokenMessage token request. Meeting id [{}]", emm.meetingId);
          bbbGW.validateAuthToken(emm.meetingId, emm.userId, emm.token, emm.replyTo);
        } else if (msg instanceof UserConnectedToGlobalAudio) {
          UserConnectedToGlobalAudio emm = (UserConnectedToGlobalAudio) msg;
          log.debug("Received UserConnectedToGlobalAudio toekn request. user id [{}]", emm.name);
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.