Controller Blueprints Microservice
authorMuthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>
Tue, 4 Sep 2018 20:24:35 +0000 (20:24 +0000)
committerMuthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>
Tue, 4 Sep 2018 20:47:03 +0000 (20:47 +0000)
commit052b7bd78ad4808f6eac31553c12cee7569eaefb
treead1d13b3bc746ca6f1c55adc7a4aba644b51aafc
Controller Blueprints Microservice

Refactor controller blueprint core and resource dictionary modules to components module.

Change-Id: If5ba5e35e9c95bc19bc78fb10bd62d6551ba7aca
Issue-ID: CCSDK-514
Signed-off-by: Muthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>
119 files changed:
components/core/load/blueprints/baseconfiguration/Definitions/activation-blueprint.json [new file with mode: 0644]
components/core/load/blueprints/baseconfiguration/Mappings/baseconfig-mapping.json [new file with mode: 0644]
components/core/load/blueprints/baseconfiguration/Plans/ActivateProcess.bpmn [new file with mode: 0644]
components/core/load/blueprints/baseconfiguration/Scripts/SamplePythonComponentNode.py [new file with mode: 0644]
components/core/load/blueprints/baseconfiguration/Scripts/__init__.py [new file with mode: 0644]
components/core/load/blueprints/baseconfiguration/TOSCA-Metadata/TOSCA.meta [new file with mode: 0644]
components/core/load/blueprints/baseconfiguration/Templates/baseconfig-template.vtl [new file with mode: 0644]
components/core/load/blueprints/baseconfiguration/__init__.py [new file with mode: 0644]
components/core/load/blueprints/simple-baseconfig/Definitions/sample-nodetype.json [new file with mode: 0644]
components/core/load/blueprints/simple-baseconfig/Definitions/simple-baseconfig.json [new file with mode: 0644]
components/core/load/blueprints/simple-baseconfig/Mappings/baseconfig-mapping.json [new file with mode: 0644]
components/core/load/blueprints/simple-baseconfig/Plans/ActivateProcess.bpmn [new file with mode: 0644]
components/core/load/blueprints/simple-baseconfig/Scripts/SamplePythonComponentNode.py [new file with mode: 0644]
components/core/load/blueprints/simple-baseconfig/Scripts/__init__.py [new file with mode: 0644]
components/core/load/blueprints/simple-baseconfig/TOSCA-Metadata/TOSCA.meta [new file with mode: 0644]
components/core/load/blueprints/simple-baseconfig/Templates/base-config-template.vtl [new file with mode: 0644]
components/core/load/blueprints/simple-baseconfig/Templates/baseconfig-template.vtl [new file with mode: 0644]
components/core/load/blueprints/simple-baseconfig/Templates/licence-template.vtl [new file with mode: 0644]
components/core/load/blueprints/simple-baseconfig/__init__.py [new file with mode: 0644]
components/core/load/model_type/artifact_type/artifact-bpmn-camunda.json [new file with mode: 0644]
components/core/load/model_type/artifact_type/artifact-directed-graph.json [new file with mode: 0644]
components/core/load/model_type/artifact_type/artifact-mapping-resource.json [new file with mode: 0644]
components/core/load/model_type/artifact_type/artifact-script-python.json [new file with mode: 0644]
components/core/load/model_type/artifact_type/artifact-template-velocity.json [new file with mode: 0644]
components/core/load/model_type/artifact_type/tosca.artifacts.Implementation.json [new file with mode: 0644]
components/core/load/model_type/data_type/datatype-property.json [new file with mode: 0644]
components/core/load/model_type/data_type/datatype-resource-assignment.json [new file with mode: 0644]
components/core/load/model_type/data_type/dt-license-key.json [new file with mode: 0644]
components/core/load/model_type/data_type/dt-v4-aggregate.json [new file with mode: 0644]
components/core/load/model_type/data_type/tosca.datatypes.Credential.json [new file with mode: 0644]
components/core/load/model_type/node_type/artifact-config-template.json [new file with mode: 0644]
components/core/load/model_type/node_type/component-config-generator.json [new file with mode: 0644]
components/core/load/model_type/node_type/component-netconf-executor.json [new file with mode: 0644]
components/core/load/model_type/node_type/component-resource-assignment.json [new file with mode: 0644]
components/core/load/model_type/node_type/dg-activate-netconf.json [new file with mode: 0644]
components/core/load/model_type/node_type/dg-config-generator.json [new file with mode: 0644]
components/core/load/model_type/node_type/dg-resource-assign-activate.json [new file with mode: 0644]
components/core/load/model_type/node_type/dg-resource-assignment.json [new file with mode: 0644]
components/core/load/model_type/node_type/vnf-netconf-device.json [new file with mode: 0644]
components/core/pom.xml [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/BluePrintConstants.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/BluePrintException.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/BluePrintProcessorException.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/BluePrintTypes.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/ConfigModelConstant.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/CustomFunctions.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/data/BluePrintExpressionData.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/data/BluePrintModel.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/factory/BluePrintEnhancerFactory.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/factory/BluePrintParserFactory.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/factory/BluePrintValidatorFactory.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintChainedService.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintContext.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintEnhancerService.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintExpressionService.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintParserService.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintRepoService.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintRuntimeService.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintValidatorService.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/PropertyAssignmentService.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/BluePrintMetadataUtils.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/BluePrintRuntimeUtils.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/JacksonReactorUtils.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/JacksonUtils.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/ResourceResolverUtils.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/ServiceTemplateUtils.kt [new file with mode: 0644]
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/TopologicalSortingUtils.kt [new file with mode: 0644]
components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/CustomFunctionsTest.kt [new file with mode: 0644]
components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintContextTest.kt [new file with mode: 0644]
components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintEnhancerServiceTest.kt [new file with mode: 0644]
components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintExpressionServiceTest.kt [new file with mode: 0644]
components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintParserFactoryTest.kt [new file with mode: 0644]
components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintRepoFileServiceTest.kt [new file with mode: 0644]
components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintRuntimeServiceTest.kt [new file with mode: 0644]
components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/service/BluePrintValidatorDefaultServiceTest.kt [new file with mode: 0644]
components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/BluePrintMetadataUtilsTest.kt [new file with mode: 0644]
components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/JacksonReactorUtilsTest.kt [new file with mode: 0644]
components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/JacksonUtilsTest.kt [new file with mode: 0644]
components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/TopologicalSortingUtilsTest.kt [new file with mode: 0644]
components/core/src/test/resources/componentnode/default.json [new file with mode: 0644]
components/core/src/test/resources/data/alltype-data.json [new file with mode: 0644]
components/core/src/test/resources/data/default-context.json [new file with mode: 0644]
components/core/src/test/resources/dictionary/dictionary_schema.json [new file with mode: 0644]
components/core/src/test/resources/properties/convert.json [new file with mode: 0644]
components/core/src/test/resources/properties/default.json [new file with mode: 0644]
components/parent/pom.xml [new file with mode: 0644]
components/pom.xml [new file with mode: 0644]
components/resource-dict/load/model_type/node_type/source-component-java.json [new file with mode: 0644]
components/resource-dict/load/model_type/node_type/source-db.json [new file with mode: 0644]
components/resource-dict/load/model_type/node_type/source-default.json [new file with mode: 0644]
components/resource-dict/load/model_type/node_type/source-input.json [new file with mode: 0644]
components/resource-dict/load/model_type/node_type/source-rest.json [new file with mode: 0644]
components/resource-dict/load/model_type/node_type/tosca.nodes.ResourceSource.json [new file with mode: 0644]
components/resource-dict/load/resource_dictionary/db-source.json [new file with mode: 0644]
components/resource-dict/load/resource_dictionary/default-source.json [new file with mode: 0644]
components/resource-dict/load/resource_dictionary/input-source.json [new file with mode: 0644]
components/resource-dict/load/resource_dictionary/mdsal-source.json [new file with mode: 0644]
components/resource-dict/pom.xml [new file with mode: 0644]
components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/ResourceAssignmentProcessor.kt [new file with mode: 0644]
components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/ResourceDefinition.kt [new file with mode: 0644]
components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/ResourceDictionaryConstants.kt [new file with mode: 0644]
components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceAssignmentEnhancerService.kt [new file with mode: 0644]
components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceAssignmentValidationService.kt [new file with mode: 0644]
components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceDefinitionRepoService.kt [new file with mode: 0644]
components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceDefinitionValidationService.kt [new file with mode: 0644]
components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/utils/BulkResourceSequencingUtils.kt [new file with mode: 0644]
components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/utils/ResourceDictionaryUtils.kt [new file with mode: 0644]
components/resource-dict/src/test/java/org/onap/ccsdk/apps/controllerblueprints/resource/dict/ResourceDefinitionTest.java [new file with mode: 0644]
components/resource-dict/src/test/java/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceAssignmentEnhancerServiceTest.java [new file with mode: 0644]
components/resource-dict/src/test/java/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceAssignmentValidationServiceTest.kt [new file with mode: 0644]
components/resource-dict/src/test/java/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceDefinitionRepoServiceTest.java [new file with mode: 0644]
components/resource-dict/src/test/java/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceDefinitionValidationServiceTest.java [new file with mode: 0644]
components/resource-dict/src/test/java/org/onap/ccsdk/apps/controllerblueprints/resource/dict/utils/BulkResourceSequencingUtilsTest.java [new file with mode: 0644]
components/resource-dict/src/test/java/org/onap/ccsdk/apps/controllerblueprints/resource/dict/utils/ResourceDictionaryUtilsTest.java [new file with mode: 0644]
components/resource-dict/src/test/resources/data/resource-assignment-input.json [new file with mode: 0644]
components/resource-dict/src/test/resources/enrich/simple-enrich.json [new file with mode: 0644]
components/resource-dict/src/test/resources/validation/cyclic.json [new file with mode: 0644]
components/resource-dict/src/test/resources/validation/duplicate.json [new file with mode: 0644]
components/resource-dict/src/test/resources/validation/success.json [new file with mode: 0644]