285286287288289290291292293294295
return; } if (dtmfKey.equals("2")) { try { call.mute(true); } catch (IOException e) { logger.warning("Unable to mute call " + call + ": " + e.getMessage()); }
307308309310311312313314315316317
return; } if (dtmfKey.equals("3")) { try { call.mute(false); } catch (IOException e) { logger.warning("Unable to unmute call " + call + ": " + e.getMessage()); }
171172173174175176177178179180181
} if (message instanceof OrbMuteCallMessage) { if (call != null) { try { call.mute(((OrbMuteCallMessage)message).isMuted()); } catch (IOException e) { logger.warning("Unable to mute call " + call + ": " + e.getMessage()); return; }
728729730731732733734735736737738
defaultStationaryPlayerAudioGroup.addPlayer(externalPlayer, new AudioGroupPlayerInfo(false, AudioGroupPlayerInfo.ChatType.PUBLIC)); call.mute(false); call.transferToConference(parameters.conferenceId); String s;
253254255256257258259260261262263
logger.info("Unable to mute/unmute call " + callID); return; } try { call.mute(msg.isMuted()); } catch (IOException e) { logger.warning("Unable to mute/unmute call " + callID + ": " + e.getMessage()); return; }
652653654655656657658659660661662
// was reporting a mute softphoneMuted(isMuted); return; } sc.mute(isMuted); sendMessage(new MuteCallRequestMessage(callID, isMuted)); } /**
834835836837838839840841842843844
// sync up mute state SoftphoneControlImpl sc = SoftphoneControlImpl.getInstance(); String callID = sc.getCallID(); if (callID != null) { sc.mute(true); sendMessage(new MuteCallRequestMessage(callID, true)); } } }