Interface java.telephony.callcenter.events.RouteEvent
All Packages Class Hierarchy This Package Previous Next Index
Interface java.telephony.callcenter.events.RouteEvent
- public interface RouteEvent
- extends Object
- extends RouteSessionEvent
The RouteEvent interface encapsulates a routing event.
-
SELECT_ACD
- Select a route to an ACDAddress.
-
SELECT_EMERGENCY
- Select an emergency route.
-
SELECT_LEAST_COST
- Select a least cost route.
-
SELECT_NORMAL
- Select a normal route.
-
SELECT_USER_DEFINED
- Select a user defined route.
-
getCallingAddress()
- This returns the calling Address.
-
getCallingTerminal()
- This returns the calling Terminal.
-
getCurrentRouteAddress()
- This returns the originally requested destination for
the call.
-
getRouteSelectAlgorithm()
- This returns the route select algorithm being used.
-
getSetupInformation()
- This returns the ISDN call setup message when available.
SELECT_NORMAL
public final static int SELECT_NORMAL
- Select a normal route.
SELECT_LEAST_COST
public final static int SELECT_LEAST_COST
- Select a least cost route.
SELECT_EMERGENCY
public final static int SELECT_EMERGENCY
- Select an emergency route.
SELECT_ACD
public final static int SELECT_ACD
- Select a route to an ACDAddress.
SELECT_USER_DEFINED
public final static int SELECT_USER_DEFINED
- Select a user defined route.
getCurrentRouteAddress
public abstract RouteAddress getCurrentRouteAddress()
- This returns the originally requested destination for
the call.
getCallingAddress
public abstract Address getCallingAddress()
- This returns the calling Address.
getCallingTerminal
public abstract Terminal getCallingTerminal()
- This returns the calling Terminal.
getRouteSelectAlgorithm
public abstract int getRouteSelectAlgorithm()
- This returns the route select algorithm being used.
getSetupInformation
public abstract String getSetupInformation()
- This returns the ISDN call setup message when available.
All Packages Class Hierarchy This Package Previous Next Index