Interface java.telephony.callcontrol.capabilities.CallControlTerminalConnectionCapabilities
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface java.telephony.callcontrol.capabilities.CallControlTerminalConnectionCapabilities

public interface CallControlTerminalConnectionCapabilities
extends Object
extends TerminalConnectionCapabilities
The CallControlTerminalConnectionCapabilities interface extends the TerminalConnectionCapabilities interface. This interface provides methods to reflect the capabilities of the CallControlTerminalConnection interface methods. Applications query the object returned from the getTerminalConnectionCapabilities() methods to see whether it implements this interface for both the static and dynamic capabilities for the CallControlTerminalConnection object.

See Also:
TerminalConnectionCapabilities

Method Index

 o canHold()
Returns true if the application can invoke the CallControlTerminalConnection.hold() method.
 o canJoin()
Returns true if the application can invoke the CallControlTerminalConnection.join() method.
 o canLeave()
Returns true if the application can invoke the CallControlTerminalConnection.leave() method.
 o canUnhold()
Returns true if the application can invoke the CallControlTerminalConnection.unhold() method.

Methods

 o canHold
  public abstract boolean canHold()
Returns true if the application can invoke the CallControlTerminalConnection.hold() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlTerminalConnection.hold() method, false otherwise.
 o canUnhold
  public abstract boolean canUnhold()
Returns true if the application can invoke the CallControlTerminalConnection.unhold() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlTerminalConnection.unhold() method, false otherwise.
 o canJoin
  public abstract boolean canJoin()
Returns true if the application can invoke the CallControlTerminalConnection.join() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlTerminalConnection.join() method, false otherwise.
 o canLeave
  public abstract boolean canLeave()
Returns true if the application can invoke the CallControlTerminalConnection.leave() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlTerminalConnection.leave() method, false otherwise.

All Packages  Class Hierarchy  This Package  Previous  Next  Index