Package de.ilink.cti.cstajtapi
Klasse JtapiPeerImpl
java.lang.Object
de.ilink.cti.cstajtapi.JtapiPeerImpl
- Alle implementierten Schnittstellen:
javax.telephony.JtapiPeer
Implementation of a JTAPI peer for CSTA-XML.
Copyright (c) 2002-2003, 2018-2019, 2025 ilink Kommunikationssysteme GmbH
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibunggetName()
Returns the name of this JtapiPeer object instance.javax.telephony.Provider
getProvider
(String aParams) Returns an instance of a Provider object given a string argument which contains the desired service name.String[]
Returns the services that this implementation supports.
-
Konstruktordetails
-
JtapiPeerImpl
public JtapiPeerImpl()
-
-
Methodendetails
-
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 Schnittstellejavax.telephony.JtapiPeer
- Gibt zurück:
- The name of this JtapiPeer object instance.
-
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 Schnittstellejavax.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 Schnittstellejavax.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.
-