McDewey

Multi-vendor documentation library · semantic search · MCP endpoint at /mcp

Page 399

↗ View in doc context
page
399
source
cucm/v15/jtapi-dev-guide/jtapi-dev-guide.md
chunk_id
cucm::v15::jtapi-dev-guide::jtapi-dev-guide::398

Description Field Return Type This option indicates that there is no Media Forking Device for recording on this call. Range of value = 0 CALL_RECORDING_MEDIA_FORKING_DEVICE_TYPE_NONE static final int This option indicates that the Media Forking Device type for recording on this call is Phone (BIB Recording). Range of value = 1 CALL_RECORDING_MEDIA_FORKING_DEVICE_TYPE_PHONE static final int This option indicates that the Media Forking Device type for recording on this call is Gateway (GW Recording). Range of value = 2 CALL_RECORDING_MEDIA_FORKING_DEVICE_TYPE_GW static final int Inherited Fields From Interface javax.telephony.Call ACTIVE, IDLE, INVALID Sample Code public class MyCallObserver implements implements CallObserver, CallControlCallObserver, MediaCallObserver { public void callChangedEvent (CallEv[] evlist) { for(int i = 0; evlist ! = null && i < evlist.length; i++){ … … If (evlisth[i] instance of TermConnActiveEv){ CiscoCall thisCall

(CiscoCall) ((TermConnActiveEv) evlist[i]).getCall(); int cfaStatus

thisCall.getCFWDAllKeyPressIndicator(); If (cfaStatus

= CiscoCall.CFWD_ALL_SET || cfaStatus

= CiscoCall.CFWD_ALL_CLEAR){ System.out.println(“Call is created due to CallFwdAll soft key press”); }else { System.out.println(“Call is NOT created due to CallFwdAll soft key press”); } } } … … } Cisco Unified JTAPI Developers Guide for Cisco Unified Communications Manager, Release 15 and SUs 335 Cisco Unified JTAPI Extensions Inherited Fields

Page 399 diagram