All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface java.telephony.callcontrol.capabilities.CallControlConnectionCapabilities

public interface CallControlConnectionCapabilities
extends ConnectionCapabilities
The CallControlConnectionCapabilities interface extends the ConnectionCapabilities interface. This interface provides methods to reflect the capabilities of the CallControlConnection interface methods. Applications query the object returned from the getConnectionCapabilities() methods to see whether it implements this interface for both the static and dynamic capabilities for the CallControlConnection object.

See Also:
ConnectionCapabilities

Method Index

 o canAccept()
Returns true if the application can invoke the CallControlConnection.accept() method.
 o canAddToAddress()
Returns true if the application can invoke the CallControlConnection.addToAddress() method.
 o canPark()
Returns true if the application can invoke the CallControlConnection.park() method.
 o canRedirect()
Returns true if the application can invoke the CallControlConnection.redirect() method.
 o canReject()
Returns true if the application can invoke the CallControlConnection.reject() method.

Methods

 o canRedirect
 public abstract boolean canRedirect()
Returns true if the application can invoke the CallControlConnection.redirect() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlConnection.redirect() method, false otherwise.
 o canAddToAddress
 public abstract boolean canAddToAddress()
Returns true if the application can invoke the CallControlConnection.addToAddress() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlConnection.addToAddress() method, false otherwise.
 o canAccept
 public abstract boolean canAccept()
Returns true if the application can invoke the CallControlConnection.accept() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlConnection.accept() method, false otherwise.
 o canReject
 public abstract boolean canReject()
Returns true if the application can invoke the CallControlConnection.reject() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlConnection.reject() method, false otherwise.
 o canPark
 public abstract boolean canPark()
Returns true if the application can invoke the CallControlConnection.park() method. Returns false otherwise.

Returns:
True if the application can invoke the CallControlConnection.park() method, false otherwise.

All Packages  Class Hierarchy  This Package  Previous  Next  Index