Overview of the Online Charging API
Converged Application Server provides an online charging API to enable any deployed application to act as a CTF and issue online charging events to an OCF through the Ro protocol. All online charging requests use the Diameter Credit-Control-Request (CCR) message. The CC-Request-Type AVP is used to indicate the type of charging used. In the charging API, the CC-Request-Type is represented by the RequestType
class in package com.bea.wcp.diameter.cc
. Table 4-1 shows the request types associated with different credit authorization models.
Table 4-1 Credit Control Request Types
Type | Description | RequestType Field in com.bea.wcp.diameter.cc.RequestType |
---|---|---|
IEC |
Immediate Event Charging |
|
ECUR |
Event Charging with Unit Reservation |
|
SCUR |
Session Charging with Unit Reservation |
|
For ECUR and SCUR, units are reserved prior to service delivery and committed upon service completion. Units are reserved with INITIAL_REQUEST
and committed with a TERMINATION_REQUEST
. For SCUR, units can also be updated with UPDATE_REQUEST
.
The base diameter package, com.bea.wcp.diameter
, contains classes to support the re-authorization requests used in Ro. The com.bea.wcp.diameter.cc
package contains classes to support credit-control applications, including Ro applications. com.bea.wcp.diameter.charging
directly supports the Ro credit-control application. Table 4-2 summarizes the classes of interest to Ro credit-control.
Table 4-2 Summary of Ro Classes
Class | Description | Package |
---|---|---|
|
Constant definitions |
|
|
Online charging application |
|
|
Online charging session |
|
|
Credit Control Request |
|
|
Credit Control Answer |
|
|
Credit control client session |
|
|
Credit-control request type |
|
|
Re-Auth-Request message |
|
|
Re-Auth-Answer message |
|