This example shows how to retrieve a server-initiated reauthorization request from the Online Charging System (OCS) in the form of a RoReAuthInfo object.
In the following snippet, the client application receives a RoReAuthInfo object from the OCS, requesting reauthorization to continue using the service. The client can query information about the credit pool, service identifier, and rating group.
public void notifyCCReAuth(RoReAuthInfo reAuthInfo) { GSUPoolReference gsuPoolReference = reAuthInfo.getGSUPoolReference(); Integer serviceId = reAuthInfo.getServiceIdentifier(); Integer ratingGroup = reAuthInfo.getRatingGroup();}