Add m2 model, including the LCM application 89/98589/11
authorStraubs, Ralph (rs8887) <rs8887@att.com>
Tue, 19 Nov 2019 10:11:23 +0000 (04:11 -0600)
committerStraubs, Ralph (rs8887) <rs8887@att.com>
Fri, 10 Jan 2020 09:20:23 +0000 (03:20 -0600)
commit3e05cb41202145e113853392e9837abf3f6ec12c
tree0c504018436c3933f563caa37c3ea0512c82181e
parent927c7c177670a812a4a4139281ef84e85b520645
Add m2 model, including the LCM application

Issue-ID: POLICY-1948
Change-Id: I18a5231d3102073c928a591c9e91b241b7093680
Signed-off-by: Straubs, Ralph (rs8887) <rs8887@att.com>
46 files changed:
controlloop/m2/adapters/pom.xml [new file with mode: 0644]
controlloop/m2/adapters/src/main/java/org/onap/policy/m2/adapters/VirtualOnsetAdapter.java [new file with mode: 0644]
controlloop/m2/adapters/src/test/java/org/onap/policy/m2/adapters/VirtualOnsetAdapterTest.java [new file with mode: 0644]
controlloop/m2/appclcm/pom.xml [new file with mode: 0644]
controlloop/m2/appclcm/src/main/java/org/onap/policy/m2/appclcm/AppcLcmActor.java [new file with mode: 0644]
controlloop/m2/appclcm/src/main/java/org/onap/policy/m2/appclcm/AppcLcmHealthCheckOperation.java [new file with mode: 0644]
controlloop/m2/appclcm/src/main/java/org/onap/policy/m2/appclcm/AppcLcmOperation.java [new file with mode: 0644]
controlloop/m2/appclcm/src/main/java/org/onap/policy/m2/appclcm/model/AppcLcmResponseCode.java [new file with mode: 0644]
controlloop/m2/appclcm/src/main/resources/META-INF/services/org.onap.policy.m2.base.Actor [new file with mode: 0644]
controlloop/m2/appclcm/src/test/java/appclcm/AppcLcmHealthCheckOperationTest.java [new file with mode: 0644]
controlloop/m2/appclcm/src/test/java/appclcm/AppcLcmOperationTest.java [new file with mode: 0644]
controlloop/m2/appclcm/src/test/java/model/AppcLcmResponseCodeTest.java [new file with mode: 0644]
controlloop/m2/base/pom.xml [new file with mode: 0644]
controlloop/m2/base/src/main/java/org/onap/policy/m2/base/Actor.java [new file with mode: 0644]
controlloop/m2/base/src/main/java/org/onap/policy/m2/base/GuardAdjunct.java [new file with mode: 0644]
controlloop/m2/base/src/main/java/org/onap/policy/m2/base/OnsetAdapter.java [new file with mode: 0644]
controlloop/m2/base/src/main/java/org/onap/policy/m2/base/Operation.java [new file with mode: 0644]
controlloop/m2/base/src/main/java/org/onap/policy/m2/base/Transaction.java [new file with mode: 0644]
controlloop/m2/base/src/main/java/org/onap/policy/m2/base/Util.java [new file with mode: 0644]
controlloop/m2/base/src/test/java/org/onap/policy/m2/base/ActorOperationTest.java [new file with mode: 0644]
controlloop/m2/base/src/test/java/org/onap/policy/m2/base/GuardAdjunctTest.java [new file with mode: 0644]
controlloop/m2/base/src/test/java/org/onap/policy/m2/base/TransactionTest.java [new file with mode: 0644]
controlloop/m2/base/src/test/java/org/onap/policy/m2/base/UtilTest.java [new file with mode: 0644]
controlloop/m2/feature-controlloop-m2/pom.xml [new file with mode: 0644]
controlloop/m2/feature-controlloop-m2/src/assembly/assemble_zip.xml [new file with mode: 0644]
controlloop/m2/guard/pom.xml [new file with mode: 0644]
controlloop/m2/guard/src/main/java/org/onap/policy/guard/GuardContext.java [new file with mode: 0644]
controlloop/m2/guard/src/test/java/org/onap/policy/guard/GuardContextTest.java [new file with mode: 0644]
controlloop/m2/lock/pom.xml [new file with mode: 0644]
controlloop/m2/lock/src/main/java/org/onap/policy/drools/m2/lock/LockAdjunct.java [new file with mode: 0644]
controlloop/m2/lock/src/test/java/org/onap/policy/drools/m2/lock/LockAdjunctTest.java [new file with mode: 0644]
controlloop/m2/pom.xml [new file with mode: 0644]
controlloop/m2/test/pom.xml [new file with mode: 0644]
controlloop/m2/test/src/test/java/org/onap/policy/m2/test/AppcLcmTest.java [new file with mode: 0644]
controlloop/m2/test/src/test/java/org/onap/policy/m2/test/SimDmaap.java [new file with mode: 0644]
controlloop/m2/test/src/test/java/org/onap/policy/m2/test/SimGuard.java [new file with mode: 0644]
controlloop/m2/test/src/test/java/org/onap/policy/m2/test/Util.java [new file with mode: 0644]
controlloop/m2/test/src/test/resources/appclcm/CLRulevUSPAPPCLCMGuardTemplate.yaml [new file with mode: 0644]
controlloop/m2/test/src/test/resources/appclcm/M2CLRulevUSPAPPCLCMGuardTemplate.drl [new file with mode: 0644]
controlloop/m2/test/src/test/resources/appclcm/controller.properties [new file with mode: 0644]
controlloop/m2/test/src/test/resources/appclcm/kmodule.xml [new file with mode: 0644]
controlloop/m2/test/src/test/resources/appclcm/pom.xml [new file with mode: 0644]
controlloop/m2/util/pom.xml [new file with mode: 0644]
controlloop/m2/util/src/main/java/org/onap/policy/util/DroolsSessionCommonSerializable.java [new file with mode: 0644]
controlloop/m2/util/src/test/java/org/onap/policy/util/DroolsSessionCommonSerializableTest.java [new file with mode: 0644]
controlloop/pom.xml