use of org.mobicents.charging.server.ratingengine.RatingEngineClient in project charging-server by RestComm.
the class DiameterChargingServerSbb method getRatingEngineManager.
protected RatingEngineClient getRatingEngineManager() throws IllegalArgumentException, NullPointerException, SLEEException, CreateException {
ChildRelationExt cre = (ChildRelationExt) getRatingEngineChildRelation();
SbbLocalObjectExt sbbLocalObject = cre.get(RATING_CHILD_NAME);
if (sbbLocalObject == null) {
sbbLocalObject = cre.create(RATING_CHILD_NAME);
}
return (RatingEngineClient) sbbLocalObject;
}
Aggregations