Interface java.telephony.callcontrol.capabilities.CallControlTerminalCapabilities
All Packages Class Hierarchy This Package Previous Next Index
Interface java.telephony.callcontrol.capabilities.CallControlTerminalCapabilities
- public interface CallControlTerminalCapabilities
- extends Object
- extends TerminalCapabilities
The CallControlTerminalCapabilities interface extends the
TerminalCapabilities interface. This interface provides methods to reflect
the capabilities of the CallControlTerminal interface methods. Applications
query the object returned from the getTerminalCapabilities() methods to see
whether it implements this interface for both the static and dynamic
capabilities for the CallControlTerminal object.
- See Also:
- TerminalCapabilities
-
canGetDoNotDisturb()
- Returns true if the application can invoke the
CallControlTerminal.getDoNotDisturb() method.
-
canPickup()
- Returns true if the application can invoke the
CallControlTerminal.pickup() method.
-
canPickupFromGroup()
- Returns true if the application can invoke the
CallControlTerminal.pickupFromGroup() method.
-
canSetDoNotDisturb()
- Returns true if the application can invoke the
CallControlTerminal.setDoNotDisturb() method.
canGetDoNotDisturb
public abstract boolean canGetDoNotDisturb()
- Returns true if the application can invoke the
CallControlTerminal.getDoNotDisturb() method. Returns false otherwise.
- Returns:
- True if the application can invoke the
CallControlTerminal.getDoNotDisturb() method, false otherwise.
canSetDoNotDisturb
public abstract boolean canSetDoNotDisturb()
- Returns true if the application can invoke the
CallControlTerminal.setDoNotDisturb() method. Returns false otherwise.
- Returns:
- True if the application can invoke the
CallControlTerminal.setDoNotDisturb() method, false otherwise.
canPickup
public abstract boolean canPickup()
- Returns true if the application can invoke the
CallControlTerminal.pickup() method. Returns false otherwise.
- Returns:
- True if the application can invoke the
CallControlTerminal.pickup() method, false otherwise.
canPickupFromGroup
public abstract boolean canPickupFromGroup()
- Returns true if the application can invoke the
CallControlTerminal.pickupFromGroup() method. Returns false otherwise.
- Returns:
- True if the application can invoke the
CallControlTerminal.pickupFromGroup() method, false otherwise.
All Packages Class Hierarchy This Package Previous Next Index