Blueprints Processor Service
authorMuthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>
Wed, 15 Aug 2018 21:31:10 +0000 (21:31 +0000)
committerMuthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>
Thu, 16 Aug 2018 14:47:23 +0000 (14:47 +0000)
commit4b3c8a0bb11d71c1be8ac5a966818dafec1124fe
tree98c4fd7230c3007fface1e0f62afa6c22962fa02
parent4a280c3155a47d7b053d4270f4dfa3648558ef64
Blueprints Processor Service

Blueprints Processor API definitions

Change-Id: Id44c74938f75e847a43b8e6d0733c36d4dc99e97
Issue-ID: CCSDK-411
Signed-off-by: Muthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>
42 files changed:
ms/blueprintsprocessor/.gitignore [new file with mode: 0644]
ms/blueprintsprocessor/application/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/apps/blueprintsprocessor/BlueprintProcessorApplication.java [new file with mode: 0644]
ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/apps/blueprintsprocessor/SwaggerConfig.java [new file with mode: 0644]
ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/apps/blueprintsprocessor/WebConfig.java [new file with mode: 0644]
ms/blueprintsprocessor/application/src/main/resources/application.properties [new file with mode: 0644]
ms/blueprintsprocessor/application/src/main/resources/logback.xml [new file with mode: 0644]
ms/blueprintsprocessor/application/src/test/java/org/onap/ccsdk/apps/blueprintsprocessor/BlueprintProcessorApplicationTest.java [new file with mode: 0644]
ms/blueprintsprocessor/modules/commons/adaptors/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/commons/core/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/commons/core/src/main/kotlin/org/onap/ccsdk/apps/blueprintsprocessor/core/api/data/BlueprintProcessorData.kt [new file with mode: 0644]
ms/blueprintsprocessor/modules/commons/core/src/main/kotlin/org/onap/ccsdk/apps/blueprintsprocessor/core/api/data/BlueprintProcessorException.kt [new file with mode: 0644]
ms/blueprintsprocessor/modules/commons/core/src/main/resources/application.properties [new file with mode: 0644]
ms/blueprintsprocessor/modules/commons/db-lib/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/commons/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/commons/rest-lib/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/inbounds/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/inbounds/resource-api/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/inbounds/resource-api/src/main/java/org/onap/ccsdk/apps/blueprintsprocessor/resource/api/ResourceResolutionController.java [new file with mode: 0644]
ms/blueprintsprocessor/modules/inbounds/selfservice-api/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/inbounds/selfservice-api/src/main/java/org/onap/ccsdk/apps/blueprintsprocessor/selfservice/api/ExecutionServiceController.java [new file with mode: 0644]
ms/blueprintsprocessor/modules/outbounds/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/db-service/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/execution-service/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/execution-service/src/main/kotlin/org/onap/ccsdk/apps/blueprintsprocessor/services/execution/ExecutionService.kt [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/execution-service/src/test/java/org/onap/ccsdk/apps/blueprintsprocessor/services/execution/ExecutionServiceTest.java [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/execution-service/src/test/resources/payload/inputs/input.json [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/execution-service/src/test/resources/payload/requests/sample-execution-request.json [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/resolution-service/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/resolution-service/src/main/kotlin/org/onap/ccsdk/apps/blueprintsprocessor/services/resolution/ResourceResolutionService.kt [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/resolution-service/src/test/java/org/onap/ccsdk/apps/blueprintsprocessor/services/resolution/ResourceResolutionServiceTest.java [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/resolution-service/src/test/resources/mapping/db/db-array.json [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/resolution-service/src/test/resources/mapping/db/db-complex.json [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/resolution-service/src/test/resources/mapping/db/db-simple.json [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/resolution-service/src/test/resources/mapping/db/dt-location.json [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/resolution-service/src/test/resources/mapping/db/resource-assignments-simple.json [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/resolution-service/src/test/resources/payload/inputs/input.json [new file with mode: 0644]
ms/blueprintsprocessor/modules/services/resolution-service/src/test/resources/payload/requests/sample-resourceresolution-request.json [new file with mode: 0644]
ms/blueprintsprocessor/parent/pom.xml [new file with mode: 0644]
ms/blueprintsprocessor/pom.xml [new file with mode: 0644]