Add frankfurt rules for Actor redesign 79/102179/25
authorJim Hahn <jrh3@att.com>
Sat, 22 Feb 2020 22:11:20 +0000 (17:11 -0500)
committerJim Hahn <jrh3@att.com>
Fri, 6 Mar 2020 17:42:32 +0000 (12:42 -0500)
commitc1f79cd311ad62d3adb374921b8c3d303db5add6
tree58babf7d14b280825d0e02e153634a056c3fd724
parentb3a65de5156de7e2f4ac6e69c515576d077443aa
Add frankfurt rules for Actor redesign

Note: VcpeTest and VfwTest are not included, as they depend on updates
to the APPC and APPC-LCM Actors.
Added feature-controlloop-frankfurt.
Added HTTP client property files to feature-controlloop-management.

Updates per review comments:
- pom changes
- simplify FrankfurtBase
- rename event-svc-http.properties
- change "usescases" to "frankfurt"
- use blanks for CDS property defaults
- trailing spaces in http-client files
- add https property to http-client files

Added newlines to config files that appear to be missing them (based
on feedback from gerrit).

Issue-ID: POLICY-2385
Signed-off-by: Jim Hahn <jrh3@att.com>
Change-Id: Ib4a4d75461c734ae47309e41dc9d099e8815d55d
66 files changed:
controlloop/common/controller-frankfurt/pom.xml [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/main/resources/META-INF/kmodule.xml [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/main/resources/frankfurt.drl [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/java/org/onap/policy/controlloop/FrankfurtBase.java [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/java/org/onap/policy/controlloop/VlbTest.java [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/config/event-manager.properties [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/config/frankfurt-controller.properties [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/config/frankfurt-http-client.properties [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/frankfurt.pom [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vcpe/tosca-compliant-vcpe.json [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vcpe/tosca-legacy-vcpe.json [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vcpe/vcpe.appc.success.json [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vcpe/vcpe.onset.1.json [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vcpe/vcpe.onset.2.json [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vcpe/vcpe.onset.3.json [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vfw/tosca-compliant-vfw.json [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vfw/tosca-vfw.json [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vfw/vfw.appc.success.json [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vfw/vfw.onset.json [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vlb/tosca-compliant-vlb.json [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vlb/tosca-vlb.json [new file with mode: 0644]
controlloop/common/controller-frankfurt/src/test/resources/vlb/vlb.onset.json [new file with mode: 0644]
controlloop/common/controller-usecases/pom.xml
controlloop/common/eventmanager/pom.xml
controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/ControlLoopEventManager2.java [new file with mode: 0644]
controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/ControlLoopOperationManager2.java [new file with mode: 0644]
controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/EventManagerServices.java [new file with mode: 0644]
controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/LockData.java [new file with mode: 0644]
controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/eventmanager/ManagerContext.java [new file with mode: 0644]
controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/ophistory/OperationHistoryDataManager.java [new file with mode: 0644]
controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/ophistory/OperationHistoryDataManagerImpl.java [new file with mode: 0644]
controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/ophistory/OperationHistoryDataManagerParams.java [new file with mode: 0644]
controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/ophistory/OperationHistoryDataManagerStub.java [new file with mode: 0644]
controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/processor/ControlLoopProcessor.java
controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/utils/ControlLoopUtils.java
controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/eventmanager/ControlLoopEventManager2Test.java [new file with mode: 0644]
controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/eventmanager/ControlLoopOperationManager2Test.java [new file with mode: 0644]
controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/eventmanager/EventManagerServicesTest.java [new file with mode: 0644]
controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/eventmanager/LockDataTest.java [new file with mode: 0644]
controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/ophistory/OperationHistoryDataManagerImplTest.java [new file with mode: 0644]
controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/ophistory/OperationHistoryDataManagerParamsTest.java [new file with mode: 0644]
controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/ophistory/OperationHistoryDataManagerStubTest.java [new file with mode: 0644]
controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/utils/ControlLoopUtilsTest.java
controlloop/common/eventmanager/src/test/resources/META-INF/persistence.xml
controlloop/common/eventmanager/src/test/resources/eventManager/event-mgr-multi.yaml [new file with mode: 0644]
controlloop/common/eventmanager/src/test/resources/eventManager/event-mgr-simple.yaml [new file with mode: 0644]
controlloop/common/eventmanager/src/test/resources/eventService/event-svc-guard-disabled.properties [new file with mode: 0644]
controlloop/common/eventmanager/src/test/resources/eventService/event-svc-http-client.properties [new file with mode: 0644]
controlloop/common/eventmanager/src/test/resources/eventService/event-svc-invalid-db.properties [new file with mode: 0644]
controlloop/common/eventmanager/src/test/resources/eventService/event-svc-no-guard-actor.properties [new file with mode: 0644]
controlloop/common/eventmanager/src/test/resources/eventService/event-svc-with-db.properties [new file with mode: 0644]
controlloop/common/feature-controlloop-frankfurt/pom.xml [new file with mode: 0644]
controlloop/common/feature-controlloop-frankfurt/src/assembly/assemble_zip.xml [new file with mode: 0644]
controlloop/common/feature-controlloop-frankfurt/src/main/feature/config/frankfurt-controller.properties [new file with mode: 0644]
controlloop/common/feature-controlloop-frankfurt/src/main/feature/config/logback-include-frankfurt.xml [new file with mode: 0644]
controlloop/common/feature-controlloop-frankfurt/src/main/java/org/onap/policy/drools/apps/controlloop/feature/frankfurt/FrankfurtFeature.java [new file with mode: 0644]
controlloop/common/feature-controlloop-frankfurt/src/main/resources/META-INF/services/org.onap.policy.drools.features.PolicyEngineFeatureApi [new file with mode: 0644]
controlloop/common/feature-controlloop-frankfurt/src/test/java/org/onap/policy/drools/apps/controlloop/feature/frankfurt/FrankfurtFeatureTest.java [new file with mode: 0644]
controlloop/common/feature-controlloop-management/pom.xml
controlloop/common/feature-controlloop-management/src/main/feature/config/AAI-http-client.properties [new file with mode: 0644]
controlloop/common/feature-controlloop-management/src/main/feature/config/GUARD-http-client.properties [new file with mode: 0644]
controlloop/common/feature-controlloop-management/src/main/feature/config/SDNC-http-client.properties [new file with mode: 0644]
controlloop/common/feature-controlloop-management/src/main/feature/config/SO-http-client.properties [new file with mode: 0644]
controlloop/common/feature-controlloop-management/src/main/feature/config/VFC-http-client.properties [new file with mode: 0644]
controlloop/common/feature-controlloop-management/src/main/feature/config/event-manager.properties [new file with mode: 0644]
controlloop/common/pom.xml