From 27c0d0c0a925e4fa0fed41fd7cf794b02be15595 Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Tue, 20 Jul 2021 17:34:22 -0400 Subject: Use new xacml actor in drools-apps Modified drools-apps to use actor.xacml instead of actor.guard. This included updating property files. Issue-ID: POLICY-3503 Change-Id: I25c5586c59a2adaae9f4f0f5ca66e14b12b0c18a Signed-off-by: Jim Hahn --- controlloop/common/controller-usecases/pom.xml | 4 ++-- .../drools/apps/controller/usecases/step/GuardStep2.java | 6 +++--- .../controller-usecases/src/main/resources/usecases.drl | 16 +++++++--------- .../java/org/onap/policy/controlloop/UsecasesTest.java | 4 ++-- .../apps/controller/usecases/step/GuardStep2Test.java | 8 ++++---- .../src/test/resources/config/event-manager.properties | 12 ++++++------ .../resources/config/usecases-http-client.properties | 16 ++++++++-------- controlloop/common/eventmanager/pom.xml | 2 +- .../eventmanager/ControlLoopEventManager.java | 2 +- .../controlloop/eventmanager/EventManagerServices.java | 14 +++++++------- .../eventService/event-svc-guard-disabled.properties | 14 +++++++------- .../eventService/event-svc-http-client.properties | 10 +++++----- .../eventService/event-svc-invalid-db.properties | 14 +++++++------- .../eventService/event-svc-no-guard-actor.properties | 10 +++++----- .../resources/eventService/event-svc-with-db.properties | 14 +++++++------- .../common/feature-controlloop-management/pom.xml | 4 ++-- .../feature/utils/ControlLoopUtilsFeature.java | 4 ++-- .../feature/utils/ControlLoopUtilsFeatureTest.java | 4 ++-- 18 files changed, 78 insertions(+), 80 deletions(-) (limited to 'controlloop') diff --git a/controlloop/common/controller-usecases/pom.xml b/controlloop/common/controller-usecases/pom.xml index 236a95a22..46e2626d8 100644 --- a/controlloop/common/controller-usecases/pom.xml +++ b/controlloop/common/controller-usecases/pom.xml @@ -3,7 +3,7 @@ ============LICENSE_START======================================================= ONAP ================================================================================ - Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. + Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -136,7 +136,7 @@ org.onap.policy.models.policy-models-interactions.model-actors - actor.guard + actor.xacml ${policy.models.version} provided diff --git a/controlloop/common/controller-usecases/src/main/java/org/onap/policy/drools/apps/controller/usecases/step/GuardStep2.java b/controlloop/common/controller-usecases/src/main/java/org/onap/policy/drools/apps/controller/usecases/step/GuardStep2.java index abc9ff2b2..840d1417d 100644 --- a/controlloop/common/controller-usecases/src/main/java/org/onap/policy/drools/apps/controller/usecases/step/GuardStep2.java +++ b/controlloop/common/controller-usecases/src/main/java/org/onap/policy/drools/apps/controller/usecases/step/GuardStep2.java @@ -29,9 +29,9 @@ import org.onap.aai.domain.yang.RelatedToProperty; import org.onap.aai.domain.yang.Relationship; import org.onap.aai.domain.yang.RelationshipData; import org.onap.policy.aai.AaiCqResponse; -import org.onap.policy.controlloop.actor.guard.DecisionOperation; -import org.onap.policy.controlloop.actor.guard.GuardActor; import org.onap.policy.controlloop.actor.so.VfModuleCreate; +import org.onap.policy.controlloop.actor.xacml.GuardOperation; +import org.onap.policy.controlloop.actor.xacml.XacmlActor; import org.onap.policy.controlloop.actorserviceprovider.Operation; import org.onap.policy.controlloop.actorserviceprovider.OperationProperties; import org.onap.policy.controlloop.actorserviceprovider.TargetType; @@ -64,7 +64,7 @@ public class GuardStep2 extends Step2 { * @param otherStep step whose information should be used */ public GuardStep2(Step2 otherStep, String closedLoopControlName) { - super(otherStep, GuardActor.NAME, DecisionOperation.NAME); + super(otherStep, XacmlActor.NAME, GuardOperation.NAME); if (!otherStep.isInitialized()) { throw new IllegalStateException("policy operation must be initialized before the guard operation"); diff --git a/controlloop/common/controller-usecases/src/main/resources/usecases.drl b/controlloop/common/controller-usecases/src/main/resources/usecases.drl index 5074215bb..932b08cf6 100644 --- a/controlloop/common/controller-usecases/src/main/resources/usecases.drl +++ b/controlloop/common/controller-usecases/src/main/resources/usecases.drl @@ -27,11 +27,7 @@ import org.onap.policy.controlloop.CanonicalOnset; import org.onap.policy.controlloop.VirtualControlLoopEvent; import org.onap.policy.controlloop.VirtualControlLoopNotification; import org.onap.policy.controlloop.ControlLoopNotificationType; -import org.onap.policy.controlloop.actor.aai.AaiActor; -import org.onap.policy.controlloop.actor.aai.AaiGetPnfOperation; -import org.onap.policy.controlloop.actor.aai.AaiGetTenantOperation; -import org.onap.policy.controlloop.actor.guard.GuardActor; -import org.onap.policy.controlloop.actor.guard.DecisionOperation; +import org.onap.policy.controlloop.actor.xacml.XacmlActor; import org.onap.policy.controlloop.actorserviceprovider.Operation; import org.onap.policy.controlloop.actorserviceprovider.OperationOutcome; import org.onap.policy.controlloop.actorserviceprovider.OperationFinalResult; @@ -45,6 +41,7 @@ import org.onap.policy.drools.apps.controller.usecases.UsecasesEventManager; import org.onap.policy.controlloop.eventmanager.ClEventManagerWithSteps.State; import org.onap.policy.controlloop.eventmanager.ClEventManagerWithOutcome.OperationOutcome2; import org.onap.policy.controlloop.eventmanager.ClEventManagerWithEvent.NewEventStatus; +import org.onap.policy.controlloop.eventmanager.ControlLoopEventManager; import org.onap.policy.controlloop.eventmanager.EventManagerServices; import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy; @@ -415,9 +412,10 @@ rule "EVENT.MANAGER.EXECUTE.STEP" $step.setProperties(); boolean guardDisabled = "true".equalsIgnoreCase( - PolicyEngineConstants.getManager().getEnvironmentProperty("guard.disabled")); + PolicyEngineConstants.getManager().getEnvironmentProperty( + ControlLoopEventManager.GUARD_DISABLED_PROPERTY)); - if (guardDisabled && "GUARD".equals($step.getActorName())) { + if (guardDisabled && XacmlActor.NAME.equals($step.getActorName())) { // guard is disabled - just enqueue a "SUCCESS" (i.e., "Permit") OperationOutcome outcome = $step.getParams().makeOutcome(); outcome.setStart(Instant.now()); @@ -498,8 +496,8 @@ rule "EVENT.MANAGER.PROCESS.GUARD.OUTCOME" $outcome != null, !isAbort($outcome), $step : getSteps().peek(), - "GUARD".equals($step.getActorName()), - $outcome.isFor("GUARD", $step.getOperationName()) ) + XacmlActor.NAME.equals($step.getActorName()), + $outcome.isFor($step.getActorName(), $step.getOperationName()) ) then Logger logger = LoggerFactory.getLogger(drools.getRule().getPackage()); diff --git a/controlloop/common/controller-usecases/src/test/java/org/onap/policy/controlloop/UsecasesTest.java b/controlloop/common/controller-usecases/src/test/java/org/onap/policy/controlloop/UsecasesTest.java index 8b0403df3..ef40d302e 100644 --- a/controlloop/common/controller-usecases/src/test/java/org/onap/policy/controlloop/UsecasesTest.java +++ b/controlloop/common/controller-usecases/src/test/java/org/onap/policy/controlloop/UsecasesTest.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * ONAP * ================================================================================ - * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -55,7 +55,7 @@ public class UsecasesTest extends DroolsRuleTest { rules.configure("src/main/resources"); httpClients.addClients("usecases"); - simulators.start(Util::buildAaiSim, Util::buildSoSim, Util::buildVfcSim, Util::buildGuardSim, + simulators.start(Util::buildAaiSim, Util::buildSoSim, Util::buildVfcSim, Util::buildXacmlSim, Util::buildSdncSim); rules.start(); diff --git a/controlloop/common/controller-usecases/src/test/java/org/onap/policy/drools/apps/controller/usecases/step/GuardStep2Test.java b/controlloop/common/controller-usecases/src/test/java/org/onap/policy/drools/apps/controller/usecases/step/GuardStep2Test.java index d5945a30c..ffd88d54d 100644 --- a/controlloop/common/controller-usecases/src/test/java/org/onap/policy/drools/apps/controller/usecases/step/GuardStep2Test.java +++ b/controlloop/common/controller-usecases/src/test/java/org/onap/policy/drools/apps/controller/usecases/step/GuardStep2Test.java @@ -45,9 +45,9 @@ import org.onap.aai.domain.yang.RelationshipList; import org.onap.aai.domain.yang.Vserver; import org.onap.policy.aai.AaiCqResponse; import org.onap.policy.controlloop.VirtualControlLoopEvent; -import org.onap.policy.controlloop.actor.guard.DecisionOperation; -import org.onap.policy.controlloop.actor.guard.GuardActor; import org.onap.policy.controlloop.actor.so.VfModuleCreate; +import org.onap.policy.controlloop.actor.xacml.GuardOperation; +import org.onap.policy.controlloop.actor.xacml.XacmlActor; import org.onap.policy.controlloop.actorserviceprovider.Operation; import org.onap.policy.controlloop.actorserviceprovider.OperationProperties; import org.onap.policy.controlloop.actorserviceprovider.TargetType; @@ -182,8 +182,8 @@ public class GuardStep2Test { @Test public void testConstructor() { - assertEquals(GuardActor.NAME, step.getActorName()); - assertEquals(DecisionOperation.NAME, step.getOperationName()); + assertEquals(XacmlActor.NAME, step.getActorName()); + assertEquals(GuardOperation.NAME, step.getOperationName()); assertSame(stepContext, step.stepContext); assertSame(event, step.event); diff --git a/controlloop/common/controller-usecases/src/test/resources/config/event-manager.properties b/controlloop/common/controller-usecases/src/test/resources/config/event-manager.properties index 23e310623..10917f409 100644 --- a/controlloop/common/controller-usecases/src/test/resources/config/event-manager.properties +++ b/controlloop/common/controller-usecases/src/test/resources/config/event-manager.properties @@ -29,12 +29,12 @@ operation.history.password= # configured and started. Thus some of them have a "placeholder" property. # -#actor.service.GUARD.disabled=true -actor.service.GUARD.clientName=GUARD -actor.service.GUARD.onapName=my-onap-name -actor.service.GUARD.onapComponent=my-onap-component -actor.service.GUARD.onapInstance=my-onap-instance -actor.service.GUARD.operations.Decision.path=decision +#actor.service.XACML.disabled=true +actor.service.XACML.clientName=XACML +actor.service.XACML.onapName=my-onap-name +actor.service.XACML.onapComponent=my-onap-component +actor.service.XACML.onapInstance=my-onap-instance +actor.service.XACML.operations.Guard.path=decision actor.service.AAI.clientName=AAI actor.service.AAI.operations.CustomQuery.path=aai/v21/query diff --git a/controlloop/common/controller-usecases/src/test/resources/config/usecases-http-client.properties b/controlloop/common/controller-usecases/src/test/resources/config/usecases-http-client.properties index 1e3e88cec..72764bccc 100644 --- a/controlloop/common/controller-usecases/src/test/resources/config/usecases-http-client.properties +++ b/controlloop/common/controller-usecases/src/test/resources/config/usecases-http-client.properties @@ -2,7 +2,7 @@ # ============LICENSE_START======================================================= # ONAP # ================================================================================ -# Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. +# Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,14 +18,14 @@ # ============LICENSE_END========================================================= # -http.client.services=GUARD,AAI,SDNC,SO,VFC +http.client.services=XACML,AAI,SDNC,SO,VFC -http.client.services.GUARD.managed=true -http.client.services.GUARD.host=localhost -http.client.services.GUARD.port=6669 -http.client.services.GUARD.userName=pdpx -http.client.services.GUARD.password=pdpx -http.client.services.GUARD.contextUriPath=policy/pdpx/v1/ +http.client.services.XACML.managed=true +http.client.services.XACML.host=localhost +http.client.services.XACML.port=6669 +http.client.services.XACML.userName=pdpx +http.client.services.XACML.password=pdpx +http.client.services.XACML.contextUriPath=policy/pdpx/v1/ http.client.services.AAI.managed=true http.client.services.AAI.host=localhost diff --git a/controlloop/common/eventmanager/pom.xml b/controlloop/common/eventmanager/pom.xml index c762f6704..4bb827432 100644 --- a/controlloop/common/eventmanager/pom.xml +++ b/controlloop/common/eventmanager/pom.xml @@ -68,7 +68,7 @@ org.onap.policy.models.policy-models-interactions.model-actors - actor.guard + actor.xacml ${policy.models.version} provided diff --git a/controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/ControlLoopEventManager.java b/controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/ControlLoopEventManager.java index 3a7531c03..354567cd8 100644 --- a/controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/ControlLoopEventManager.java +++ b/controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/ControlLoopEventManager.java @@ -68,7 +68,7 @@ public class ControlLoopEventManager implements StepContext, Serializable { */ private static final OperationHistoryDataManager STUB_DATA_MANAGER = new OperationHistoryDataManagerStub(); - private static final String GUARD_DISABLED_PROPERTY = "guard.disabled"; + public static final String GUARD_DISABLED_PROPERTY = "guard.disabled"; /** * Counts the number of these objects that have been created. This is used by junit diff --git a/controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/EventManagerServices.java b/controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/EventManagerServices.java index 4fef9f9d4..3271267e7 100644 --- a/controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/EventManagerServices.java +++ b/controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/EventManagerServices.java @@ -25,10 +25,10 @@ import java.util.Properties; import lombok.Getter; import org.onap.policy.common.parameters.ValidationResult; import org.onap.policy.common.utils.properties.PropertyObjectUtils; -import org.onap.policy.controlloop.actor.guard.DecisionOperation; -import org.onap.policy.controlloop.actor.guard.DecisionOperator; -import org.onap.policy.controlloop.actor.guard.GuardActor; -import org.onap.policy.controlloop.actor.guard.GuardConfig; +import org.onap.policy.controlloop.actor.xacml.DecisionConfig; +import org.onap.policy.controlloop.actor.xacml.DecisionOperator; +import org.onap.policy.controlloop.actor.xacml.GuardOperation; +import org.onap.policy.controlloop.actor.xacml.XacmlActor; import org.onap.policy.controlloop.actorserviceprovider.ActorService; import org.onap.policy.controlloop.actorserviceprovider.Util; import org.onap.policy.controlloop.ophistory.OperationHistoryDataManager; @@ -103,14 +103,14 @@ public class EventManagerServices { */ public boolean isGuardEnabled() { try { - DecisionOperator guard = (DecisionOperator) getActorService().getActor(GuardActor.NAME) - .getOperator(DecisionOperation.NAME); + DecisionOperator guard = (DecisionOperator) getActorService().getActor(XacmlActor.NAME) + .getOperator(GuardOperation.NAME); if (!guard.isConfigured()) { logger.warn("cannot check 'disabled' property in GUARD actor - assuming disabled"); return false; } - GuardConfig config = (GuardConfig) guard.getCurrentConfig(); + DecisionConfig config = (DecisionConfig) guard.getCurrentConfig(); if (config.isDisabled()) { logger.warn("guard disabled"); return false; diff --git a/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-guard-disabled.properties b/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-guard-disabled.properties index 289de44eb..8f8c71f37 100644 --- a/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-guard-disabled.properties +++ b/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-guard-disabled.properties @@ -2,7 +2,7 @@ # ============LICENSE_START====================================================== # ONAP # =============================================================================== -# Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. +# Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. # =============================================================================== # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,9 +18,9 @@ # ============LICENSE_END======================================================== # -actor.service.GUARD.disabled=true -actor.service.GUARD.clientName=guard-client -actor.service.GUARD.onapName=my-onap-name -actor.service.GUARD.onapComponent=my-onap-component -actor.service.GUARD.onapInstance=my-onap-instance -actor.service.GUARD.operations.Decision.path=decide +actor.service.XACML.disabled=true +actor.service.XACML.clientName=xacml-client +actor.service.XACML.onapName=my-onap-name +actor.service.XACML.onapComponent=my-onap-component +actor.service.XACML.onapInstance=my-onap-instance +actor.service.XACML.operations.Guard.path=decide diff --git a/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-http-client.properties b/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-http-client.properties index a563afdc3..8a1819b61 100644 --- a/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-http-client.properties +++ b/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-http-client.properties @@ -2,7 +2,7 @@ # ============LICENSE_START====================================================== # ONAP # =============================================================================== -# Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. +# Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. # =============================================================================== # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,7 +18,7 @@ # ============LICENSE_END======================================================== # -http.client.services=guard-client -http.client.services.guard-client.host=localhost -http.client.services.guard-client.port=80 -http.client.services.guard-client.managed=true +http.client.services=xacml-client +http.client.services.xacml-client.host=localhost +http.client.services.xacml-client.port=80 +http.client.services.xacml-client.managed=true diff --git a/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-invalid-db.properties b/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-invalid-db.properties index 09a6fbb31..3648567c2 100644 --- a/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-invalid-db.properties +++ b/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-invalid-db.properties @@ -2,7 +2,7 @@ # ============LICENSE_START====================================================== # ONAP # =============================================================================== -# Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. +# Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. # =============================================================================== # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,12 +18,12 @@ # ============LICENSE_END======================================================== # -#actor.service.GUARD.disabled=true -actor.service.GUARD.clientName=guard-client -actor.service.GUARD.onapName=my-onap-name -actor.service.GUARD.onapComponent=my-onap-component -actor.service.GUARD.onapInstance=my-onap-instance -actor.service.GUARD.operations.Decision.path=decide +#actor.service.XACML.disabled=true +actor.service.XACML.clientName=xacml-client +actor.service.XACML.onapName=my-onap-name +actor.service.XACML.onapComponent=my-onap-component +actor.service.XACML.onapInstance=my-onap-instance +actor.service.XACML.operations.Guard.path=decide # purposely missing the URL #operation.history.url=jdbc:h2:mem:EventManagerServicesTest diff --git a/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-no-guard-actor.properties b/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-no-guard-actor.properties index 027f824e8..f72378881 100644 --- a/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-no-guard-actor.properties +++ b/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-no-guard-actor.properties @@ -2,7 +2,7 @@ # ============LICENSE_START====================================================== # ONAP # =============================================================================== -# Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. +# Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. # =============================================================================== # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,8 +18,8 @@ # ============LICENSE_END======================================================== # -# all GUARD properties are commented out on purpose +# all XACML properties are commented out on purpose -#actor.service.GUARD.disabled=true -#actor.service.GUARD.clientName=guard-client -#actor.service.GUARD.operations.Decision.path=decide +#actor.service.XACML.disabled=true +#actor.service.XACML.clientName=xacml-client +#actor.service.XACML.operations.Guard.path=decide diff --git a/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-with-db.properties b/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-with-db.properties index 0fd886b46..c20f82b22 100644 --- a/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-with-db.properties +++ b/controlloop/common/eventmanager/src/test/resources/eventService/event-svc-with-db.properties @@ -2,7 +2,7 @@ # ============LICENSE_START====================================================== # ONAP # =============================================================================== -# Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. +# Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. # =============================================================================== # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,12 +18,12 @@ # ============LICENSE_END======================================================== # -#actor.service.GUARD.disabled=true -actor.service.GUARD.clientName=guard-client -actor.service.GUARD.onapName=my-onap-name -actor.service.GUARD.onapComponent=my-onap-component -actor.service.GUARD.onapInstance=my-onap-instance -actor.service.GUARD.operations.Decision.path=decide +#actor.service.XACML.disabled=true +actor.service.XACML.clientName=xacml-client +actor.service.XACML.onapName=my-onap-name +actor.service.XACML.onapComponent=my-onap-component +actor.service.XACML.onapInstance=my-onap-instance +actor.service.XACML.operations.Guard.path=decide operation.history.url=jdbc:h2:mem:EventManagerServicesTest operation.history.userName=sa diff --git a/controlloop/common/feature-controlloop-management/pom.xml b/controlloop/common/feature-controlloop-management/pom.xml index 3a8b80ec9..20855b0e3 100644 --- a/controlloop/common/feature-controlloop-management/pom.xml +++ b/controlloop/common/feature-controlloop-management/pom.xml @@ -2,7 +2,7 @@ ============LICENSE_START======================================================= ONAP ================================================================================ - Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved. + Copyright (C) 2018-2021 AT&T Intellectual Property. All rights reserved. Modifications Copyright (C) 2019 Nordix Foundation. Modifications Copyright (C) 2020 Bell Canada. ================================================================================ @@ -194,7 +194,7 @@ org.onap.policy.models.policy-models-interactions.model-actors - actor.guard + actor.xacml ${policy.models.version} diff --git a/controlloop/common/feature-controlloop-utils/src/main/java/org/onap/policy/drools/apps/controlloop/feature/utils/ControlLoopUtilsFeature.java b/controlloop/common/feature-controlloop-utils/src/main/java/org/onap/policy/drools/apps/controlloop/feature/utils/ControlLoopUtilsFeature.java index 0123cef90..98a3b2dae 100644 --- a/controlloop/common/feature-controlloop-utils/src/main/java/org/onap/policy/drools/apps/controlloop/feature/utils/ControlLoopUtilsFeature.java +++ b/controlloop/common/feature-controlloop-utils/src/main/java/org/onap/policy/drools/apps/controlloop/feature/utils/ControlLoopUtilsFeature.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * ONAP * ================================================================================ - * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2017-2019, 2021 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -41,7 +41,7 @@ public class ControlLoopUtilsFeature implements PolicyEngineFeatureApi { Util.buildAaiSim(); Util.buildSoSim(); Util.buildVfcSim(); - Util.buildGuardSim(); + Util.buildXacmlSim(); Util.buildSdncSim(); } catch (final InterruptedException e) { logger.error("{}: initialization aborted", ControlLoopUtilsFeature.class.getName(), e); diff --git a/controlloop/common/feature-controlloop-utils/src/test/java/org/onap/policy/drools/apps/controlloop/feature/utils/ControlLoopUtilsFeatureTest.java b/controlloop/common/feature-controlloop-utils/src/test/java/org/onap/policy/drools/apps/controlloop/feature/utils/ControlLoopUtilsFeatureTest.java index e2bdf1b2d..db0c7a4ef 100644 --- a/controlloop/common/feature-controlloop-utils/src/test/java/org/onap/policy/drools/apps/controlloop/feature/utils/ControlLoopUtilsFeatureTest.java +++ b/controlloop/common/feature-controlloop-utils/src/test/java/org/onap/policy/drools/apps/controlloop/feature/utils/ControlLoopUtilsFeatureTest.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * ONAP * ================================================================================ - * Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -42,7 +42,7 @@ public class ControlLoopUtilsFeatureTest { assertNotNull(HttpServletServerFactoryInstance.getServerFactory().get(Util.AAISIM_SERVER_PORT)); assertNotNull(HttpServletServerFactoryInstance.getServerFactory().get(Util.SOSIM_SERVER_PORT)); assertNotNull(HttpServletServerFactoryInstance.getServerFactory().get(Util.SOSIM_SERVER_PORT)); - assertNotNull(HttpServletServerFactoryInstance.getServerFactory().get(Util.GUARDSIM_SERVER_PORT)); + assertNotNull(HttpServletServerFactoryInstance.getServerFactory().get(Util.XACMLSIM_SERVER_PORT)); assertNotNull(HttpServletServerFactoryInstance.getServerFactory().get(Util.SDNCSIM_SERVER_PORT)); } -- cgit 1.2.3-korg