Interface java.telephony.callcontrol.capabilities.CallControlConnectionCapabilities
All Packages Class Hierarchy This Package Previous Next Index
Interface java.telephony.callcontrol.capabilities.CallControlConnectionCapabilities
- public interface CallControlConnectionCapabilities
- extends Object
- 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
-
canAccept()
- Returns true if the application can invoke the
CallControlConnection.accept() method.
-
canAddToAddress()
- Returns true if the application can invoke the
CallControlConnection.addToAddress() method.
-
canPark()
- Returns true if the application can invoke the
CallControlConnection.park() method.
-
canRedirect()
- Returns true if the application can invoke the
CallControlConnection.redirect() method.
-
canReject()
- Returns true if the application can invoke the
CallControlConnection.reject() method.
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.
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.
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.
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.
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