From 50be587b3604c958faa438cd587364da8f49d9a7 Mon Sep 17 00:00:00 2001 From: jhh Date: Sun, 14 Apr 2019 21:41:14 -0500 Subject: Modify dependencies to avoid enabled features fail The drl change is only partial just to recognize Tosca policies. Change-Id: I5d3b8071394a9ea14638170e04d74e4c6b4ad028 Issue-ID: POLICY-1642 Signed-off-by: jhh --- .../src/main/resources/__closedLoopControlName__.drl | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'controlloop/templates/archetype-cl-usecases/src/main/resources') diff --git a/controlloop/templates/archetype-cl-usecases/src/main/resources/archetype-resources/src/main/resources/__closedLoopControlName__.drl b/controlloop/templates/archetype-cl-usecases/src/main/resources/archetype-resources/src/main/resources/__closedLoopControlName__.drl index 77edee1e7..8dcc79866 100644 --- a/controlloop/templates/archetype-cl-usecases/src/main/resources/archetype-resources/src/main/resources/__closedLoopControlName__.drl +++ b/controlloop/templates/archetype-cl-usecases/src/main/resources/archetype-resources/src/main/resources/__closedLoopControlName__.drl @@ -64,6 +64,7 @@ import org.onap.policy.guard.PolicyGuardRequest; import org.onap.policy.guard.PolicyGuardResponse; import org.onap.policy.guard.PolicyGuardXacmlRequestAttributes; import org.onap.policy.guard.PolicyGuardXacmlHelper; +import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy; import org.yaml.snakeyaml.Yaml; import org.yaml.snakeyaml.constructor.Constructor; @@ -108,6 +109,22 @@ rule "INSERT.PARAMS" + drools.getRule().getName(), $params.getControlLoopYaml()); end +/* +* +* Called when a Tosca Policy fact is present. +* +*/ +rule "NEW TOSCA POLICY" + when + $policy : ToscaPolicy() + then + + Logger logger = LoggerFactory.getLogger(drools.getRule().getPackage()); + logger.info("{}:{}: [{}|{}|{}|{}]: CONTENT: {}", drools.getRule().getName(), + $policy.getType(), $policy.getTypeVersion(), $policy.getName(), $policy.getVersion(), + $policy); +end + /* * * This rule responds to DCAE Events where there is no manager yet. Either it is -- cgit 1.2.3-korg