Package com.highdeal.cnd.message
Interface IReservationRenewalAcknowledger
public interface IReservationRenewalAcknowledger
This
Java interface enables to inform the connected SAP CC system that the renew reservation notification is handled
during session-based charging operations (see the online charging services).
Implementation in Your Client Application
Customizing
Your charging client sends the business acknowledgement by invoking theack(..) method.
This action ends the resend of this renew reservation notification.
Optional Customizing
Optionally, a confirmation can be sent from the SAP CC system to the charging client to confirm that the business acknowledgement has been taken into account. Use theack(..) method with a non null argument to get this
confirmation back.
Refer to the Advanced Implementation section in the StatefulServiceClient
or in the AsyncStatefulServiceClient to see how to implement the IReservationRenewalAcknowledger.
System Configuration
The resend function of the reservation renewal function must be enabled in the SAP CC system.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceThisJava interfaceenables areservation renewal listenerto be informed when the business acknowledgement has been received by the connected SAP CC system. -
Method Summary
Modifier and TypeMethodDescriptionvoidInforms the connected SAP CC system that the renew reservation notification is handled (business acknowledgement).
-
Method Details
-
ack
Informs the connected SAP CC system that the renew reservation notification is handled (business acknowledgement). This ends the resend of this renew reservation notification.Depending on your business requirements:
- Provide a not null argument to get the response back from the SAP CC system
- Use a
nulllistener if the response is not required for further processing
- Parameters:
listener- A listener to receive the response from the the SAP CC system to this business acknowledgement
-