Examples of BigBlueButtonSession


Examples of org.bigbluebutton.conference.BigBlueButtonSession

    String meetingId = getBbbSession().getRoom();
    bbbInGW.lockUser(meetingId, lock, internalUserID);
  }
 
  public String getMyUserId() {
    BigBlueButtonSession bbbSession = (BigBlueButtonSession) Red5.getConnectionLocal().getAttribute(Constants.SESSION);
    assert bbbSession != null;
    return bbbSession.getInternalUserID();
  }
View Full Code Here

Examples of org.bigbluebutton.conference.BigBlueButtonSession

  }

  @Override
  public void roomLeave(IClient client, IScope scope) {
    log.debug("***** " + APP + " [ " + " roomLeave [ " + scope.getName() + "] *********");
    BigBlueButtonSession bbbSession = getBbbSession();
    if (bbbSession == null) {
      log.debug("roomLeave - session is null");
    }   
  }
View Full Code Here

Examples of org.bigbluebutton.conference.BigBlueButtonSession

    log.debug("***** " + APP + " [ " + " roomStop [ " + scope.getName() + "] *********");
  }
 
  public void registerUser() {
    log.debug(APP + ":participantJoin - getting userid");
    BigBlueButtonSession bbbSession = getBbbSession();
    if (bbbSession != null) {
      String userid = bbbSession.getInternalUserID();
      String username = bbbSession.getUsername();
      String role = bbbSession.getRole();
      String room = bbbSession.getRoom();
      log.debug(APP + ":participantJoin - [" + room + "] [" + userid + ", " + username + ", " + role + "]");
     
      Map<String, Boolean> status = new HashMap<String, Boolean>();
      status.put("raiseHand", false);
      status.put("presenter", false);
      status.put("hasStream", false)

      participantsApplication.registerUser(room, userid, username, role, bbbSession.getExternUserID());
    }
  }
View Full Code Here

Examples of org.bigbluebutton.conference.BigBlueButtonSession

    String roomName = Red5.getConnectionLocal().getScope().getName();
    application.getRecordingStatus(roomName, getMyUserId());
  }
 
  public String getMyUserId() {
    BigBlueButtonSession bbbSession = (BigBlueButtonSession) Red5.getConnectionLocal().getAttribute(Constants.SESSION);
    assert bbbSession != null;
    return bbbSession.getInternalUserID();
  }
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.