/** * BigBlueButton open source conferencing system - http://www.bigbluebutton.org/ * * Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below). * * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License as published by the Free Software * Foundation; either version 3.0 of the License, or (at your option) any later * version. * * BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along * with BigBlueButton; if not, see <http://www.gnu.org/licenses/>. * */ package org.bigbluebutton.voiceconf.red5; import org.red5.logging.Red5LoggerFactory; import org.red5.server.api.service.IServiceCapableConnection; import org.slf4j.Logger; public class ClientConnection { private static Logger log = Red5LoggerFactory.getLogger(ClientConnection.class, "sip"); private final IServiceCapableConnection connection; private final String connId; private final String userid; private final String username; public ClientConnection(String connId, String userid, String username, IServiceCapableConnection connection) { this.connection = connection; this.connId = connId; this.userid = userid; this.username = username; } public String getConnId() { return connId; } public void onJoinConferenceSuccess(String publishName, String playName, String codec) { log.debug("Notify client that {} [{}] has joined the conference.", username, userid); if (connection.isConnected()) { connection.invoke("successfullyJoinedVoiceConferenceCallback", new Object[] {publishName, playName, codec}); } } public void onJoinConferenceFail() { log.debug("Notify client that {} [{}] failed to join the conference.", username, userid); if (connection.isConnected()) { connection.invoke("failedToJoinVoiceConferenceCallback", new Object[] {"onUaCallFailed"}); } } public void onLeaveConference() { log.debug("Notify client that {} [{}] left the conference.", username, userid); if (connection.isConnected()) { connection.invoke("disconnectedFromJoinVoiceConferenceCallback", new Object[] {"onUaCallClosed"}); } } }