Interface java.telephony.media.capabilities.MediaTerminalConnectionCapabilities
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface java.telephony.media.capabilities.MediaTerminalConnectionCapabilities

public interface MediaTerminalConnectionCapabilities
extends Object
extends ConnectionCapabilities
The MediaTerminalConnectionCapabilities interface extends the ConnectionCapabilities interface. This interface provides capabilities methods for the MediaTerminalConnection object. The methods in this interface provides applications the ability to query for those actions where are possible on the MediaTerminalConnection interface as part of the capabilities package.

Method Index

 o canDetectDtmf()
This method returns true if the application is able to detect DTMF-tones on the telephone line.
 o canGenerateDtmf()
This method returns true if the application is able to generate DTMF- tones the telephone line.
 o canStartPlaying()
This method returns true if the application is able to start playing to the telephone line.
 o canStartRecording()
This method returns true if the application is able to start recording from the telephone line.
 o canStopPlaying()
This method returns true if the application is able to stop playing to the telephone line.
 o canStopRecording()
This method returns true if the application is able to stop recording from the telephone line.
 o canUseDefaultMicrophone()
This method returns true if the application can invoke the useDefaultMicrophone() method and route the media from the default microphone.
 o canUseDefaultSpeaker()
This method returns true if the application can invoke the useDefaultSpeaker() method and route the media from the telephone line to the default speaker.
 o canUsePlayURL()
This method returns true if the application can invoke the usePlayURL() method and route voice media from URL's.
 o canUseRecordURL()
This method returns true if the application can invoke the useRecordURL() method and route voice media to URL's.

Methods

 o canUseDefaultSpeaker
  public abstract boolean canUseDefaultSpeaker()
This method returns true if the application can invoke the useDefaultSpeaker() method and route the media from the telephone line to the default speaker. Returns false otherwise.

Returns:
True if the application can route voice media to the default speaker, false otherwise.
 o canUseDefaultMicrophone
  public abstract boolean canUseDefaultMicrophone()
This method returns true if the application can invoke the useDefaultMicrophone() method and route the media from the default microphone. Returns false otherwise.

Returns:
True if the application can route voice media from the default microphone, false otherwise.
 o canUseRecordURL
  public abstract boolean canUseRecordURL()
This method returns true if the application can invoke the useRecordURL() method and route voice media to URL's. Returns false otherwise.

Returns:
True if the application can route voice media to URL's, false otherwise.
 o canUsePlayURL
  public abstract boolean canUsePlayURL()
This method returns true if the application can invoke the usePlayURL() method and route voice media from URL's. Returns false otherwise.

Returns:
True if the application can route voice media from URL's, false otherwise.
 o canStartPlaying
  public abstract boolean canStartPlaying()
This method returns true if the application is able to start playing to the telephone line. Returns false otherwise.

Returns:
True if the application can begin playing to the telephone line, false otherwise.
 o canStopPlaying
  public abstract boolean canStopPlaying()
This method returns true if the application is able to stop playing to the telephone line. Returns false otherwise.

Returns:
True if the application can stop playing to the telephone line, false otherwise.
 o canStartRecording
  public abstract boolean canStartRecording()
This method returns true if the application is able to start recording from the telephone line. Returns false otherwise.

Returns:
True if the application can start recording from the telephone line, false otherwise.
 o canStopRecording
  public abstract boolean canStopRecording()
This method returns true if the application is able to stop recording from the telephone line. Returns false otherwise.

Returns:
True if the application can stop recording from the telephone line, false otherwise.
 o canDetectDtmf
  public abstract boolean canDetectDtmf()
This method returns true if the application is able to detect DTMF-tones on the telephone line. Returns false otherwise. This method indicates whether the application is able to invoke the setDtmfDetection(true) method.

Returns:
True if the application can detect DTMF-tones from the telephone line, false otherwise.
 o canGenerateDtmf
  public abstract boolean canGenerateDtmf()
This method returns true if the application is able to generate DTMF- tones the telephone line. Returns false otherwise.

Returns:
True if the application can generate DTMF-tones to the telephone line, false otherwise.

All Packages  Class Hierarchy  This Package  Previous  Next  Index