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

Interface java.telephony.callcontrol.capabilities.CallControlAddressCapabilities

public interface CallControlAddressCapabilities
extends Object
extends AddressCapabilities
The CallControlAddressCapabilities interface extends the AddressCapabilities interface. This interface provides methods to reflect the capabilities of the CallControlAddress interface methods. Applications query the object returned from the getAddressCapabilities() methods to see whether it implements this interface for both the static and dynamic capabilities for the CallControlAddress object.

See Also:
AddressCapabilities

Method Index

 o canCancelForwarding()
Returns true if the application can invoke the CallControlAddress.cancelForwarding() method.
 o canGetDoNotDisturb()
Returns true if the application can invoke the CallControlAddress.getDoNotDisturb() method.
 o canGetForwarding()
Returns true if the application can invoke the CallControlAddress.getForwarding() method.
 o canGetMessageWaiting()
Returns true if the application can invoke the CallControlAddress.getMessageWaiting() method.
 o canSetDoNotDisturb()
Returns true if the application can invoke the CallControlAddress.setDoNotDisturb() method.
 o canSetForwarding()
Returns true if the application can invoke the CallControlAddress.setForwarding() method.
 o canSetMessageWaiting()
Returns true if the application can invoke the CallControlAddress.setMessageWaiting() method.

Methods

 o canSetForwarding
  public abstract boolean canSetForwarding()
Returns true if the application can invoke the CallControlAddress.setForwarding() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlAddress.setForwarding() method, false otherwise.
 o canGetForwarding
  public abstract boolean canGetForwarding()
Returns true if the application can invoke the CallControlAddress.getForwarding() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlAddress.getForwarding() method, false otherwise.
 o canCancelForwarding
  public abstract boolean canCancelForwarding()
Returns true if the application can invoke the CallControlAddress.cancelForwarding() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlAddress.cancelForwarding() method, false otherwise.
 o canGetDoNotDisturb
  public abstract boolean canGetDoNotDisturb()
Returns true if the application can invoke the CallControlAddress.getDoNotDisturb() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlAddress.getDoNotDisturb() method, false otherwise.
 o canSetDoNotDisturb
  public abstract boolean canSetDoNotDisturb()
Returns true if the application can invoke the CallControlAddress.setDoNotDisturb() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlAddress.setDoNotDisturb() method, false otherwise.
 o canGetMessageWaiting
  public abstract boolean canGetMessageWaiting()
Returns true if the application can invoke the CallControlAddress.getMessageWaiting() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlAddress.getMessageWaiting() method, false otherwise.
 o canSetMessageWaiting
  public abstract boolean canSetMessageWaiting()
Returns true if the application can invoke the CallControlAddress.setMessageWaiting() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlAddress.setMessageWaiting() method, false otherwise.

All Packages  Class Hierarchy  This Package  Previous  Next  Index