Refactor sliapi springboot 35/108835/3
authorDan Timoney <dtimoney@att.com>
Fri, 5 Jun 2020 19:46:39 +0000 (15:46 -0400)
committerKAPIL SINGAL <ks220y@att.com>
Tue, 9 Jun 2020 14:24:12 +0000 (14:24 +0000)
commit31172d602ff8bce4b4680c3a2da58b6db2e8d9f0
treebf66bc083d8f1a46c17132c990c7e725e828514d
parentc2fac23347ee5dd3f8b6e3180a0206eb979b965e
Refactor sliapi springboot

Moved sli-api springboot microservice from ccsdk/sli/core to ccsdk/apps

Change-Id: Ibecae568cf90b71575403052111e7be9ff543376
Issue-ID: CCSDK-2096
Signed-off-by: Dan Timoney <dtimoney@att.com>
45 files changed:
ms/pom.xml
ms/sliboot/.swagger-codegen-ignore [new file with mode: 0644]
ms/sliboot/README.md [new file with mode: 0644]
ms/sliboot/TagVersion.groovy [new file with mode: 0644]
ms/sliboot/pom.xml [new file with mode: 0644]
ms/sliboot/src/main/dc/docker-compose.yaml [new file with mode: 0755]
ms/sliboot/src/main/docker/Dockerfile [new file with mode: 0644]
ms/sliboot/src/main/java/org/onap/ccsdk/apps/ms/sliboot/App.java [new file with mode: 0644]
ms/sliboot/src/main/java/org/onap/ccsdk/apps/ms/sliboot/WebConfig.java [new file with mode: 0644]
ms/sliboot/src/main/java/org/onap/ccsdk/apps/ms/sliboot/controllers/ExecuteGraphController.java [new file with mode: 0644]
ms/sliboot/src/main/java/org/onap/ccsdk/apps/ms/sliboot/controllers/RestconfApiController.java [new file with mode: 0644]
ms/sliboot/src/main/java/org/onap/ccsdk/apps/ms/sliboot/core/SvcLogicFactory.java [new file with mode: 0644]
ms/sliboot/src/main/java/org/onap/ccsdk/apps/ms/sliboot/data/TestResultConfig.java [new file with mode: 0644]
ms/sliboot/src/main/java/org/onap/ccsdk/apps/ms/sliboot/data/TestResultOperational.java [new file with mode: 0644]
ms/sliboot/src/main/java/org/onap/ccsdk/apps/ms/sliboot/data/TestResultsConfigRepository.java [new file with mode: 0644]
ms/sliboot/src/main/java/org/onap/ccsdk/apps/ms/sliboot/data/TestResultsOperationalRepository.java [new file with mode: 0644]
ms/sliboot/src/main/resources/DEMO_DEMO.xml [new file with mode: 0755]
ms/sliboot/src/main/resources/application-https.properties [new file with mode: 0644]
ms/sliboot/src/main/resources/application.properties [new file with mode: 0644]
ms/sliboot/src/main/resources/graph.versions [new file with mode: 0644]
ms/sliboot/src/main/resources/log4j2.properties [new file with mode: 0644]
ms/sliboot/src/main/resources/org.onap.sdnc.cred.props [new file with mode: 0644]
ms/sliboot/src/main/resources/org.onap.sdnc.keyfile [new file with mode: 0644]
ms/sliboot/src/main/resources/org.onap.sdnc.p12 [new file with mode: 0644]
ms/sliboot/src/main/resources/org.onap.sdnc.props [new file with mode: 0644]
ms/sliboot/src/main/resources/org.onap.sdnc.trust.jks [new file with mode: 0644]
ms/sliboot/src/main/resources/schema-derby.sql [new file with mode: 0644]
ms/sliboot/src/main/resources/schema-mariadb.sql [new file with mode: 0644]
ms/sliboot/src/main/resources/schema-mysql.sql [new file with mode: 0644]
ms/sliboot/src/main/resources/shiro-users.properties [new file with mode: 0644]
ms/sliboot/src/main/resources/sli_healthcheck.xml [new file with mode: 0644]
ms/sliboot/src/main/resources/sli_vlbcheck.xml [new file with mode: 0644]
ms/sliboot/src/main/resources/startSliboot.sh [new file with mode: 0644]
ms/sliboot/src/main/resources/svclogic.properties [new file with mode: 0644]
ms/sliboot/src/main/resources/truststoreONAPall.jks [new file with mode: 0644]
ms/sliboot/src/test/java/org/onap/ccsdk/apps/ms/sliboot/AppTest.java [new file with mode: 0644]
ms/sliboot/src/test/java/org/onap/ccsdk/apps/ms/sliboot/RestconfApiControllerTest.java [new file with mode: 0644]
ms/sliboot/src/test/resources/DEMO_DEMO.xml [new file with mode: 0755]
ms/sliboot/src/test/resources/application.properties [new file with mode: 0644]
ms/sliboot/src/test/resources/graph.versions [new file with mode: 0644]
ms/sliboot/src/test/resources/log4j2.properties [new file with mode: 0644]
ms/sliboot/src/test/resources/shiro-users.properties [new file with mode: 0644]
ms/sliboot/src/test/resources/sli_healthcheck.xml [new file with mode: 0644]
ms/sliboot/src/test/resources/sli_vlbcheck.xml [new file with mode: 0644]
ms/sliboot/src/test/resources/svclogic.properties [new file with mode: 0644]