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

Interface java.telephony.callcontrol.capabilities.CallControlCallCapabilities

public interface CallControlCallCapabilities
extends Object
extends CallCapabilities
The CallControlCallCapabilities interface extends the CallCapabilities interface. This interface provides methods to reflect the capabilities of the CallControlCall interface methods. Applications query the object returned from the getCallCapabilities() methods to see whether it implements this interface for both the static and dynamic capabilities for the CallControlCall object.

See Also:
CallCapabilities

Method Index

 o canAddParty()
Returns true if the application can invoke the CallControlCall.addParty() method.
 o canConference()
Returns true if the application can invoke the CallControlCall.conference() method.
 o canConsult()
Returns true if the application can invoke the CallControlCall.consult() method.
 o canDrop()
Returns true if the application can invoke the CallControlCall.drop() method.
 o canOffHook()
 o canSetConferenceController()
 o canSetConferenceEnable()
Returns true if the application can invoke the CallControlCall.canSetConferenceEnable() method.
 o canSetTransferController()
 o canSetTransferEnable()
Returns true if the application can invoke the CallControlCall.setTransferEnable() method.
 o canTransfer()
Returns true if the application can invoke the CallControlCall.transfer() method.

Methods

 o canDrop
  public abstract boolean canDrop()
Returns true if the application can invoke the CallControlCall.drop() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlCall.drop() method, false otherwise.
 o canOffHook
  public abstract boolean canOffHook()
 o canSetConferenceController
  public abstract boolean canSetConferenceController()
 o canSetTransferController
  public abstract boolean canSetTransferController()
 o canSetTransferEnable
  public abstract boolean canSetTransferEnable()
Returns true if the application can invoke the CallControlCall.setTransferEnable() method. Returns false otherwise. The outcome of this capability is independent of whether applications can invoke the transfer() method. Applications both may not be able to turn transfering off it is on, and may not be able to turn transfering on if it is off.

Returns:
True if the application can invoke the CallControlCall.setTransferEnable() method, false otherwise.
 o canSetConferenceEnable
  public abstract boolean canSetConferenceEnable()
Returns true if the application can invoke the CallControlCall.canSetConferenceEnable() method. Returns false otherwise. The outcome of this capability is independent of whether applications can invoke the conference() method. Applications both may not be able to turn conferencing off if it is on, and may not be able to turn conferencing on if it is off.

Returns:
True if the application can invoke the CallControlCall.setConferenceEnable() method, false otherwise.
 o canTransfer
  public abstract boolean canTransfer()
Returns true if the application can invoke the CallControlCall.transfer() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlCall.transfer() method, false otherwise.
 o canConference
  public abstract boolean canConference()
Returns true if the application can invoke the CallControlCall.conference() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlCall.conference() method, false otherwise.
 o canAddParty
  public abstract boolean canAddParty()
Returns true if the application can invoke the CallControlCall.addParty() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlCall.addParty() method, false otherwise.
 o canConsult
  public abstract boolean canConsult()
Returns true if the application can invoke the CallControlCall.consult() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlCall.consult() method, false otherwise.

All Packages  Class Hierarchy  This Package  Previous  Next  Index