public final class SampleRarPostChargingExtension extends java.lang.Object implements PostChargingExtension
| Constructor and Description |
|---|
SampleRarPostChargingExtension() |
| Modifier and Type | Method and Description |
|---|---|
void |
execute(PostChargingExtensionContext extensionContext)
This execute method is specific to a PostChargingExtension hook.
|
void |
initialize(ExtensionContext extensionContext)
method is invoked once at ECS Node startup time to allow integrators a spot to populate private
data members that are required by the extension callback.
|
void |
shutdown(ExtensionContext extensionContext)
method is invoked once at ECS Node shutdown time to allow integrators a spot to release any resources that
were acquired by the Extension.
|
public void initialize(ExtensionContext extensionContext) throws ExtensionException
oracle.communication.brm.charging.extensions.framework.ExtensionCallbackinitialize in interface PostChargingExtensioninitialize in interface oracle.communication.brm.charging.extensions.framework.ExtensionCallback<PostChargingExtensionContext>extensionContext - the context which exposes objects that are needed at initialization time.ExtensionException - if a non-recoverable error occurs during initialization.public void execute(PostChargingExtensionContext extensionContext) throws ExtensionException
PostChargingExtensionexecute in interface PostChargingExtensionextensionContext - context information pertaining to Post OCS charging.ExtensionException - throw and exception if a non-recoverable error occurs. This exception will
be logged and a EXTENSION_ERROR ServiceEvent will be set into the UsageResponse.public void shutdown(ExtensionContext extensionContext) throws ExtensionException
oracle.communication.brm.charging.extensions.framework.ExtensionCallbackshutdown in interface PostChargingExtensionshutdown in interface oracle.communication.brm.charging.extensions.framework.ExtensionCallback<PostChargingExtensionContext>extensionContext - the context which exposes objects that are needed at shutdown time.ExtensionException - if a non-recoverable error occurs during shutdown.