McDewey

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

Page 81

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

Address[] addresses

provider.getAddresses(); System.out.println ("Found "+ addresses.length +" addresses"); for(int i = 0; i< addresses.length; i++) { System.out.println(addresses[i]); } provider.shutdown(); catch (Exception e) { } } Jtprefs Application The jtapi.ini file includes parameters that are required for configuring Cisco Unified JTAPI. Cisco Unified JTAPI looks for this file in a Java classpath. The parameters get modified by using the Jtprefs application that Cisco Unified JTAPI installs. The Jtprefs application sets only the parameters that it requires. This proves beneficial because a single point of application administration exists, independent of jtapi.ini. The jtapi.ini file contains default values, but client applications can modify values without having to specifically modify the jtapi.ini file. Different instances of client applications, however, can impose different settings for these parameters. The com.cisco.jtapi.extensions package defines the CiscoJtapiProperties interface. Applications obtain a CiscoJtapiProperties object from the CiscoJtapiPeer and make changes to the parameters by using the accessor and mutator methods. These properties must get set and applied to all providers that are derived from a CiscoJtapiPeer prior to the first getProvider () call on that peer. Applications that run in non GUI based platform, in which jtprefs.ini cannot be invoked, can write a jtapi.ini file and place it along with jtapi.jar. See the following topics for more information: • Administering User Information for JTAPI Applications, on page 241 • Fields in the jtapi.ini File, on page 241 Cisco Unified JTAPI Concepts This section describes the following concepts: • CiscoObjectContainer Interface, on page 18 • JtapiPeer and Provider, on page 18 • Address and Terminal Relationships, on page 20 • Connections, on page 21 • Terminal Connections, on page 21 • Terminal and Address Restrictions, on page 21 • CiscoConnectionID, on page 24 Cisco Unified JTAPI Developers Guide for Cisco Unified Communications Manager, Release 15 and SUs 17 Overview Jtprefs Application