package net.sourceforge.gjtapi.jcc; /* Copyright (c) 2003, Richard Deadman, Deadman Consulting (www.deadman.ca) All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this permission notice appear in all copies of the Software and that both the above copyright notice(s) and this permission notice appear in supporting documentation. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. */ import javax.jcat.JcatTerminalEvent; import javax.jcat.JcatTerminalListener; import javax.telephony.*; /** * This is a simple adapter that listens for JTAPI Terminal events and translates * them into JccTerminal events. * Creation date: (2003-10-11 15:09:31) * @author: Richard Deadman */ public class TerminalListenerAdapter implements TerminalListener { private Provider prov = null; private JcatTerminalListener realTerminalListener = null; /** * Create an adapter for a Jcat TerminalListener so that it * can receive JTAPI events. */ public TerminalListenerAdapter(Provider prov, JcatTerminalListener listener) { super(); this.setProv(prov); this.setRealTerminalListener(listener); } /** * Compares two objects for equality. Returns a boolean that indicates * whether this object is equivalent to the specified object. This method * is used when an object is stored in a hashtable. * @param obj the Object to compare with * @return true if these Objects are equal; false otherwise. * @see java.util.Hashtable */ public boolean equals(Object obj) { if (obj instanceof TerminalListenerAdapter) { // test if they have the same real Listener return this.getRealTerminalListener().equals(((TerminalListenerAdapter)obj).getRealTerminalListener()); } return false; } /** * Get the provider that I am attached to * Creation date: (2003-10-30 10:43:58) * @return com.uforce.jain.generic.Provider */ Provider getProv() { return prov; } /** * Getter for the Jcat TerminalListener I wrap * Creation date: (2003-10-30 10:27:59) * @return javax.jcat.JcatTerminalListener */ private JcatTerminalListener getRealTerminalListener() { return this.realTerminalListener; } /** * Generates a hash code for the receiver. * This method is supported primarily for * hash tables, such as those provided in java.util. * @return an integer hash code for the receiver * @see java.util.Hashtable */ public int hashCode() { return this.getRealTerminalListener().hashCode(); } /** * Insert the method's description here. * Creation date: (2003-10-30 10:43:58) * @param newProv com.uforce.jain.generic.Provider */ private void setProv(Provider newProv) { prov = newProv; } /** * Setter for the Jcat TerminalListener I wrap * Creation date: (2003-10-30 10:27:59) * @param newRealTerminalListener javax.jcat.JcatTerminalListener */ private void setRealTerminalListener(JcatTerminalListener newRealTerminalListener) { this.realTerminalListener = newRealTerminalListener; } /** * Returns a String that represents the value of this object. * @return a string representation of the receiver */ public String toString() { return "Listener adapter for Jcat Terminal Listener: " + this.getRealTerminalListener(); } /** * This is the only TerminalListener method supported by GJTAPI * @see javax.telephony.TerminalListener#terminalListenerEnded(javax.telephony.TerminalEvent) */ public void terminalListenerEnded(TerminalEvent event) { JcatTerminalEvent te = new GenTerminalEvent(this.getProv(), event); this.getRealTerminalListener().eventTransmissionEnded(te); } }