* @param sessionid Id of the session
* @return true if the user is allowed to join the session.
*/
public boolean canSubscribeToSession(String username, String sessionid) {
SessionManager manager = SessionManager.getInstance();
SessionHandler handler = manager.getSessionHandler(sessionid);
return this.canSubscribeToSession(username,
handler.getConfKey(),
handler.isCollab());
}