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
-
canHold()
- Returns true if the application can invoke the
CallControlTerminalConnection.hold() method.
-
canJoin()
- Returns true if the application can invoke the
CallControlTerminalConnection.join() method.
-
canLeave()
- Returns true if the application can invoke the
CallControlTerminalConnection.leave() method.
-
canUnhold()
- Returns true if the application can invoke the
CallControlTerminalConnection.unhold() method.
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.
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.
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.
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