diff options
Diffstat (limited to 'controlloop/m2/test')
-rw-r--r-- | controlloop/m2/test/src/test/resources/appclcm/M2CLRulevUSPAPPCLCMGuardTemplate.drl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/controlloop/m2/test/src/test/resources/appclcm/M2CLRulevUSPAPPCLCMGuardTemplate.drl b/controlloop/m2/test/src/test/resources/appclcm/M2CLRulevUSPAPPCLCMGuardTemplate.drl index 2a24f1312..0e947c8e1 100644 --- a/controlloop/m2/test/src/test/resources/appclcm/M2CLRulevUSPAPPCLCMGuardTemplate.drl +++ b/controlloop/m2/test/src/test/resources/appclcm/M2CLRulevUSPAPPCLCMGuardTemplate.drl @@ -95,7 +95,7 @@ function void sendNotification(Context context, notification.setPolicyScope("${policyScope}"); notification.setPolicyVersion("${policyVersion}"); - PolicyEngineConstants.getManager().deliver(context.getNotificationTopic(), notification); + Util.deliver(context.getNotificationTopic(), notification); } } @@ -350,7 +350,7 @@ rule "${policyName}.TRANSACTION.LCM.BEGIN" logger.error("request could not be formed due to: "+e.getMessage()); return; } - PolicyEngineConstants.getManager().deliver($context.getOperationTopic(), request); + Util.deliver($context.getOperationTopic(), request); // send notification sendNotification($context, drools, |