CSTA Application Interface
When you write a CSTA application, you need to implement this interface:
public interface CSTAApplication {
public void CSTACallEventReceived(CallEvent event) ;
public void CSTAAgentEventReceived(AgentEvent event) ;
public void TDSDataReceived(String dev, String code, String data) ;
public void cstaFail() ;
}
This is to receive Call Events, Agent Events, and Telephone Data Service messages (like what is used in the main nursepaging class).
More info will be posted here to assist you in writing CSTA integration.
