Klasse JtapiPeerImpl

java.lang.Object
de.ilink.cti.cstajtapi.JtapiPeerImpl
Alle implementierten Schnittstellen:
javax.telephony.JtapiPeer

public class JtapiPeerImpl extends Object implements javax.telephony.JtapiPeer
Implementation of a JTAPI peer for CSTA-XML.

Copyright (c) 2002-2003, 2018-2019, 2025 ilink Kommunikationssysteme GmbH

  • Konstruktordetails

    • JtapiPeerImpl

      public JtapiPeerImpl()
  • Methodendetails

    • getName

      public String getName()
      Returns the name of this JtapiPeer object instance. This name is the same name used as an argument to JtapiPeerFactory.getJtapiPeer() method.
      Angegeben von:
      getName in Schnittstelle javax.telephony.JtapiPeer
      Gibt zurück:
      The name of this JtapiPeer object instance.
    • getServices

      public String[] getServices()
      Returns the services that this implementation supports. This method returns null if no services as supported. The returned array is a shallow copy of fProviders.keySet().toArray().
      Angegeben von:
      getServices in Schnittstelle javax.telephony.JtapiPeer
      Gibt zurück:
      The services that this implementation supports.
    • getProvider

      public javax.telephony.Provider getProvider(String aParams) throws javax.telephony.ProviderUnavailableException
      Returns an instance of a Provider object given a string argument which contains the desired service name. Optional arguments may also be provided in this string, with the following format: Ungültige Eingabe: "<" service name > ; arg1 = val1; arg2 = val2; ... Where Ungültige Eingabe: "<" service name > is not optional, and each optional argument pair which follows is separated by a semicolon. The keys for these arguments is implementation specific, except for two standard-defined keys: login: provides the login user name to the Provider. passwd: provides a password to the Provider. If the argument is null, this method returns some default Provider as determined by the JtapiPeer object. The returned Provider is in the Provider.OUT_OF_SERVICE state. Post-conditions: this.getProvider().getState() == Provider.OUT_OF_SERVICE
      Angegeben von:
      getProvider in Schnittstelle javax.telephony.JtapiPeer
      Parameter:
      providerString - - The name of the desired service plus an optional arguments.
      Gibt zurück:
      An instance of the Provider object.
      Löst aus:
      javax.telephony.ProviderUnavailableException - - Indicates a Provider corresponding to the given string is unavailable.