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
-
canCancelForwarding()
- Returns true if the application can invoke the
CallControlAddress.cancelForwarding() method.
-
canGetDoNotDisturb()
- Returns true if the application can invoke the
CallControlAddress.getDoNotDisturb() method.
-
canGetForwarding()
- Returns true if the application can invoke the
CallControlAddress.getForwarding() method.
-
canGetMessageWaiting()
- Returns true if the application can invoke the
CallControlAddress.getMessageWaiting() method.
-
canSetDoNotDisturb()
- Returns true if the application can invoke the
CallControlAddress.setDoNotDisturb() method.
-
canSetForwarding()
- Returns true if the application can invoke the
CallControlAddress.setForwarding() method.
-
canSetMessageWaiting()
- Returns true if the application can invoke the
CallControlAddress.setMessageWaiting() method.
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.
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.
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.
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.
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.
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.
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