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
-
canAddParty()
- Returns true if the application can invoke the CallControlCall.addParty()
method.
-
canConference()
- Returns true if the application can invoke the
CallControlCall.conference() method.
-
canConsult()
- Returns true if the application can invoke the CallControlCall.consult()
method.
-
canDrop()
- Returns true if the application can invoke the CallControlCall.drop()
method.
-
canOffHook()
-
-
canSetConferenceController()
-
-
canSetConferenceEnable()
- Returns true if the application can invoke the
CallControlCall.canSetConferenceEnable() method.
-
canSetTransferController()
-
-
canSetTransferEnable()
- Returns true if the application can invoke the
CallControlCall.setTransferEnable() method.
-
canTransfer()
- Returns true if the application can invoke the CallControlCall.transfer()
method.
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.
canOffHook
public abstract boolean canOffHook()
canSetConferenceController
public abstract boolean canSetConferenceController()
canSetTransferController
public abstract boolean canSetTransferController()
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.
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.
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.
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.
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.
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