diff options
Diffstat (limited to 'controlloop/templates/template.demo/src')
2 files changed, 6 insertions, 7 deletions
diff --git a/controlloop/templates/template.demo/src/main/resources/ControlLoop_Template_xacml_guard.drl b/controlloop/templates/template.demo/src/main/resources/ControlLoop_Template_xacml_guard.drl index 8eab47885..276e64b7d 100644 --- a/controlloop/templates/template.demo/src/main/resources/ControlLoop_Template_xacml_guard.drl +++ b/controlloop/templates/template.demo/src/main/resources/ControlLoop_Template_xacml_guard.drl @@ -320,7 +320,7 @@ rule "${policyName}.EVENT.MANAGER" // // Check whether we need to wait for abatement // - if ($manager.getProcessor().getControlLoop().abatement == true && notification.notification == ControlLoopNotificationType.FINAL_SUCCESS) { + if ($manager.getProcessor().getControlLoop().getAbatement() == true && notification.notification == ControlLoopNotificationType.FINAL_SUCCESS) { Logger.info("Waiting for abatement."); } else { Logger.info("No abatement is promised to come, close out the control loop for " + $event.requestID); @@ -486,7 +486,7 @@ rule "${policyName}.EVENT.MANAGER.OPERATION.LOCKED.GUARD_PERMITTED" notification.policyVersion = "${policyVersion}"; Engine.deliver("UEB", "POLICY-CL-MGT", notification); - switch ($operation.policy.actor){ + switch ($operation.policy.getActor()){ case "APPC": @@ -497,7 +497,7 @@ rule "${policyName}.EVENT.MANAGER.OPERATION.LOCKED.GUARD_PERMITTED" case "VFC": if (request instanceof VFCRequest) { // Start VFC thread - Thread t = new Thread(new VFCManager(request)); + Thread t = new Thread(new VFCManager((VFCRequest)request)); t.start(); } break; @@ -567,8 +567,8 @@ rule "${policyName}.EVENT.MANAGER.OPERATION.LOCKED.GUARD_NOT_YET_QUERIED" "", drools.getWorkingMemory(), $event.closedLoopControlName, - $operation.policy.actor.toString(), - $operation.policy.recipe, + $operation.policy.getActor().toString(), + $operation.policy.getRecipe(), $manager.getTargetInstance($operation.policy), //$event.target, $event.requestID.toString() @@ -576,7 +576,7 @@ rule "${policyName}.EVENT.MANAGER.OPERATION.LOCKED.GUARD_NOT_YET_QUERIED" t.start(); } else{ - insert(new PolicyGuardResponse("Permit", $event.requestID, $operation.policy.recipe)); + insert(new PolicyGuardResponse("Permit", $event.requestID, $operation.policy.getRecipe())); } diff --git a/controlloop/templates/template.demo/src/test/java/org/onap/policy/template/demo/ControlLoopXacmlGuardTest.java b/controlloop/templates/template.demo/src/test/java/org/onap/policy/template/demo/ControlLoopXacmlGuardTest.java index 20565c296..1fce83d2c 100644 --- a/controlloop/templates/template.demo/src/test/java/org/onap/policy/template/demo/ControlLoopXacmlGuardTest.java +++ b/controlloop/templates/template.demo/src/test/java/org/onap/policy/template/demo/ControlLoopXacmlGuardTest.java @@ -91,7 +91,6 @@ import com.att.research.xacml.util.XACMLProperties; public class ControlLoopXacmlGuardTest { private static final Logger logger = LoggerFactory.getLogger(ControlLoopXacmlGuardTest.class); - @Ignore @Test public void test() { try { |