* @param collab true is this session is collaborative.
* @return true if the user is allowed to join the session.
*/
public boolean canSubscribeToSession(String username, String key, boolean collab) {
SessionAcls acls = admin.getSessionAclsForUser(username, key);
if(acls == null)
return false;
return acls.canAccessSession();
}