CiscoAddrRemovedEv

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2021 09:28 AM - edited 01-10-2021 09:28 AM
I notice in the JTAPI Developers Guide that getAddress() is the only method for CiscoAddrRemovedEv (other than inherited methods). However, when I check the definition of CiscoAddrRemovedEv in NetBeans it shows both getAddress() and getTerminal():
package com.cisco.jtapi.extensions;
import javax.telephony.Address;
import javax.telephony.Terminal;
public interface CiscoAddrRemovedEv extends CiscoProvEv {
public static final int ID = 1073750020;
public Address getAddress();
public Terminal getTerminal();
}
Is getTerminal() a valid method and what does it actually return? I cannot find any mention of it for CiscoAddrRemovedEv in any Cisco documentation.
Thank you,
Derrick
- Labels:
-
JTAPI

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2021 11:46 AM
The JavaDocs (at least for 10.0 and 12.5 that I checked) do show getTerminal() as being present, so it looks like an oversight in the developer guide. As it also seems 'physically' present via reflection in the IDE, I would probably operate on the assumption it is available and should work...will see if we can get this fixed in the dev guide.
