Add mod/runtimeapi 76/98676/5
authorMichael Hwang <mhwang@research.att.com>
Wed, 20 Nov 2019 17:32:48 +0000 (12:32 -0500)
committerMichael Hwang <mhwang@research.att.com>
Wed, 11 Dec 2019 19:28:38 +0000 (14:28 -0500)
commitcc9d389bf197c1a365e669b407ea781f2bc87fd4
tree9c4c8fdc265a4119d42dc8851aeead16a7767ce3
parent849da15d5b7ddc68e4c2b90b603fc8948d4b5e6d
Add mod/runtimeapi

Change-Id: I6c0a45ddf460a63a1e4b9284e19bf4ab111bd463
Issue-ID: DCAEGEN2-1860
Signed-off-by: Michael Hwang <mhwang@research.att.com>
61 files changed:
mod/runtimeapi/README.md [new file with mode: 0644]
mod/runtimeapi/pom.xml [new file with mode: 0644]
mod/runtimeapi/runtime-core/pom.xml [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/BlueprintData.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/Edge.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/EdgeLocation.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/EdgeMetadata.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/FlowGraph.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/FlowGraphParser.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/Node.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/blueprint_creator/BlueprintCreator.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/blueprint_creator/BlueprintCreatorOnapDublin.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/data/blueprints/dcae-controller-toolbox-gui-eom-k8s.yaml [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/data/blueprints/helloworld_no_edits.yaml [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/data/blueprints/helloworld_onap_dublin.yaml [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/data/blueprints/helloworld_test_1.yaml [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/data/blueprints/helloworld_test_2.yaml [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/data/compspecs/componentSpec_New_Toolbox.json [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/data/compspecs/componentSpec_hello_world.json [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/data/compspecs/componentSpec_hello_world_only_MR.json [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/java/org/onap/dcae/runtime/core/Helper.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/java/org/onap/dcae/runtime/core/TestFlowGraph.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/java/org/onap/dcae/runtime/core/TestFlowGraphParser.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/java/org/onap/dcae/runtime/core/TestIntegeration.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/java/org/onap/dcae/runtime/core/TestOnapBpGen.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/java/org/onap/dcae/runtime/core/TestStringReplace.java [new file with mode: 0644]
mod/runtimeapi/runtime-core/src/test/java/org/onap/dcae/runtime/core/TestYamlStringToObject.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/Dockerfile [new file with mode: 0644]
mod/runtimeapi/runtime-web/data/imports/onapDublinImports.yaml [new file with mode: 0644]
mod/runtimeapi/runtime-web/pom.xml [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/RuntimeapiApplication.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/configuration/BlueprintCreatorConfig.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/configuration/PropertyConfig.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/configuration/SwaggerConfig.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/controllers/GraphController.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/exception/ActionsNotDefinedException.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/exception/AppExceptionsHandler.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/exception/MainGraphAlreadyExistException.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/exception/MainGraphNotFoundException.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/models/Action.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/models/DashboardConfig.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/models/DistributeGraphRequest.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/models/GraphRequest.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/service/BlueprintInventory.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/service/GraphService.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/service/GraphServiceImpl.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/java/org/onap/dcae/runtime/web/service/SSLUtils.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/resources/application.properties [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/main/resources/imports/OnapDublinImports.yaml [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/test/data/blueprints_samples/dcae-collectors-vcc-helloworld-pm-eom-k8s.yaml [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/test/data/blueprints_samples/dcae-controller-toolbox-gui-eom-k8s.yaml [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/test/data/blueprints_samples/helloworld_test_1.yaml [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/test/data/blueprints_samples/helloworld_test_2.yaml [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/test/data/compspecs/componentSpec_New_Toolbox.json [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/test/data/compspecs/componentSpec_hello_world.json [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/test/java/org/onap/dcae/runtime/web/Helper.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/test/java/org/onap/dcae/runtime/web/TestIntegration.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/test/java/org/onap/dcae/runtime/web/TestUtils.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/test/java/org/onap/dcae/runtime/web/controllers/TestDistributeEndpoint.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/test/java/org/onap/dcae/runtime/web/controllers/TestFlowGraphController.java [new file with mode: 0644]
mod/runtimeapi/runtime-web/src/test/java/org/onap/dcae/runtime/web/service/GraphServiceImplTest.java [new file with mode: 0644]