Merge "Vault Client Rest API implementation for sensitive data"
diff --git a/.gitignore b/.gitignore
index a0db985..a60e7b9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,6 +4,7 @@
 # Python
 **/*.pyc
 
+**/.apt_generated
 # Logs
 logs
 *.log
@@ -98,6 +99,7 @@
 **/target/*
 **/logs/*
 **/tokens/*
+**/lib/cachedir/**
 
 # Added for Intellij IDEA IDE
 **/*.ipr
@@ -108,12 +110,13 @@
 **/*.project
 **/.springBeans
 **/.factorypath
+**/.directory
 
+**/transaction.log
 **/*versionsBackup
 **/blackDuckHub*
 **/*.jsonld
 **/.checkstyle
-**/.gitignore
 
 **/*.log
 **/*py.class
@@ -151,3 +154,4 @@
 **/*cba-kts.jar
 **/application/blueprints
 /target/
+
diff --git a/cds-ui/client/src/app/common/utility/zipfile-extraction.component.ts b/cds-ui/client/src/app/common/utility/zipfile-extraction.component.ts
index fcadee8..279405a 100644
--- a/cds-ui/client/src/app/common/utility/zipfile-extraction.component.ts
+++ b/cds-ui/client/src/app/common/utility/zipfile-extraction.component.ts
@@ -39,11 +39,21 @@
   private entryDefinition: string;
   validfile: boolean = false;
   uploadedFileName: string;
-
+  filesData: any = [];
+  
   constructor(private loader: LoaderService) { }
 
   ngOnInit() {
   }
+
+  create() {
+    this.filesData.forEach((path) => {
+      let index = path.name.indexOf("/");
+      let name = path.name.slice(index + 1, path.name.length);
+      this.zipFile.file(name, path.data);
+    });
+  }
+
   async buildFileViewData(zip) {
     this.validfile = false;
     this.paths = [];
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts
index 08f1ca1..9367c06 100644
--- a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts
+++ b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts
@@ -244,9 +244,39 @@
     })
     this.fileExtension = this.selectedFile.substr(this.selectedFile.lastIndexOf('.') + 1);
     this.setEditorMode();
-    if(this.options == '3')
-    {
-      this.editorReadOnly= true;
+    if (this.options == '3') {
+      this.editorReadOnly = true;
+    }
+  }
+
+  setEditorMode() {
+    switch (this.fileExtension) {
+      case "xml":
+        this.mode = 'xml';
+        break;
+      case "py":
+        this.mode = 'python';
+        break;
+      case "kts":
+        this.mode = 'kotlin';
+        break;
+      case "kt":
+        this.mode = 'kotlin';
+        break;
+      case "txt":
+        this.mode = 'text';
+        break;
+      case "meta":
+        this.mode = 'text';
+        break;
+      case "vtl":
+        this.mode = 'velocity';
+        break;
+      case "properties":
+        this.mode = 'properties';
+        break;
+      default:
+        this.mode = 'json';
     }
   }
 
@@ -256,7 +286,6 @@
       .then(blob => {
         const formData = new FormData();
         formData.append("file", blob);
-        // this.editorService.enrich("/enrich-blueprint/", formData)
         this.editorService.enrich(formData)
           .subscribe(
             (response) => {
@@ -276,8 +305,6 @@
       });
   }
 
-
-
   saveToBackend() {
     this.create();
     this.zipFile.generateAsync({ type: "blob" })
@@ -346,30 +373,7 @@
     this.editorService.downloadCBA("/" + this.artifactName + "/" + this.artifactVersion);
   }
 
-  setEditorMode() {
-    switch (this.fileExtension) {
-      case "xml":
-        this.mode = 'xml';
-        break;
-      case "py":
-        this.mode = 'python';
-        break;
-      case "kts":
-        this.mode = 'kotlin';
-        break;
-      case "txt":
-        this.mode = 'text';
-        break;
-      case "meta":
-        this.mode = 'text';
-        break;
-      case "vtl":
-        this.mode = 'velocity';
-        break;
-      default:
-        this.mode = 'json';
-    }
-  }
+  
 
   selectFolder(node) {
     this.currentFilePath = '';
diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.html b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.html
index b33978d..e42ab51 100644
--- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.html
+++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.html
@@ -1,26 +1,26 @@
-<!--

-* ============LICENSE_START=======================================================

-* ONAP : CDS

-* ================================================================================

-* Copyright 2019 TechMahindra

-*

-* Modifications Copyright (C) 2019 IBM

-*=================================================================================

-* Licensed under the Apache License, Version 2.0 (the "License");

-* you may not use this file except in compliance with the License.

-* You may obtain a copy of the License at

-*

-*     http://www.apache.org/licenses/LICENSE-2.0

-*

-* Unless required by applicable law or agreed to in writing, software

-* distributed under the License is distributed on an "AS IS" BASIS,

-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-* See the License for the specific language governing permissions and

-* limitations under the License.

-* ============LICENSE_END=========================================================

--->

-<mat-radio-group>

-  <mat-radio-button value="1" (click)="selected(1)">Upload Resource File</mat-radio-button><br><br>

-  <mat-radio-button value="2" (click)="selected(2)">New Resource</mat-radio-button><br><br>

-  <mat-radio-button value="3" (click)="selected(3)">Existing Model Resource</mat-radio-button>

-</mat-radio-group>

+<!--
+* ============LICENSE_START=======================================================
+* ONAP : CDS
+* ================================================================================
+* Copyright 2019 TechMahindra
+*
+* Modifications Copyright (C) 2019 IBM
+*=================================================================================
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+* ============LICENSE_END=========================================================
+-->
+<mat-radio-group>
+  <mat-radio-button value="1" (click)="selected(1)">Upload Resource File</mat-radio-button><br><br>
+  <mat-radio-button value="2" (click)="selected(2)">New Resource</mat-radio-button><br><br>
+  <mat-radio-button value="3" (click)="selected(3)">Existing Model Resource</mat-radio-button>
+</mat-radio-group>
diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.scss b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.scss
index 946165a..cd9725f 100644
--- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.scss
+++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.scss
@@ -1,21 +1,21 @@
-/*

-* ============LICENSE_START=======================================================

-* ONAP : CDS

-* ================================================================================

-* Copyright 2019 TechMahindra

-*

-* Modifications Copyright (C) 2019 IBM

-*=================================================================================

-* Licensed under the Apache License, Version 2.0 (the "License");

-* you may not use this file except in compliance with the License.

-* You may obtain a copy of the License at

-*

-*     http://www.apache.org/licenses/LICENSE-2.0

-*

-* Unless required by applicable law or agreed to in writing, software

-* distributed under the License is distributed on an "AS IS" BASIS,

-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-* See the License for the specific language governing permissions and

-* limitations under the License.

-* ============LICENSE_END=========================================================

+/*
+* ============LICENSE_START=======================================================
+* ONAP : CDS
+* ================================================================================
+* Copyright 2019 TechMahindra
+*
+* Modifications Copyright (C) 2019 IBM
+*=================================================================================
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+* ============LICENSE_END=========================================================
 */
\ No newline at end of file
diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.spec.ts b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.spec.ts
index 8a7a10b..8008990 100644
--- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.spec.ts
+++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.spec.ts
@@ -1,47 +1,47 @@
-/*

-* ============LICENSE_START=======================================================

-* ONAP : CDS

-* ================================================================================

-* Copyright 2019 TechMahindra

-*

-* Modifications Copyright (C) 2019 IBM

-*=================================================================================

-* Licensed under the Apache License, Version 2.0 (the "License");

-* you may not use this file except in compliance with the License.

-* You may obtain a copy of the License at

-*

-*     http://www.apache.org/licenses/LICENSE-2.0

-*

-* Unless required by applicable law or agreed to in writing, software

-* distributed under the License is distributed on an "AS IS" BASIS,

-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-* See the License for the specific language governing permissions and

-* limitations under the License.

-* ============LICENSE_END=========================================================

-*/

-

-import { async, ComponentFixture, TestBed } from '@angular/core/testing';

-

-import { ResourceTemplateOptionsComponent } from './resource-template-options.component';

-

-describe('ResourceTemplateOptionsComponent', () => {

-  let component: ResourceTemplateOptionsComponent;

-  let fixture: ComponentFixture<TemplateOptionsComponent>;

-

-  beforeEach(async(() => {

-    TestBed.configureTestingModule({

-      declarations: [ ResourceTemplateOptionsComponent ]

-    })

-    .compileComponents();

-  }));

-

-  beforeEach(() => {

-    fixture = TestBed.createComponent(ResourceTemplateOptionsComponent);

-    component = fixture.componentInstance;

-    fixture.detectChanges();

-  });

-

-  it('should create', () => {

-    expect(component).toBeTruthy();

-  });

-});

+/*
+* ============LICENSE_START=======================================================
+* ONAP : CDS
+* ================================================================================
+* Copyright 2019 TechMahindra
+*
+* Modifications Copyright (C) 2019 IBM
+*=================================================================================
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+* ============LICENSE_END=========================================================
+*/
+
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { ResourceTemplateOptionsComponent } from './resource-template-options.component';
+
+describe('ResourceTemplateOptionsComponent', () => {
+  let component: ResourceTemplateOptionsComponent;
+  let fixture: ComponentFixture<TemplateOptionsComponent>;
+
+  beforeEach(async(() => {
+    TestBed.configureTestingModule({
+      declarations: [ ResourceTemplateOptionsComponent ]
+    })
+    .compileComponents();
+  }));
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(ResourceTemplateOptionsComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.ts b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.ts
index ec77675..bb470bd 100644
--- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.ts
+++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-template-options/resource-template-options.component.ts
@@ -1,46 +1,46 @@
-/*

-* ============LICENSE_START=======================================================

-* ONAP : CDS

-* ================================================================================

-* Copyright 2019 TechMahindra

-*

-* Modifications Copyright (C) 2019 IBM

-*=================================================================================

-* Licensed under the Apache License, Version 2.0 (the "License");

-* you may not use this file except in compliance with the License.

-* You may obtain a copy of the License at

-*

-*     http://www.apache.org/licenses/LICENSE-2.0

-*

-* Unless required by applicable law or agreed to in writing, software

-* distributed under the License is distributed on an "AS IS" BASIS,

-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-* See the License for the specific language governing permissions and

-* limitations under the License.

-* ============LICENSE_END=========================================================

-*/

-

-import { Component, OnInit, Output, EventEmitter} from '@angular/core';

-import { HttpClient } from '@angular/common/http';

-@Component({

-  selector: 'app-resource-template-options',

-  templateUrl: './resource-template-options.component.html',

-  styleUrls: ['./resource-template-options.component.scss']

-})

-export class ResourceTemplateOptionsComponent implements OnInit {

-  selectedOption: string;

-  @Output() option = new EventEmitter();

-

-  constructor() { }

-

-  ngOnInit() {

-  }

-

-  selected(value){

-    console.log(value);

-    this.option.emit(value);

-  }

-  // loadTemplateData() {

-  //  // to do

-  // }

-}

+/*
+* ============LICENSE_START=======================================================
+* ONAP : CDS
+* ================================================================================
+* Copyright 2019 TechMahindra
+*
+* Modifications Copyright (C) 2019 IBM
+*=================================================================================
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+* ============LICENSE_END=========================================================
+*/
+
+import { Component, OnInit, Output, EventEmitter} from '@angular/core';
+import { HttpClient } from '@angular/common/http';
+@Component({
+  selector: 'app-resource-template-options',
+  templateUrl: './resource-template-options.component.html',
+  styleUrls: ['./resource-template-options.component.scss']
+})
+export class ResourceTemplateOptionsComponent implements OnInit {
+  selectedOption: string;
+  @Output() option = new EventEmitter();
+
+  constructor() { }
+
+  ngOnInit() {
+  }
+
+  selected(value){
+    console.log(value);
+    this.option.emit(value);
+  }
+  // loadTemplateData() {
+  //  // to do
+  // }
+}
diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-metadata/resource-metadata.component.scss b/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-metadata/resource-metadata.component.scss
index 833376c..33c72f1 100644
--- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-metadata/resource-metadata.component.scss
+++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-metadata/resource-metadata.component.scss
@@ -1,42 +1,42 @@
-/*

-* ============LICENSE_START=======================================================

-* ONAP : CDS

-* ================================================================================

-* Copyright 2019 TechMahindra

-*

-* Modifications Copyright (C) 2019 IBM

-*=================================================================================

-* Licensed under the Apache License, Version 2.0 (the "License");

-* you may not use this file except in compliance with the License.

-* You may obtain a copy of the License at

-*

-*     http://www.apache.org/licenses/LICENSE-2.0

-*

-* Unless required by applicable law or agreed to in writing, software

-* distributed under the License is distributed on an "AS IS" BASIS,

-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-* See the License for the specific language governing permissions and

-* limitations under the License.

-* ============LICENSE_END=========================================================

-*/

-

-

-.matStepNextBtn{

-    color:white;

-    background:#3f51b5; 

-    margin-top: 10px; 

-    position: absolute;

-    border-radius: 1em;

-}

-.meta-form {

-  width: 100%;

-}

-

-.form-field {

-  width: 40%;

-  padding:10px;

-}

-

-.form-table {

-  width: 100%;

+/*
+* ============LICENSE_START=======================================================
+* ONAP : CDS
+* ================================================================================
+* Copyright 2019 TechMahindra
+*
+* Modifications Copyright (C) 2019 IBM
+*=================================================================================
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+* ============LICENSE_END=========================================================
+*/
+
+
+.matStepNextBtn{
+    color:white;
+    background:#3f51b5; 
+    margin-top: 10px; 
+    position: absolute;
+    border-radius: 1em;
+}
+.meta-form {
+  width: 100%;
+}
+
+.form-field {
+  width: 40%;
+  padding:10px;
+}
+
+.form-table {
+  width: 100%;
 }
\ No newline at end of file
diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/sources-template/sources-template.component.scss b/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/sources-template/sources-template.component.scss
index d4cb7dd..4664ad7 100644
--- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/sources-template/sources-template.component.scss
+++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/sources-template/sources-template.component.scss
@@ -1,125 +1,125 @@
- /*

-* ============LICENSE_START=======================================================

-* ONAP : CDS

-* ================================================================================

-* Copyright 2019 TechMahindra

-*

-* Modifications Copyright (C) 2019 IBM

-*=================================================================================

-* Licensed under the Apache License, Version 2.0 (the "License");

-* you may not use this file except in compliance with the License.

-* You may obtain a copy of the License at

-*

-*     http://www.apache.org/licenses/LICENSE-2.0

-*

-* Unless required by applicable law or agreed to in writing, software

-* distributed under the License is distributed on an "AS IS" BASIS,

-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-* See the License for the specific language governing permissions and

-* limitations under the License.

-* ============LICENSE_END=========================================================

-*/

-.sources-container {

-  width: 900px;

-  max-width: 100%;

-  margin: 0 25px 25px 0;

-  display: inline-block;

-  vertical-align: top;

- border-bottom: solid 1px #ccc; 

- border-radius: 4px;

-}

-.list-container {

-  min-width: 200px;

-  max-width: 100%;

-  margin: 0 25px 25px 0;

-  display: inline-block;

-  vertical-align: top;

-}

-.sources-list {

-  border: solid 1px #ccc;

-  width: 900px;

-  min-height: 30px;

-  background: white;

-  border-radius: 4px;

-  overflow: hidden;

-  display: block;

-  border-bottom: solid 1px #ccc;

-}

-.options-list {  

-  min-height: 30px;

-  border-radius: 4px;

-  overflow: hidden;

-  display: block;

-  width: 100%; 

-}

-.sources-box {

-  //border-bottom: solid 1px #ccc;

-  color: rgba(0, 0, 0, 0.87);

-  display: flex;

-  flex-direction: row;

-  align-items: center;

-  justify-content: space-between;

-  box-sizing: border-box;

-  cursor: move;

-  background:white;

-  font-size: 14px;

-  min-height: 30px;

-  

-}

-.options-box {

-  border: solid 1px #ccc;

-  color: white;

-  display: flex;

-  flex-direction: row;

-  align-items: center;

-  justify-content: space-between;

-  box-sizing: border-box;

-  cursor: move;

-  background:gray;

-  font-size: 14px;

-  min-height: 30px;

-  width: 100px;

- padding-left: 15px;

-}

-

-.cdk-drag-preview {

-  box-sizing: border-box;

-  border-radius: 4px;

-  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),

-              0 8px 10px 1px rgba(0, 0, 0, 0.14),

-              0 3px 14px 2px rgba(0, 0, 0, 0.12);

-}

-

-.cdk-drag-placeholder {

-  opacity: 0;

-}

-

-.cdk-drag-animating {

-  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);

-}

-

-.sources-box:last-child {

-  border: none;

-}

-

-.options-list.cdk-drop-list-dragging .options-box:not(.cdk-drag-placeholder) {

-  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);

-}

-.expansion-panel{

-  border: solid 0.5px #ededed;

-  background: white;

-  border-radius: 4px;

-  overflow: hidden;

-  display: block;

-  width: 100%;

- }

- .matStepNextBtn{

-    color:white;

-    background:#3f51b5; 

-    margin-top: 10px; 

-    position: absolute;

-    border-radius: 1em;

-} 

-.icon{

-color: red;

+ /*
+* ============LICENSE_START=======================================================
+* ONAP : CDS
+* ================================================================================
+* Copyright 2019 TechMahindra
+*
+* Modifications Copyright (C) 2019 IBM
+*=================================================================================
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+* ============LICENSE_END=========================================================
+*/
+.sources-container {
+  width: 900px;
+  max-width: 100%;
+  margin: 0 25px 25px 0;
+  display: inline-block;
+  vertical-align: top;
+ border-bottom: solid 1px #ccc; 
+ border-radius: 4px;
+}
+.list-container {
+  min-width: 200px;
+  max-width: 100%;
+  margin: 0 25px 25px 0;
+  display: inline-block;
+  vertical-align: top;
+}
+.sources-list {
+  border: solid 1px #ccc;
+  width: 900px;
+  min-height: 30px;
+  background: white;
+  border-radius: 4px;
+  overflow: hidden;
+  display: block;
+  border-bottom: solid 1px #ccc;
+}
+.options-list {  
+  min-height: 30px;
+  border-radius: 4px;
+  overflow: hidden;
+  display: block;
+  width: 100%; 
+}
+.sources-box {
+  //border-bottom: solid 1px #ccc;
+  color: rgba(0, 0, 0, 0.87);
+  display: flex;
+  flex-direction: row;
+  align-items: center;
+  justify-content: space-between;
+  box-sizing: border-box;
+  cursor: move;
+  background:white;
+  font-size: 14px;
+  min-height: 30px;
+  
+}
+.options-box {
+  border: solid 1px #ccc;
+  color: white;
+  display: flex;
+  flex-direction: row;
+  align-items: center;
+  justify-content: space-between;
+  box-sizing: border-box;
+  cursor: move;
+  background:gray;
+  font-size: 14px;
+  min-height: 30px;
+  width: 100px;
+ padding-left: 15px;
+}
+
+.cdk-drag-preview {
+  box-sizing: border-box;
+  border-radius: 4px;
+  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
+              0 8px 10px 1px rgba(0, 0, 0, 0.14),
+              0 3px 14px 2px rgba(0, 0, 0, 0.12);
+}
+
+.cdk-drag-placeholder {
+  opacity: 0;
+}
+
+.cdk-drag-animating {
+  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
+}
+
+.sources-box:last-child {
+  border: none;
+}
+
+.options-list.cdk-drop-list-dragging .options-box:not(.cdk-drag-placeholder) {
+  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
+}
+.expansion-panel{
+  border: solid 0.5px #ededed;
+  background: white;
+  border-radius: 4px;
+  overflow: hidden;
+  display: block;
+  width: 100%;
+ }
+ .matStepNextBtn{
+    color:white;
+    background:#3f51b5; 
+    margin-top: 10px; 
+    position: absolute;
+    border-radius: 1em;
+} 
+.icon{
+color: red;
 }
\ No newline at end of file
diff --git a/cds-ui/client/src/assets/sample-licenses.json b/cds-ui/client/src/assets/sample-licenses.json
index 86a8e5d..83efd0d 100644
--- a/cds-ui/client/src/assets/sample-licenses.json
+++ b/cds-ui/client/src/assets/sample-licenses.json
@@ -1,29 +1,29 @@
-{

-  "tags": "sample-licenses",

-  "name": "sample-licenses",

-  "property": {

-    "description" : " Sample Data for licences",

-    "required": true,

-    "type": "list",

-    "entry_schema": {

-      "type": "dt-license-key"

-    }

-  },

-  "updated-by": "brindasanth@onap.com",

-  "sources": {

-    "config-data": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/L3VNF-API:services/service-list/",

-        "path": "/licenses",

-        "input-key-mapping": {

-        },

-        "output-key-mapping": {

-          "licenses": "licenses"

-        },

-        "key-dependencies": []

-      }

-    }

-  }

-}

+{
+  "tags": "sample-licenses",
+  "name": "sample-licenses",
+  "property": {
+    "description" : " Sample Data for licences",
+    "required": true,
+    "type": "list",
+    "entry_schema": {
+      "type": "dt-license-key"
+    }
+  },
+  "updated-by": "brindasanth@onap.com",
+  "sources": {
+    "config-data": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/L3VNF-API:services/service-list/",
+        "path": "/licenses",
+        "input-key-mapping": {
+        },
+        "output-key-mapping": {
+          "licenses": "licenses"
+        },
+        "key-dependencies": []
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/blueprint-model/service-blueprint/vFW/Definitions/resources_definition_types.json b/components/model-catalog/blueprint-model/service-blueprint/vFW/Definitions/resources_definition_types.json
index 2406240..426b91d 100644
--- a/components/model-catalog/blueprint-model/service-blueprint/vFW/Definitions/resources_definition_types.json
+++ b/components/model-catalog/blueprint-model/service-blueprint/vFW/Definitions/resources_definition_types.json
@@ -474,7 +474,7 @@
       "any-db" : {
         "type" : "source-db",
         "properties" : {
-          "query" : "SELECT artifact_name FROM BLUEPRINT_RUNTIME where artifact_version=\"1.0.0\"",
+          "query" : "SELECT artifact_name FROM BLUEPRINT_MODEL where artifact_version=\"1.0.0\"",
           "input-key-mapping" : { },
           "output-key-mapping" : {
             "service-instance-id" : "artifact_name"
@@ -484,7 +484,7 @@
       "processor-db" : {
         "type" : "source-db",
         "properties" : {
-          "query" : "SELECT artifact_name FROM BLUEPRINT_RUNTIME where artifact_version=\"1.0.0\"",
+          "query" : "SELECT artifact_name FROM BLUEPRINT_MODEL where artifact_version=\"1.0.0\"",
           "input-key-mapping" : { },
           "output-key-mapping" : {
             "service-instance-id" : "artifact_name"
diff --git a/components/model-catalog/blueprint-model/service-blueprint/vLB/Definitions/resources_definition_types.json b/components/model-catalog/blueprint-model/service-blueprint/vLB/Definitions/resources_definition_types.json
index 09b99fb..ef1c5e2 100644
--- a/components/model-catalog/blueprint-model/service-blueprint/vLB/Definitions/resources_definition_types.json
+++ b/components/model-catalog/blueprint-model/service-blueprint/vLB/Definitions/resources_definition_types.json
@@ -1076,7 +1076,7 @@
       "any-db" : {
         "type" : "source-db",
         "properties" : {
-          "query" : "SELECT artifact_name FROM BLUEPRINT_RUNTIME where artifact_version=\"1.0.0\"",
+          "query" : "SELECT artifact_name FROM BLUEPRINT_MODEL where artifact_version=\"1.0.0\"",
           "input-key-mapping" : { },
           "output-key-mapping" : {
             "service-instance-id" : "artifact_name"
@@ -1086,7 +1086,7 @@
       "processor-db" : {
         "type" : "source-db",
         "properties" : {
-          "query" : "SELECT artifact_name FROM BLUEPRINT_RUNTIME where artifact_version=\"1.0.0\"",
+          "query" : "SELECT artifact_name FROM BLUEPRINT_MODEL where artifact_version=\"1.0.0\"",
           "input-key-mapping" : { },
           "output-key-mapping" : {
             "service-instance-id" : "artifact_name"
diff --git a/components/model-catalog/blueprint-model/service-blueprint/vLB/Plans/CONFIG_ConfigDeploy.xml b/components/model-catalog/blueprint-model/service-blueprint/vLB/Plans/CONFIG_ConfigDeploy.xml
index 92fb2aa..d198a72 100644
--- a/components/model-catalog/blueprint-model/service-blueprint/vLB/Plans/CONFIG_ConfigDeploy.xml
+++ b/components/model-catalog/blueprint-model/service-blueprint/vLB/Plans/CONFIG_ConfigDeploy.xml
@@ -1,27 +1,27 @@
-<service-logic

-  xmlns='http://www.onap.org/sdnc/svclogic'

-  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'

-  xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='CONFIG' version='1.0.0'>

-    <method rpc='ConfigDeploy' mode='sync'>

-        <block atomic="true">

-            <execute plugin="nf-account-collection" method="process">

-                <outcome value='failure'>

-                    <return status="failure">

-                    </return>

-                </outcome>

-                <outcome value='success'>

-                    <execute plugin="execute" method="process">

-                        <outcome value='failure'>

-                            <return status="failure">

-                            </return>

-                        </outcome>

-                        <outcome value='success'>

-                            <return status='success'>

-                            </return>

-                        </outcome>

-                    </execute>

-                </outcome>

-            </execute>

-        </block>

-    </method>

+<service-logic
+  xmlns='http://www.onap.org/sdnc/svclogic'
+  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
+  xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='CONFIG' version='1.0.0'>
+    <method rpc='ConfigDeploy' mode='sync'>
+        <block atomic="true">
+            <execute plugin="nf-account-collection" method="process">
+                <outcome value='failure'>
+                    <return status="failure">
+                    </return>
+                </outcome>
+                <outcome value='success'>
+                    <execute plugin="execute" method="process">
+                        <outcome value='failure'>
+                            <return status="failure">
+                            </return>
+                        </outcome>
+                        <outcome value='success'>
+                            <return status='success'>
+                            </return>
+                        </outcome>
+                    </execute>
+                </outcome>
+            </execute>
+        </block>
+    </method>
 </service-logic>
\ No newline at end of file
diff --git a/components/model-catalog/blueprint-model/service-blueprint/vLB/Scripts/python/ConfigDeploy.py b/components/model-catalog/blueprint-model/service-blueprint/vLB/Scripts/python/ConfigDeploy.py
index 9e027e2..04ea82e 100644
--- a/components/model-catalog/blueprint-model/service-blueprint/vLB/Scripts/python/ConfigDeploy.py
+++ b/components/model-catalog/blueprint-model/service-blueprint/vLB/Scripts/python/ConfigDeploy.py
@@ -1,54 +1,54 @@
-#  Copyright (c) 2019 Bell Canada.

-#

-#  Licensed under the Apache License, Version 2.0 (the "License");

-#  you may not use this file except in compliance with the License.

-#  You may obtain a copy of the License at

-#

-#      http://www.apache.org/licenses/LICENSE-2.0

-#

-#  Unless required by applicable law or agreed to in writing, software

-#  distributed under the License is distributed on an "AS IS" BASIS,

-#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-#  See the License for the specific language governing permissions and

-#  limitations under the License.

-

-import netconf_constant

-from common import ResolutionHelper

-from time import sleep 

-from netconfclient import NetconfClient

-from org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor import \

-  NetconfComponentFunction

-

-

-class ConfigDeploy(NetconfComponentFunction):

-

-  def process(self, execution_request):      

-      log = globals()[netconf_constant.SERVICE_LOG]	  

-      print(globals())

-      print("Waiting 4 minutes until NETCONF server is UP on vLB ...")

-      sleep (240)

-      nc = NetconfClient(log, self, "netconf-connection")

-      rr = ResolutionHelper(self)

-

-      # Get meshed template from DB

-      resolution_key = self.getDynamicProperties("resolution-key").asText()

-      payloadHostname = rr.retrieve_resolved_template_from_database(resolution_key, "baseconfig")

-      payloadInterface = rr.retrieve_resolved_template_from_database(resolution_key, "incremental-config")

-

-      nc.connect()

-      nc.lock()

-      #if not response.isSuccess():

-      #  og.error(response.errorMessage)

-      nc.discard_change()

-      nc.edit_config(message_content=payloadInterface, edit_default_peration="none")

-      nc.edit_config(message_content=payloadHostname, edit_default_peration="none")

-      nc.validate()

-      nc.commit()

-      #nc.commit(confirmed = True, confirm_timeout=15)

-      nc.unlock()

-      nc.disconnect()

-

-  def recover(self, runtime_exception, execution_request):

-        log.error("Exception in the script {}", runtime_exception)

-        print self.addError(runtime_exception.cause.message)

+#  Copyright (c) 2019 Bell Canada.
+#
+#  Licensed under the Apache License, Version 2.0 (the "License");
+#  you may not use this file except in compliance with the License.
+#  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+
+import netconf_constant
+from common import ResolutionHelper
+from time import sleep 
+from netconfclient import NetconfClient
+from org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor import \
+  NetconfComponentFunction
+
+
+class ConfigDeploy(NetconfComponentFunction):
+
+  def process(self, execution_request):      
+      log = globals()[netconf_constant.SERVICE_LOG]	  
+      print(globals())
+      print("Waiting 4 minutes until NETCONF server is UP on vLB ...")
+      sleep (240)
+      nc = NetconfClient(log, self, "netconf-connection")
+      rr = ResolutionHelper(self)
+
+      # Get meshed template from DB
+      resolution_key = self.getDynamicProperties("resolution-key").asText()
+      payloadHostname = rr.retrieve_resolved_template_from_database(resolution_key, "baseconfig")
+      payloadInterface = rr.retrieve_resolved_template_from_database(resolution_key, "incremental-config")
+
+      nc.connect()
+      nc.lock()
+      #if not response.isSuccess():
+      #  og.error(response.errorMessage)
+      nc.discard_change()
+      nc.edit_config(message_content=payloadInterface, edit_default_peration="none")
+      nc.edit_config(message_content=payloadHostname, edit_default_peration="none")
+      nc.validate()
+      nc.commit()
+      #nc.commit(confirmed = True, confirm_timeout=15)
+      nc.unlock()
+      nc.disconnect()
+
+  def recover(self, runtime_exception, execution_request):
+        log.error("Exception in the script {}", runtime_exception)
+        print self.addError(runtime_exception.cause.message)
         return None
\ No newline at end of file
diff --git a/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/baseconfig-mapping.json b/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/baseconfig-mapping.json
index 0ab26be..000cbd0 100644
--- a/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/baseconfig-mapping.json
+++ b/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/baseconfig-mapping.json
@@ -1,113 +1,113 @@
-[

-  {

-    "name": "service-instance-id",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "service-instance-id",

-    "dictionary-source": "input",

-    "dependencies": [],

-    "version": 0

-  },

-  {

-    "name": "vnf-id",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "vnf-id",

-    "dictionary-source": "input",

-    "dependencies": [],

-    "version": 0

-  },

-  {

-    "name": "vdns_vf_module_id",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "vdns_vf_module_id",

-    "dictionary-source": "sdnc",

-    "dependencies": [

-	  "service-instance-id",

-      "vnf-id"

-    ],

-    "version": 0

-  },

-  {

-    "name": "vdns_int_private_ip_0",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "vdns_int_private_ip_0",

-    "dictionary-source": "sdnc",

-    "dependencies": [

-      "service-instance-id",

-      "vnf-id",

-      "vdns_vf_module_id"

-    ],

-    "version": 0

-  },

-  {

-    "name": "vdns_onap_private_ip_0",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "vdns_onap_private_ip_0",

-    "dictionary-source": "sdnc",

-    "dependencies": [

-      "service-instance-id",

-      "vnf-id",

-      "vdns_vf_module_id"

-    ],

-    "version": 0

-  }

-]

+[
+  {
+    "name": "service-instance-id",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "service-instance-id",
+    "dictionary-source": "input",
+    "dependencies": [],
+    "version": 0
+  },
+  {
+    "name": "vnf-id",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "vnf-id",
+    "dictionary-source": "input",
+    "dependencies": [],
+    "version": 0
+  },
+  {
+    "name": "vdns_vf_module_id",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "vdns_vf_module_id",
+    "dictionary-source": "sdnc",
+    "dependencies": [
+	  "service-instance-id",
+      "vnf-id"
+    ],
+    "version": 0
+  },
+  {
+    "name": "vdns_int_private_ip_0",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "vdns_int_private_ip_0",
+    "dictionary-source": "sdnc",
+    "dependencies": [
+      "service-instance-id",
+      "vnf-id",
+      "vdns_vf_module_id"
+    ],
+    "version": 0
+  },
+  {
+    "name": "vdns_onap_private_ip_0",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "vdns_onap_private_ip_0",
+    "dictionary-source": "sdnc",
+    "dependencies": [
+      "service-instance-id",
+      "vnf-id",
+      "vdns_vf_module_id"
+    ],
+    "version": 0
+  }
+]
diff --git a/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/baseconfig-template.vtl b/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/baseconfig-template.vtl
index 23cd22b..9e73a31 100644
--- a/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/baseconfig-template.vtl
+++ b/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/baseconfig-template.vtl
@@ -1,9 +1,9 @@
-	{

-    "vdns-instance": [

-        {

-            "ip-addr": "$vdns_int_private_ip_0",

-            "oam-ip-addr": "$vdns_onap_private_ip_0",

-            "enabled": false

-        }

-    ]

+	{
+    "vdns-instance": [
+        {
+            "ip-addr": "$vdns_int_private_ip_0",
+            "oam-ip-addr": "$vdns_onap_private_ip_0",
+            "enabled": false
+        }
+    ]
 }
\ No newline at end of file
diff --git a/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/incremental-config-mapping.json b/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/incremental-config-mapping.json
index db29b5a..1aece73 100644
--- a/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/incremental-config-mapping.json
+++ b/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/incremental-config-mapping.json
@@ -1,113 +1,113 @@
-[

-  {

-    "name": "service-instance-id",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "service-instance-id",

-    "dictionary-source": "input",

-    "dependencies": [],

-    "version": 0

-  },

-  {

-    "name": "vnf-id",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "vnf-id",

-    "dictionary-source": "input",

-    "dependencies": [],

-    "version": 0

-  },

-  {

-    "name": "vdns_vf_module_id",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "vdns_vf_module_id",

-    "dictionary-source": "sdnc",

-    "dependencies": [

-       "service-instance-id",

-      "vnf-id"

-    ],

-    "version": 0

-  },

-  {

-    "name": "vdns_int_private_ip_0",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "vdns_int_private_ip_0",

-    "dictionary-source": "sdnc",

-    "dependencies": [

-      "service-instance-id",

-      "vnf-id",

-      "vdns_vf_module_id"

-    ],

-    "version": 0

-  },

-  {

-    "name": "vdns_onap_private_ip_0",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "vdns_onap_private_ip_0",

-    "dictionary-source": "sdnc",

-    "dependencies": [

-      "service-instance-id",

-      "vnf-id",

-      "vdns_vf_module_id"

-    ],

-    "version": 0

-  }

-]

+[
+  {
+    "name": "service-instance-id",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "service-instance-id",
+    "dictionary-source": "input",
+    "dependencies": [],
+    "version": 0
+  },
+  {
+    "name": "vnf-id",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "vnf-id",
+    "dictionary-source": "input",
+    "dependencies": [],
+    "version": 0
+  },
+  {
+    "name": "vdns_vf_module_id",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "vdns_vf_module_id",
+    "dictionary-source": "sdnc",
+    "dependencies": [
+       "service-instance-id",
+      "vnf-id"
+    ],
+    "version": 0
+  },
+  {
+    "name": "vdns_int_private_ip_0",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "vdns_int_private_ip_0",
+    "dictionary-source": "sdnc",
+    "dependencies": [
+      "service-instance-id",
+      "vnf-id",
+      "vdns_vf_module_id"
+    ],
+    "version": 0
+  },
+  {
+    "name": "vdns_onap_private_ip_0",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "vdns_onap_private_ip_0",
+    "dictionary-source": "sdnc",
+    "dependencies": [
+      "service-instance-id",
+      "vnf-id",
+      "vdns_vf_module_id"
+    ],
+    "version": 0
+  }
+]
diff --git a/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/incremental-config-template.vtl b/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/incremental-config-template.vtl
index a3cd17f..7ec446f 100644
--- a/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/incremental-config-template.vtl
+++ b/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/incremental-config-template.vtl
@@ -1,9 +1,9 @@
-{

-    "vdns-instance": [

-        {

-            "ip-addr": "$vdns_int_private_ip_0",

-            "oam-ip-addr": "$vdns_onap_private_ip_0",

-            "enabled": true

-        }

-    ]

+{
+    "vdns-instance": [
+        {
+            "ip-addr": "$vdns_int_private_ip_0",
+            "oam-ip-addr": "$vdns_onap_private_ip_0",
+            "enabled": true
+        }
+    ]
 }
\ No newline at end of file
diff --git a/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/nf-params-mapping.json b/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/nf-params-mapping.json
index f36701d..3000452 100644
--- a/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/nf-params-mapping.json
+++ b/components/model-catalog/blueprint-model/service-blueprint/vLB/Templates/nf-params-mapping.json
@@ -1,65 +1,65 @@
-[

-  {

-    "name": "service-instance-id",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "service-instance-id",

-    "dictionary-source": "input",

-    "dependencies": [],

-    "version": 0

-  },

-  {

-    "name": "vnf-id",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "vnf-id",

-    "dictionary-source": "input",

-    "dependencies": [],

-    "version": 0

-  },

-  {

-    "name": "ip",

-    "property": {

-      "description": "",

-      "required": false,

-      "type": "string",

-      "status": "",

-      "constraints": [

-        {}

-      ],

-      "entry_schema": {

-        "type": ""

-      }

-    },

-    "input-param": false,

-    "dictionary-name": "vlb_onap_private_ip_0",

-    "dictionary-source": "sdnc",

-    "dependencies": [

-      "service-instance-id",

-      "vnf-id"

-    ],

-    "version": 0

-  }

-]

+[
+  {
+    "name": "service-instance-id",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "service-instance-id",
+    "dictionary-source": "input",
+    "dependencies": [],
+    "version": 0
+  },
+  {
+    "name": "vnf-id",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "vnf-id",
+    "dictionary-source": "input",
+    "dependencies": [],
+    "version": 0
+  },
+  {
+    "name": "ip",
+    "property": {
+      "description": "",
+      "required": false,
+      "type": "string",
+      "status": "",
+      "constraints": [
+        {}
+      ],
+      "entry_schema": {
+        "type": ""
+      }
+    },
+    "input-param": false,
+    "dictionary-name": "vlb_onap_private_ip_0",
+    "dictionary-source": "sdnc",
+    "dependencies": [
+      "service-instance-id",
+      "vnf-id"
+    ],
+    "version": 0
+  }
+]
diff --git a/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Definitions/resources_definition_types.json b/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Definitions/resources_definition_types.json
index aa08362..5f50eaa 100644
--- a/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Definitions/resources_definition_types.json
+++ b/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Definitions/resources_definition_types.json
@@ -30,7 +30,7 @@
         "type": "source-db",
         "properties": {
           "endpoint-selector": "dynamic-db-source",
-          "query": "SELECT artifact_name FROM sdnctl.BLUEPRINT_RUNTIME where artifact_version=\"1.0.0\"",
+          "query": "SELECT artifact_name FROM sdnctl.BLUEPRINT_MODEL where artifact_version=\"1.0.0\"",
           "input-key-mapping": {
           },
           "output-key-mapping": {
diff --git a/components/model-catalog/blueprint-model/test-blueprint/capability_cli/pom.xml b/components/model-catalog/blueprint-model/test-blueprint/capability_cli/pom.xml
index 791c161..46ce3a0 100644
--- a/components/model-catalog/blueprint-model/test-blueprint/capability_cli/pom.xml
+++ b/components/model-catalog/blueprint-model/test-blueprint/capability_cli/pom.xml
@@ -19,11 +19,10 @@
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>cba-parent</artifactId>
-        <version>0.6.0-SNAPSHOT</version>
+        <version>0.7.0-SNAPSHOT</version>
     </parent>
     <groupId>org.onap.ccsdk.cds.components.cba</groupId>
     <artifactId>capability_cli</artifactId>
-    <version>0.6.0-SNAPSHOT</version>
     <name>CBA Capability CLI</name>
     <description>CBA Capability CLI</description>
 
diff --git a/components/model-catalog/blueprint-model/test-blueprint/capability_python/Definitions/resources_definition_types.json b/components/model-catalog/blueprint-model/test-blueprint/capability_python/Definitions/resources_definition_types.json
index 4c128a9..941d254 100755
--- a/components/model-catalog/blueprint-model/test-blueprint/capability_python/Definitions/resources_definition_types.json
+++ b/components/model-catalog/blueprint-model/test-blueprint/capability_python/Definitions/resources_definition_types.json
@@ -16,7 +16,7 @@
         "type": "source-db",
         "properties": {
           "endpoint-selector": "dynamic-db-source",
-          "query": "SELECT artifact_name FROM sdnctl.BLUEPRINT_RUNTIME where artifact_version=\"1.0.0\"",
+          "query": "SELECT artifact_name FROM sdnctl.BLUEPRINT_MODEL where artifact_version=\"1.0.0\"",
           "input-key-mapping": {
           },
           "output-key-mapping": {
diff --git a/components/model-catalog/blueprint-model/test-blueprint/resource-audit/pom.xml b/components/model-catalog/blueprint-model/test-blueprint/resource-audit/pom.xml
index b38c27c..527e2b6 100644
--- a/components/model-catalog/blueprint-model/test-blueprint/resource-audit/pom.xml
+++ b/components/model-catalog/blueprint-model/test-blueprint/resource-audit/pom.xml
@@ -19,11 +19,10 @@
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>cba-parent</artifactId>
-        <version>0.6.0-SNAPSHOT</version>
+        <version>0.7.0-SNAPSHOT</version>
     </parent>
     <groupId>org.onap.ccsdk.cds.components.cba</groupId>
     <artifactId>resource-audit</artifactId>
-    <version>0.6.0-SNAPSHOT</version>
     <name>CBA Resource Audit</name>
     <description>CBA Resource Audit</description>
 
diff --git a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-bpmn-camunda.json b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-bpmn-camunda.json
index ac76b4f..cae06c1 100644
--- a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-bpmn-camunda.json
+++ b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-bpmn-camunda.json
@@ -1,8 +1,8 @@
-{

-  "description": " Camunda BPM File",

-  "version": "1.0.0",

-  "file_ext": [

-    "bpmn"

-  ],

-  "derived_from": "tosca.artifacts.Implementation"

+{
+  "description": " Camunda BPM File",
+  "version": "1.0.0",
+  "file_ext": [
+    "bpmn"
+  ],
+  "derived_from": "tosca.artifacts.Implementation"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-dictionary-resource.json b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-dictionary-resource.json
index ccc1598..7161156 100644
--- a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-dictionary-resource.json
+++ b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-dictionary-resource.json
@@ -1,8 +1,8 @@
-{

-  "description": "Resource Dictionary File used along with Configuration template",

-  "version": "1.0.0",

-  "file_ext": [

-    "json"

-  ],

-  "derived_from": "tosca.artifacts.Implementation"

+{
+  "description": "Resource Dictionary File used along with Configuration template",
+  "version": "1.0.0",
+  "file_ext": [
+    "json"
+  ],
+  "derived_from": "tosca.artifacts.Implementation"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-directed-graph.json b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-directed-graph.json
index 7ab3a54..10bf7d2 100644
--- a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-directed-graph.json
+++ b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-directed-graph.json
@@ -1,9 +1,9 @@
-{

-  "description": "Directed Graph File",

-  "version": "1.0.0",

-  "file_ext": [

-    "json",

-    "xml"

-  ],

-  "derived_from": "tosca.artifacts.Implementation"

+{
+  "description": "Directed Graph File",
+  "version": "1.0.0",
+  "file_ext": [
+    "json",
+    "xml"
+  ],
+  "derived_from": "tosca.artifacts.Implementation"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-mapping-resource.json b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-mapping-resource.json
index ea3aa23..49aaef0 100644
--- a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-mapping-resource.json
+++ b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-mapping-resource.json
@@ -1,8 +1,8 @@
-{

-  "description": "Resource Mapping File used along with Configuration template",

-  "version": "1.0.0",

-  "file_ext": [

-    "json"

-  ],

-  "derived_from": "tosca.artifacts.Implementation"

+{
+  "description": "Resource Mapping File used along with Configuration template",
+  "version": "1.0.0",
+  "file_ext": [
+    "json"
+  ],
+  "derived_from": "tosca.artifacts.Implementation"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-script-jython.json b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-script-jython.json
index 969662a..05bfb87 100644
--- a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-script-jython.json
+++ b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-script-jython.json
@@ -1,8 +1,8 @@
-{

-  "description": "Jython Script File",

-  "version": "1.0.0",

-  "file_ext": [

-    "py"

-  ],

-  "derived_from": "tosca.artifacts.Implementation"

+{
+  "description": "Jython Script File",
+  "version": "1.0.0",
+  "file_ext": [
+    "py"
+  ],
+  "derived_from": "tosca.artifacts.Implementation"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-script-python.json b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-script-python.json
index b42f715..847eebb 100644
--- a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-script-python.json
+++ b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-script-python.json
@@ -1,8 +1,8 @@
-{

-  "description": "Python Script file",

-  "version": "1.0.0",

-  "file_ext": [

-    "py"

-  ],

-  "derived_from": "tosca.artifacts.Implementation"

+{
+  "description": "Python Script file",
+  "version": "1.0.0",
+  "file_ext": [
+    "py"
+  ],
+  "derived_from": "tosca.artifacts.Implementation"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-template-velocity.json b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-template-velocity.json
index 9395d39..20f94c9 100644
--- a/components/model-catalog/definition-type/starter-type/artifact_type/artifact-template-velocity.json
+++ b/components/model-catalog/definition-type/starter-type/artifact_type/artifact-template-velocity.json
@@ -1,8 +1,8 @@
-{

-  "description": " Velocity Template used for Configuration",

-  "version": "1.0.0",

-  "file_ext": [

-    "vtl"

-  ],

-  "derived_from": "tosca.artifacts.Implementation"

+{
+  "description": " Velocity Template used for Configuration",
+  "version": "1.0.0",
+  "file_ext": [
+    "vtl"
+  ],
+  "derived_from": "tosca.artifacts.Implementation"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/artifact_type/tosca.artifacts.Implementation.json b/components/model-catalog/definition-type/starter-type/artifact_type/tosca.artifacts.Implementation.json
index 5a7c956..d75f337 100644
--- a/components/model-catalog/definition-type/starter-type/artifact_type/tosca.artifacts.Implementation.json
+++ b/components/model-catalog/definition-type/starter-type/artifact_type/tosca.artifacts.Implementation.json
@@ -1,5 +1,5 @@
-{

-  "description": "TOSCA base type for implementation artifacts",

-  "version": "1.0.0",

-  "derived_from": "tosca.artifacts.Root"

+{
+  "description": "TOSCA base type for implementation artifacts",
+  "version": "1.0.0",
+  "derived_from": "tosca.artifacts.Root"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/data_type/datatype-property.json b/components/model-catalog/definition-type/starter-type/data_type/datatype-property.json
index 5584b10..d3ecffd 100644
--- a/components/model-catalog/definition-type/starter-type/data_type/datatype-property.json
+++ b/components/model-catalog/definition-type/starter-type/data_type/datatype-property.json
@@ -1,27 +1,27 @@
-{

-	"version": "1.0.0",

-	"description": "This is Entry point Input Data Type, which is dynamic datatype, The parameter names will be populated during the Design time for each inputs",

-	"properties": {

-		"type": {

-			"required": true,

-			"type": "string"

-		},

-		"description": {

-			"required": false,

-			"type": "string"

-		},

-		"required": {

-			"required": false,

-			"type": "boolean"

-		},

-		"default": {

-			"required": false,

-			"type": "string"

-		},

-		"entry_schema": {

-			"required": false,

-			"type": "string"

-		}

-	},

-	"derived_from": "tosca.datatypes.Root"

+{
+	"version": "1.0.0",
+	"description": "This is Entry point Input Data Type, which is dynamic datatype, The parameter names will be populated during the Design time for each inputs",
+	"properties": {
+		"type": {
+			"required": true,
+			"type": "string"
+		},
+		"description": {
+			"required": false,
+			"type": "string"
+		},
+		"required": {
+			"required": false,
+			"type": "boolean"
+		},
+		"default": {
+			"required": false,
+			"type": "string"
+		},
+		"entry_schema": {
+			"required": false,
+			"type": "string"
+		}
+	},
+	"derived_from": "tosca.datatypes.Root"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/data_type/datatype-resource-assignment.json b/components/model-catalog/definition-type/starter-type/data_type/datatype-resource-assignment.json
index cc9816e..8fa595a 100644
--- a/components/model-catalog/definition-type/starter-type/data_type/datatype-resource-assignment.json
+++ b/components/model-catalog/definition-type/starter-type/data_type/datatype-resource-assignment.json
@@ -1,46 +1,46 @@
-{

-	"version": "1.0.0",

-	"description": "This is Resource Assignment Data Type",

-	"properties": {

-		"property": {

-			"required": true,

-			"type": "datatype-property"

-		},

-		"input-param": {

-			"required": true,

-			"type": "boolean"

-		},

-		"dictionary-name": {

-			"required": false,

-			"type": "string"

-		},

-		"dictionary-source": {

-			"required": false,

-			"type": "string"

-		},

-		"dependencies": {

-			"required": true,

-			"type": "list",

-			"entry_schema": {

-				"type": "string"

-			}

-		},

-		"status": {

-			"required": false,

-			"type": "string"

-		},

-		"message": {

-			"required": false,

-			"type": "string"

-		},

-		"updated-date": {

-			"required": false,

-			"type": "string"

-		},

-		"updated-by": {

-			"required": false,

-			"type": "string"

-		}

-	},

-	"derived_from": "tosca.datatypes.Root"

+{
+	"version": "1.0.0",
+	"description": "This is Resource Assignment Data Type",
+	"properties": {
+		"property": {
+			"required": true,
+			"type": "datatype-property"
+		},
+		"input-param": {
+			"required": true,
+			"type": "boolean"
+		},
+		"dictionary-name": {
+			"required": false,
+			"type": "string"
+		},
+		"dictionary-source": {
+			"required": false,
+			"type": "string"
+		},
+		"dependencies": {
+			"required": true,
+			"type": "list",
+			"entry_schema": {
+				"type": "string"
+			}
+		},
+		"status": {
+			"required": false,
+			"type": "string"
+		},
+		"message": {
+			"required": false,
+			"type": "string"
+		},
+		"updated-date": {
+			"required": false,
+			"type": "string"
+		},
+		"updated-by": {
+			"required": false,
+			"type": "string"
+		}
+	},
+	"derived_from": "tosca.datatypes.Root"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/data_type/dt-license-key.json b/components/model-catalog/definition-type/starter-type/data_type/dt-license-key.json
index e9c312b..27e25fe 100644
--- a/components/model-catalog/definition-type/starter-type/data_type/dt-license-key.json
+++ b/components/model-catalog/definition-type/starter-type/data_type/dt-license-key.json
@@ -1,11 +1,11 @@
-{

-	"version": "1.0.0",

-	"description": "This is dt-plicense-key Data Type",

-	"properties": {

-		"license-key": {

-			"required": true,

-			"type": "string"

-		}

-	},

-	"derived_from": "tosca.datatypes.Root"

+{
+	"version": "1.0.0",
+	"description": "This is dt-plicense-key Data Type",
+	"properties": {
+		"license-key": {
+			"required": true,
+			"type": "string"
+		}
+	},
+	"derived_from": "tosca.datatypes.Root"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/data_type/dt-v4-aggregate.json b/components/model-catalog/definition-type/starter-type/data_type/dt-v4-aggregate.json
index 842a7f8..4f7be2d 100644
--- a/components/model-catalog/definition-type/starter-type/data_type/dt-v4-aggregate.json
+++ b/components/model-catalog/definition-type/starter-type/data_type/dt-v4-aggregate.json
@@ -1,15 +1,15 @@
-{

-	"version": "1.0.0",

-	"description": "This is dt-v4-aggregate Data Type",

-	"properties": {

-		"ipv4-address": {

-			"required": true,

-			"type": "string"

-		},

-		"ipv4-plen": {

-			"required": false,

-			"type": "integer"

-		}

-	},

-	"derived_from": "tosca.datatypes.Root"

+{
+	"version": "1.0.0",
+	"description": "This is dt-v4-aggregate Data Type",
+	"properties": {
+		"ipv4-address": {
+			"required": true,
+			"type": "string"
+		},
+		"ipv4-plen": {
+			"required": false,
+			"type": "integer"
+		}
+	},
+	"derived_from": "tosca.datatypes.Root"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/data_type/tosca.datatypes.Credential.json b/components/model-catalog/definition-type/starter-type/data_type/tosca.datatypes.Credential.json
index 820a551..68d9165 100644
--- a/components/model-catalog/definition-type/starter-type/data_type/tosca.datatypes.Credential.json
+++ b/components/model-catalog/definition-type/starter-type/data_type/tosca.datatypes.Credential.json
@@ -1,31 +1,31 @@
-{

-  "version": "1.0.0",

-  "description": "Credential",

-  "properties": {

-    "protocol": {

-      "required": false,

-      "type": "string"

-    },

-    "token_type": {

-      "required": true,

-      "type": "string",

-      "default" : "password"

-    },

-    "token": {

-      "required": false,

-      "type": "string"

-    },

-    "keys": {

-      "required": false,

-      "type": "list",

-      "entry_schema": {

-        "type": "string"

-      }

-    },

-    "user": {

-      "required": false,

-      "type": "string"

-    }

-  },

-  "derived_from": "tosca.datatypes.Root"

+{
+  "version": "1.0.0",
+  "description": "Credential",
+  "properties": {
+    "protocol": {
+      "required": false,
+      "type": "string"
+    },
+    "token_type": {
+      "required": true,
+      "type": "string",
+      "default" : "password"
+    },
+    "token": {
+      "required": false,
+      "type": "string"
+    },
+    "keys": {
+      "required": false,
+      "type": "list",
+      "entry_schema": {
+        "type": "string"
+      }
+    },
+    "user": {
+      "required": false,
+      "type": "string"
+    }
+  },
+  "derived_from": "tosca.datatypes.Root"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/node_type/component-netconf-executor.json b/components/model-catalog/definition-type/starter-type/node_type/component-netconf-executor.json
index e72cf95..b51d4d5 100644
--- a/components/model-catalog/definition-type/starter-type/node_type/component-netconf-executor.json
+++ b/components/model-catalog/definition-type/starter-type/node_type/component-netconf-executor.json
@@ -1,78 +1,78 @@
-{

-  "description": "This is Netconf Transaction Configuration Component API",

-  "version": "1.0.0",

-  "attributes": {

-    "response-data": {

-      "required": false,

-      "type": "json"

-    }

-  },

-  "capabilities": {

-    "component-node": {

-      "type": "tosca.capabilities.Node"

-    }

-  },

-  "requirements": {

-    "netconf-connection": {

-      "capability": "netconf",

-      "node": "vnf-netconf-device",

-      "relationship": "tosca.relationships.ConnectsTo"

-    }

-  },

-  "interfaces": {

-    "ComponentNetconfExecutor": {

-      "operations": {

-        "process": {

-          "inputs": {

-            "script-type": {

-              "description": "Script type, kotlin type is supported",

-              "required": true,

-              "type": "string",

-              "default": "internal",

-              "constraints": [

-                {

-                  "valid_values": [

-                    "kotlin",

-                    "jython",

-                    "internal"

-                  ]

-                }

-              ]

-            },

-            "script-class-reference": {

-              "description": "Kotlin Script class name or jython script name.",

-              "required": true,

-              "type": "string"

-            },

-            "instance-dependencies": {

-              "required": true,

-              "description": "Instance names to inject to Jython or Kotlin Script.",

-              "type": "list",

-              "entry_schema": {

-                "type": "string"

-              }

-            },

-            "dynamic-properties": {

-              "description": "Dynamic Json Content or DSL Json reference.",

-              "required": false,

-              "type": "json"

-            }

-          },

-          "outputs": {

-            "response-data": {

-              "description": "Execution Response Data in JSON format.",

-              "required": false,

-              "type": "string"

-            },

-            "status": {

-              "description": "Status of the Component Execution ( success or failure )",

-              "required": true,

-              "type": "string"

-            }

-          }

-        }

-      }

-    }

-  },

-  "derived_from": "tosca.nodes.Component"

+{
+  "description": "This is Netconf Transaction Configuration Component API",
+  "version": "1.0.0",
+  "attributes": {
+    "response-data": {
+      "required": false,
+      "type": "json"
+    }
+  },
+  "capabilities": {
+    "component-node": {
+      "type": "tosca.capabilities.Node"
+    }
+  },
+  "requirements": {
+    "netconf-connection": {
+      "capability": "netconf",
+      "node": "vnf-netconf-device",
+      "relationship": "tosca.relationships.ConnectsTo"
+    }
+  },
+  "interfaces": {
+    "ComponentNetconfExecutor": {
+      "operations": {
+        "process": {
+          "inputs": {
+            "script-type": {
+              "description": "Script type, kotlin type is supported",
+              "required": true,
+              "type": "string",
+              "default": "internal",
+              "constraints": [
+                {
+                  "valid_values": [
+                    "kotlin",
+                    "jython",
+                    "internal"
+                  ]
+                }
+              ]
+            },
+            "script-class-reference": {
+              "description": "Kotlin Script class name or jython script name.",
+              "required": true,
+              "type": "string"
+            },
+            "instance-dependencies": {
+              "required": true,
+              "description": "Instance names to inject to Jython or Kotlin Script.",
+              "type": "list",
+              "entry_schema": {
+                "type": "string"
+              }
+            },
+            "dynamic-properties": {
+              "description": "Dynamic Json Content or DSL Json reference.",
+              "required": false,
+              "type": "json"
+            }
+          },
+          "outputs": {
+            "response-data": {
+              "description": "Execution Response Data in JSON format.",
+              "required": false,
+              "type": "string"
+            },
+            "status": {
+              "description": "Status of the Component Execution ( success or failure )",
+              "required": true,
+              "type": "string"
+            }
+          }
+        }
+      }
+    }
+  },
+  "derived_from": "tosca.nodes.Component"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/node_type/tosca.nodes.Artifact.json b/components/model-catalog/definition-type/starter-type/node_type/tosca.nodes.Artifact.json
index 8141052..4db3f73 100644
--- a/components/model-catalog/definition-type/starter-type/node_type/tosca.nodes.Artifact.json
+++ b/components/model-catalog/definition-type/starter-type/node_type/tosca.nodes.Artifact.json
@@ -1,5 +1,5 @@
-{

-  "description": "This is Deprecated Artifact Node Type.",

-  "version": "1.0.0",

-  "derived_from": "tosca.nodes.Root"

+{
+  "description": "This is Deprecated Artifact Node Type.",
+  "version": "1.0.0",
+  "derived_from": "tosca.nodes.Root"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/node_type/tosca.nodes.Component.json b/components/model-catalog/definition-type/starter-type/node_type/tosca.nodes.Component.json
index bc4827b..d559216 100644
--- a/components/model-catalog/definition-type/starter-type/node_type/tosca.nodes.Component.json
+++ b/components/model-catalog/definition-type/starter-type/node_type/tosca.nodes.Component.json
@@ -1,5 +1,5 @@
-{

-  "description": "This is default Component Node",

-  "version": "1.0.0",

-  "derived_from": "tosca.nodes.Root"

+{
+  "description": "This is default Component Node",
+  "version": "1.0.0",
+  "derived_from": "tosca.nodes.Root"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/node_type/tosca.nodes.Vnf.json b/components/model-catalog/definition-type/starter-type/node_type/tosca.nodes.Vnf.json
index acb1f2f..c2f5b86 100644
--- a/components/model-catalog/definition-type/starter-type/node_type/tosca.nodes.Vnf.json
+++ b/components/model-catalog/definition-type/starter-type/node_type/tosca.nodes.Vnf.json
@@ -1,5 +1,5 @@
-{

-  "description": "This is VNF Node Type",

-  "version": "1.0.0",

-  "derived_from": "tosca.nodes.Root"

+{
+  "description": "This is VNF Node Type",
+  "version": "1.0.0",
+  "derived_from": "tosca.nodes.Root"
 }
\ No newline at end of file
diff --git a/components/model-catalog/definition-type/starter-type/node_type/vnf-netconf-device.json b/components/model-catalog/definition-type/starter-type/node_type/vnf-netconf-device.json
index dcc47b3..9aa3a4f 100644
--- a/components/model-catalog/definition-type/starter-type/node_type/vnf-netconf-device.json
+++ b/components/model-catalog/definition-type/starter-type/node_type/vnf-netconf-device.json
@@ -1,41 +1,41 @@
-{

-	"description": "This is VNF Device with Netconf  Capability",

-	"version": "1.0.0",

-	"capabilities": {

-		"netconf": {

-			"type": "tosca.capabilities.Netconf",

-			"properties": {

-				"login-key": {

-					"required": true,

-					"type": "string",

-					"default": "sdnc"

-				},

-				"login-account": {

-					"required": true,

-					"type": "string",

-					"default": "sdnc-tacacs"

-				},

-				"source": {

-					"required": false,

-					"type": "string",

-					"default": "npm"

-				},

-				"target-ip-address": {

-					"required": true,

-					"type": "string"

-				},

-				"port-number": {

-					"required": true,

-					"type": "integer",

-					"default": 830

-				},

-				"connection-time-out": {

-					"required": false,

-					"type": "integer",

-					"default": 30

-				}

-			}

-		}

-	},

-	"derived_from": "tosca.nodes.Vnf"

-}

+{
+	"description": "This is VNF Device with Netconf  Capability",
+	"version": "1.0.0",
+	"capabilities": {
+		"netconf": {
+			"type": "tosca.capabilities.Netconf",
+			"properties": {
+				"login-key": {
+					"required": true,
+					"type": "string",
+					"default": "sdnc"
+				},
+				"login-account": {
+					"required": true,
+					"type": "string",
+					"default": "sdnc-tacacs"
+				},
+				"source": {
+					"required": false,
+					"type": "string",
+					"default": "npm"
+				},
+				"target-ip-address": {
+					"required": true,
+					"type": "string"
+				},
+				"port-number": {
+					"required": true,
+					"type": "integer",
+					"default": 830
+				},
+				"connection-time-out": {
+					"required": false,
+					"type": "integer",
+					"default": 30
+				}
+			}
+		}
+	},
+	"derived_from": "tosca.nodes.Vnf"
+}
diff --git a/components/model-catalog/proto-definition/pom.xml b/components/model-catalog/proto-definition/pom.xml
deleted file mode 100644
index 9c6d802..0000000
--- a/components/model-catalog/proto-definition/pom.xml
+++ /dev/null
@@ -1,87 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- * Copyright (C) 2019 Bell Canada
- * Modifications Copyright © 2017-2018 AT&T Intellectual Property.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.onap.ccsdk.cds</groupId>
-        <artifactId>parent</artifactId>
-        <version>0.7.0-SNAPSHOT</version>
-        <relativePath>../../../</relativePath>
-    </parent>
-
-    <groupId>org.onap.ccsdk.cds.components</groupId>
-    <artifactId>proto-definition</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
-    <packaging>jar</packaging>
-
-    <name>Controller Blueprints Proto Definition</name>
-    <description>Controller Blueprints Proto Definition</description>
-
-    <dependencies>
-        <dependency>
-            <groupId>io.grpc</groupId>
-            <artifactId>grpc-protobuf</artifactId>
-            <version>1.17.1</version>
-        </dependency>
-        <dependency>
-            <groupId>io.grpc</groupId>
-            <artifactId>grpc-stub</artifactId>
-            <version>1.17.1</version>
-        </dependency>
-        <dependency>
-            <groupId>com.google.protobuf</groupId>
-            <artifactId>protobuf-java-util</artifactId>
-            <version>3.6.1</version>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <extensions>
-            <extension>
-                <groupId>kr.motd.maven</groupId>
-                <artifactId>os-maven-plugin</artifactId>
-                <version>1.6.1</version>
-            </extension>
-        </extensions>
-        <plugins>
-            <plugin>
-                <groupId>org.xolstice.maven.plugins</groupId>
-                <artifactId>protobuf-maven-plugin</artifactId>
-                <version>0.6.1</version>
-                <configuration>
-                    <protocArtifact>
-                        com.google.protobuf:protoc:3.6.1:exe:${os.detected.classifier}
-                    </protocArtifact>
-                    <pluginId>grpc-java</pluginId>
-                    <pluginArtifact>
-                        io.grpc:protoc-gen-grpc-java:1.18.0:exe:${os.detected.classifier}
-                    </pluginArtifact>
-                    <protoSourceRoot>proto</protoSourceRoot>
-                </configuration>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>compile</goal>
-                            <goal>compile-custom</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-</project>
diff --git a/components/model-catalog/proto-definition/src/main/README.md b/components/model-catalog/proto-definition/src/main/README.md
deleted file mode 100644
index f63edde..0000000
--- a/components/model-catalog/proto-definition/src/main/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Standard maven directory for source
diff --git a/components/model-catalog/proto-definition/src/test/README.md b/components/model-catalog/proto-definition/src/test/README.md
deleted file mode 100644
index 4701e06..0000000
--- a/components/model-catalog/proto-definition/src/test/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Standard maven directory for unit test cases
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/cloud_env.json b/components/model-catalog/resource-dictionary/starter-dictionary/cloud_env.json
index 7b05fdf..1877c12 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/cloud_env.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/cloud_env.json
@@ -1,37 +1,37 @@
-{

-  "tags": "cloud_env",

-  "name": "cloud_env",

-  "property": {

-    "description": "cloud_env",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/cloud_env",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "cloud_env": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "cloud_env",
+  "name": "cloud_env",
+  "property": {
+    "description": "cloud_env",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/cloud_env",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "cloud_env": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/dcae_collector_ip.json b/components/model-catalog/resource-dictionary/starter-dictionary/dcae_collector_ip.json
index b0248b2..c0d42df 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/dcae_collector_ip.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/dcae_collector_ip.json
@@ -1,37 +1,37 @@
-{

-  "tags": "dcae_collector_ip",

-  "name": "dcae_collector_ip",

-  "property": {

-    "description": "dcae_collector_ip",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/dcae_collector_ip",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "dcae_collector_ip": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "dcae_collector_ip",
+  "name": "dcae_collector_ip",
+  "property": {
+    "description": "dcae_collector_ip",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/dcae_collector_ip",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "dcae_collector_ip": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/dcae_collector_port.json b/components/model-catalog/resource-dictionary/starter-dictionary/dcae_collector_port.json
index f537157..1191d80 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/dcae_collector_port.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/dcae_collector_port.json
@@ -1,37 +1,37 @@
-{

-  "tags": "dcae_collector_port",

-  "name": "dcae_collector_port",

-  "property": {

-    "description": "dcae_collector_port",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/dcae_collector_port",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "dcae_collector_port": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "dcae_collector_port",
+  "name": "dcae_collector_port",
+  "property": {
+    "description": "dcae_collector_port",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/dcae_collector_port",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "dcae_collector_port": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/demo_artifacts_version.json b/components/model-catalog/resource-dictionary/starter-dictionary/demo_artifacts_version.json
index 9c49ae4..3884e1e 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/demo_artifacts_version.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/demo_artifacts_version.json
@@ -1,37 +1,37 @@
-{

-  "tags": "demo_artifacts_version",

-  "name": "demo_artifacts_version",

-  "property": {

-    "description": "demo_artifacts_version",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/demo_artifacts_version",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "demo_artifacts_version": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "demo_artifacts_version",
+  "name": "demo_artifacts_version",
+  "property": {
+    "description": "demo_artifacts_version",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/demo_artifacts_version",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "demo_artifacts_version": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/gre_ipaddr.json b/components/model-catalog/resource-dictionary/starter-dictionary/gre_ipaddr.json
index 666250f..92f7abe 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/gre_ipaddr.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/gre_ipaddr.json
@@ -1,37 +1,37 @@
-{

-  "tags": "gre_ipaddr",

-  "name": "gre_ipaddr",

-  "property": {

-    "description": "gre_ipaddr",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/gre_ipaddr",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "gre_ipaddr": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "gre_ipaddr",
+  "name": "gre_ipaddr",
+  "property": {
+    "description": "gre_ipaddr",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/gre_ipaddr",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "gre_ipaddr": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/install_script_version.json b/components/model-catalog/resource-dictionary/starter-dictionary/install_script_version.json
index 9d2009f..39bbb18 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/install_script_version.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/install_script_version.json
@@ -1,37 +1,37 @@
-{

-  "tags": "install_script_version",

-  "name": "install_script_version",

-  "property": {

-    "description": "install_script_version",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/install_script_version",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "install_script_version": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "install_script_version",
+  "name": "install_script_version",
+  "property": {
+    "description": "install_script_version",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/install_script_version",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "install_script_version": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/int_pktgen_private_net_id.json b/components/model-catalog/resource-dictionary/starter-dictionary/int_pktgen_private_net_id.json
index 05fd163..acde125 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/int_pktgen_private_net_id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/int_pktgen_private_net_id.json
@@ -1,37 +1,37 @@
-{

-  "tags": "int_pktgen_private_net_id",

-  "name": "int_pktgen_private_net_id",

-  "property": {

-    "description": "int_pktgen_private_net_id",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/int_pktgen_private_net_id",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "int_pktgen_private_net_id": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "int_pktgen_private_net_id",
+  "name": "int_pktgen_private_net_id",
+  "property": {
+    "description": "int_pktgen_private_net_id",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/int_pktgen_private_net_id",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "int_pktgen_private_net_id": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/int_pktgen_private_subnet_id.json b/components/model-catalog/resource-dictionary/starter-dictionary/int_pktgen_private_subnet_id.json
index 9021383..c30bef8 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/int_pktgen_private_subnet_id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/int_pktgen_private_subnet_id.json
@@ -1,37 +1,37 @@
-{

-  "tags": "int_pktgen_private_subnet_id",

-  "name": "int_pktgen_private_subnet_id",

-  "property": {

-    "description": "int_pktgen_private_subnet_id",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/int_pktgen_private_subnet_id",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "int_pktgen_private_subnet_id": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "int_pktgen_private_subnet_id",
+  "name": "int_pktgen_private_subnet_id",
+  "property": {
+    "description": "int_pktgen_private_subnet_id",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/int_pktgen_private_subnet_id",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "int_pktgen_private_subnet_id": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/int_private_net_id.json b/components/model-catalog/resource-dictionary/starter-dictionary/int_private_net_id.json
index 4588136..4aa07f3 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/int_private_net_id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/int_private_net_id.json
@@ -1,37 +1,37 @@
-{

-  "tags": "int_private_net_id",

-  "name": "int_private_net_id",

-  "property": {

-    "description": "int_private_net_id",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/int_private_net_id",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "int_private_net_id": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "int_private_net_id",
+  "name": "int_private_net_id",
+  "property": {
+    "description": "int_private_net_id",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/int_private_net_id",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "int_private_net_id": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/int_private_subnet_id.json b/components/model-catalog/resource-dictionary/starter-dictionary/int_private_subnet_id.json
index a57628f..d9e02b5 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/int_private_subnet_id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/int_private_subnet_id.json
@@ -1,37 +1,37 @@
-{

-  "tags": "int_private_subnet_id",

-  "name": "int_private_subnet_id",

-  "property": {

-    "description": "int_private_subnet_id",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/int_private_subnet_id",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "int_private_subnet_id": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "int_private_subnet_id",
+  "name": "int_private_subnet_id",
+  "property": {
+    "description": "int_private_subnet_id",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/int_private_subnet_id",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "int_private_subnet_id": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/keypair.json b/components/model-catalog/resource-dictionary/starter-dictionary/keypair.json
index 0db0b18..2b464a8 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/keypair.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/keypair.json
@@ -1,37 +1,37 @@
-{

-  "tags": "keypair",

-  "name": "keypair",

-  "property": {

-    "description": "keypair",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/keypair",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "keypair": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "keypair",
+  "name": "keypair",
+  "property": {
+    "description": "keypair",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/keypair",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "keypair": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/management-prefix-id.json b/components/model-catalog/resource-dictionary/starter-dictionary/management-prefix-id.json
index 06c4b60..279ca92 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/management-prefix-id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/management-prefix-id.json
@@ -1,49 +1,49 @@
-{

-  "tags": "management-prefix-id",

-  "name": "management-prefix-id",

-  "property": {

-    "description": "management-prefix-id",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/management-prefix-id",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "management-prefix-id": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "endpoint-selector": "dynamic-db-source",

-        "type": "SQL",

-        "query": "select sdnctl.IPAM_IP_POOL.prefix_id as prefix_id from sdnctl.IPAM_IP_POOL where description = \"management\"",

-        "input-key-mapping": {},

-        "output-key-mapping": {

-          "management-prefix-id": "prefix_id"

-        }

-      }

-    }

-  }

-}

+{
+  "tags": "management-prefix-id",
+  "name": "management-prefix-id",
+  "property": {
+    "description": "management-prefix-id",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/management-prefix-id",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "management-prefix-id": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "endpoint-selector": "dynamic-db-source",
+        "type": "SQL",
+        "query": "select sdnctl.IPAM_IP_POOL.prefix_id as prefix_id from sdnctl.IPAM_IP_POOL where description = \"management\"",
+        "input-key-mapping": {},
+        "output-key-mapping": {
+          "management-prefix-id": "prefix_id"
+        }
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/nb_api_version.json b/components/model-catalog/resource-dictionary/starter-dictionary/nb_api_version.json
index 7109acf..55784fe 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/nb_api_version.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/nb_api_version.json
@@ -1,37 +1,37 @@
-{

-  "tags": "nb_api_version",

-  "name": "nb_api_version",

-  "property": {

-    "description": "nb_api_version",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/nb_api_version",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "nb_api_version": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "nb_api_version",
+  "name": "nb_api_version",
+  "property": {
+    "description": "nb_api_version",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/nb_api_version",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "nb_api_version": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/nexus_artifact_repo.json b/components/model-catalog/resource-dictionary/starter-dictionary/nexus_artifact_repo.json
index a10ee1b..f1173e4 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/nexus_artifact_repo.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/nexus_artifact_repo.json
@@ -1,37 +1,37 @@
-{

-  "tags": "nexus_artifact_repo",

-  "name": "nexus_artifact_repo",

-  "property": {

-    "description": "nexus_artifact_repo",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/nexus_artifact_repo",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "nexus_artifact_repo": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "nexus_artifact_repo",
+  "name": "nexus_artifact_repo",
+  "property": {
+    "description": "nexus_artifact_repo",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/nexus_artifact_repo",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "nexus_artifact_repo": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/nfc-naming-code.json b/components/model-catalog/resource-dictionary/starter-dictionary/nfc-naming-code.json
index ba74e2d..55d8177 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/nfc-naming-code.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/nfc-naming-code.json
@@ -1,35 +1,35 @@
-{

-  "tags": "nfc-naming-code",

-  "name": "nfc-naming-code",

-  "property": {

-    "description": "nfc-naming-code",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "endpoint-selector": "dynamic-db-source",

-        "type": "SQL",

-        "query": "select nfc_naming_code as nfc_naming_code from sdnctl.VFC_MODEL where customization_uuid=:vfccustomizationuuid",

-        "input-key-mapping": {

-          "vfccustomizationuuid": "vfccustomizationuuid"

-        },

-        "output-key-mapping": {

-          "nfc-naming-code": "nfc_naming_code"

-        },

-        "key-dependencies": [

-          "vfccustomizationuuid"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "nfc-naming-code",
+  "name": "nfc-naming-code",
+  "property": {
+    "description": "nfc-naming-code",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "endpoint-selector": "dynamic-db-source",
+        "type": "SQL",
+        "query": "select nfc_naming_code as nfc_naming_code from sdnctl.VFC_MODEL where customization_uuid=:vfccustomizationuuid",
+        "input-key-mapping": {
+          "vfccustomizationuuid": "vfccustomizationuuid"
+        },
+        "output-key-mapping": {
+          "nfc-naming-code": "nfc_naming_code"
+        },
+        "key-dependencies": [
+          "vfccustomizationuuid"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/onap_private_net_cidr.json b/components/model-catalog/resource-dictionary/starter-dictionary/onap_private_net_cidr.json
index 2a791eb..83144eb 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/onap_private_net_cidr.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/onap_private_net_cidr.json
@@ -1,49 +1,49 @@
-{

-  "tags": "onap_private_net_cidr",

-  "name": "onap_private_net_cidr",

-  "property": {

-    "description": "onap_private_net_cidr",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/onap_private_net_cidr",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "onap_private_net_cidr": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "endpoint-selector": "dynamic-db-source",

-        "type": "SQL",

-        "query": "select sdnctl.IPAM_IP_POOL.prefix as prefix from sdnctl.IPAM_IP_POOL where description = \"management\"",

-        "input-key-mapping": {},

-        "output-key-mapping": {

-          "onap_private_net_cidr": "prefix"

-        }

-      }

-    }

-  }

-}

+{
+  "tags": "onap_private_net_cidr",
+  "name": "onap_private_net_cidr",
+  "property": {
+    "description": "onap_private_net_cidr",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/onap_private_net_cidr",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "onap_private_net_cidr": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "endpoint-selector": "dynamic-db-source",
+        "type": "SQL",
+        "query": "select sdnctl.IPAM_IP_POOL.prefix as prefix from sdnctl.IPAM_IP_POOL where description = \"management\"",
+        "input-key-mapping": {},
+        "output-key-mapping": {
+          "onap_private_net_cidr": "prefix"
+        }
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/onap_private_net_id.json b/components/model-catalog/resource-dictionary/starter-dictionary/onap_private_net_id.json
index 73cbd8d..f2bcb9a 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/onap_private_net_id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/onap_private_net_id.json
@@ -1,38 +1,38 @@
-{

-      "tags": "onap_private_net_id",

-      "name": "onap_private_net_id",

-      "property": {

-        "description": "onap_private_net_id",

-        "type": "string"

-      },

-      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-      "sources": {

-        "input": {

-          "type": "source-input"

-        },

-        "default": {

-          "type": "source-default",

-          "properties": {}

-        },

-        "sdnc": {

-          "type": "source-rest",

-          "properties": {

-            "type": "JSON",

-            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/onap_private_net_id",

-            "path": "/param/0/value",

-            "input-key-mapping": {

-              "service-instance-id": "service-instance-id",

-              "vnf-id": "vnf-id"

-            },

-            "output-key-mapping": {

-              "onap_private_net_id": "value"

-            },

-            "key-dependencies": [

-              "service-instance-id",

-              "vnf-id"

-            ]

-          }

-        }

-      }

-    

-  }

+{
+      "tags": "onap_private_net_id",
+      "name": "onap_private_net_id",
+      "property": {
+        "description": "onap_private_net_id",
+        "type": "string"
+      },
+      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+      "sources": {
+        "input": {
+          "type": "source-input"
+        },
+        "default": {
+          "type": "source-default",
+          "properties": {}
+        },
+        "sdnc": {
+          "type": "source-rest",
+          "properties": {
+            "type": "JSON",
+            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/onap_private_net_id",
+            "path": "/param/0/value",
+            "input-key-mapping": {
+              "service-instance-id": "service-instance-id",
+              "vnf-id": "vnf-id"
+            },
+            "output-key-mapping": {
+              "onap_private_net_id": "value"
+            },
+            "key-dependencies": [
+              "service-instance-id",
+              "vnf-id"
+            ]
+          }
+        }
+      }
+    
+  }
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/onap_private_subnet_id.json b/components/model-catalog/resource-dictionary/starter-dictionary/onap_private_subnet_id.json
index 542171b..0348993 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/onap_private_subnet_id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/onap_private_subnet_id.json
@@ -1,37 +1,37 @@
-{

-  "tags": "onap_private_subnet_id",

-  "name": "onap_private_subnet_id",

-  "property": {

-    "description": "onap_private_subnet_id",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/onap_private_subnet_id",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "onap_private_subnet_id": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "onap_private_subnet_id",
+  "name": "onap_private_subnet_id",
+  "property": {
+    "description": "onap_private_subnet_id",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/onap_private_subnet_id",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "onap_private_subnet_id": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/pg_int.json b/components/model-catalog/resource-dictionary/starter-dictionary/pg_int.json
index 8bb0a05..2747b68 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/pg_int.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/pg_int.json
@@ -1,37 +1,37 @@
-{

-  "tags": "pg_int",

-  "name": "pg_int",

-  "property": {

-    "description": "pg_int",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/pg_int",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "pg_int": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "pg_int",
+  "name": "pg_int",
+  "property": {
+    "description": "pg_int",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/pg_int",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "pg_int": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/pktgen_private_net_cidr.json b/components/model-catalog/resource-dictionary/starter-dictionary/pktgen_private_net_cidr.json
index edb05cb..dc86efa 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/pktgen_private_net_cidr.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/pktgen_private_net_cidr.json
@@ -1,50 +1,50 @@
- {

-      "tags": "pktgen_private_net_cidr",

-      "name": "pktgen_private_net_cidr",

-      "property": {

-        "description": "pktgen_private_net_cidr",

-        "type": "string"

-      },

-      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-      "sources": {

-        "input": {

-          "type": "source-input"

-        },

-        "default": {

-          "type": "source-default",

-          "properties": {}

-        },

-        "sdnc": {

-          "type": "source-rest",

-          "properties": {

-            "type": "JSON",

-            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/pktgen_private_net_cidr",

-            "path": "/param/0/value",

-            "input-key-mapping": {

-              "service-instance-id": "service-instance-id",

-              "vnf-id": "vnf-id"

-            },

-            "output-key-mapping": {

-              "pktgen_private_net_cidr": "value"

-            },

-            "key-dependencies": [

-              "service-instance-id",

-              "vnf-id"

-            ]

-          }

-        },

-      

-      "processor-db": {

-        "type": "source-db",

-        "properties": {

-          "endpoint-selector": "dynamic-db-source",

-          "type": "SQL",

-          "query": "select sdnctl.IPAM_IP_POOL.prefix as prefix from sdnctl.IPAM_IP_POOL where description = \"private2\"",

-          "input-key-mapping": {},

-          "output-key-mapping": {

-            "onap_private_net_cidr": "prefix"

-          }

-        }

-      }

-    }

-  }

+ {
+      "tags": "pktgen_private_net_cidr",
+      "name": "pktgen_private_net_cidr",
+      "property": {
+        "description": "pktgen_private_net_cidr",
+        "type": "string"
+      },
+      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+      "sources": {
+        "input": {
+          "type": "source-input"
+        },
+        "default": {
+          "type": "source-default",
+          "properties": {}
+        },
+        "sdnc": {
+          "type": "source-rest",
+          "properties": {
+            "type": "JSON",
+            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/pktgen_private_net_cidr",
+            "path": "/param/0/value",
+            "input-key-mapping": {
+              "service-instance-id": "service-instance-id",
+              "vnf-id": "vnf-id"
+            },
+            "output-key-mapping": {
+              "pktgen_private_net_cidr": "value"
+            },
+            "key-dependencies": [
+              "service-instance-id",
+              "vnf-id"
+            ]
+          }
+        },
+      
+      "processor-db": {
+        "type": "source-db",
+        "properties": {
+          "endpoint-selector": "dynamic-db-source",
+          "type": "SQL",
+          "query": "select sdnctl.IPAM_IP_POOL.prefix as prefix from sdnctl.IPAM_IP_POOL where description = \"private2\"",
+          "input-key-mapping": {},
+          "output-key-mapping": {
+            "onap_private_net_cidr": "prefix"
+          }
+        }
+      }
+    }
+  }
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/pktgen_private_net_id.json b/components/model-catalog/resource-dictionary/starter-dictionary/pktgen_private_net_id.json
index c8d7b8a..9c8c610 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/pktgen_private_net_id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/pktgen_private_net_id.json
@@ -1,37 +1,37 @@
-  {

-      "tags": "pktgen_private_net_id",

-      "name": "pktgen_private_net_id",

-      "property": {

-        "description": "pktgen_private_net_id",

-        "type": "string"

-      },

-      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-      "sources": {

-        "input": {

-          "type": "source-input"

-        },

-        "default": {

-          "type": "source-default",

-          "properties": {}

-        },

-        "sdnc": {

-          "type": "source-rest",

-          "properties": {

-            "type": "JSON",

-            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/pktgen_private_net_id",

-            "path": "/param/0/value",

-            "input-key-mapping": {

-              "service-instance-id": "service-instance-id",

-              "vnf-id": "vnf-id"

-            },

-            "output-key-mapping": {

-              "pktgen_private_net_id": "value"

-            },

-            "key-dependencies": [

-              "service-instance-id",

-              "vnf-id"

-            ]

-          }

-        }

-      }

-    }

+  {
+      "tags": "pktgen_private_net_id",
+      "name": "pktgen_private_net_id",
+      "property": {
+        "description": "pktgen_private_net_id",
+        "type": "string"
+      },
+      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+      "sources": {
+        "input": {
+          "type": "source-input"
+        },
+        "default": {
+          "type": "source-default",
+          "properties": {}
+        },
+        "sdnc": {
+          "type": "source-rest",
+          "properties": {
+            "type": "JSON",
+            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/pktgen_private_net_id",
+            "path": "/param/0/value",
+            "input-key-mapping": {
+              "service-instance-id": "service-instance-id",
+              "vnf-id": "vnf-id"
+            },
+            "output-key-mapping": {
+              "pktgen_private_net_id": "value"
+            },
+            "key-dependencies": [
+              "service-instance-id",
+              "vnf-id"
+            ]
+          }
+        }
+      }
+    }
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/private-prefix-id.json b/components/model-catalog/resource-dictionary/starter-dictionary/private-prefix-id.json
index de90ab9..c68cf34 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/private-prefix-id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/private-prefix-id.json
@@ -1,30 +1,30 @@
-{

-  "tags": "private-prefix-id",

-  "name": "private-prefix-id",

-  "property": {

-    "description": "private-prefix-id",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "endpoint-selector": "dynamic-db-source",

-        "type": "SQL",

-        "query": "select sdnctl.IPAM_IP_POOL.prefix_id as prefix_id from sdnctl.IPAM_IP_POOL where description = \"private\"",

-        "input-key-mapping": {},

-        "output-key-mapping": {

-          "private-prefix-id": "prefix_id"

-        }

-      }

-    }

-  }

-}

+{
+  "tags": "private-prefix-id",
+  "name": "private-prefix-id",
+  "property": {
+    "description": "private-prefix-id",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "endpoint-selector": "dynamic-db-source",
+        "type": "SQL",
+        "query": "select sdnctl.IPAM_IP_POOL.prefix_id as prefix_id from sdnctl.IPAM_IP_POOL where description = \"private\"",
+        "input-key-mapping": {},
+        "output-key-mapping": {
+          "private-prefix-id": "prefix_id"
+        }
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/private1-prefix-id.json b/components/model-catalog/resource-dictionary/starter-dictionary/private1-prefix-id.json
index 2b5d545..53f43a8 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/private1-prefix-id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/private1-prefix-id.json
@@ -1,49 +1,49 @@
-{

-  "tags": "private1-prefix-id",

-  "name": "private1-prefix-id",

-  "property": {

-    "description": "private1-prefix-id",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/private1-prefix-id",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "private1-prefix-id": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "endpoint-selector": "dynamic-db-source",

-        "type": "SQL",

-        "query": "select sdnctl.IPAM_IP_POOL.prefix_id as prefix_id from sdnctl.IPAM_IP_POOL where description = \"private1\"",

-        "input-key-mapping": {},

-        "output-key-mapping": {

-          "private1-prefix-id": "prefix_id"

-        }

-      }

-    }

-  }

-}

+{
+  "tags": "private1-prefix-id",
+  "name": "private1-prefix-id",
+  "property": {
+    "description": "private1-prefix-id",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/private1-prefix-id",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "private1-prefix-id": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "endpoint-selector": "dynamic-db-source",
+        "type": "SQL",
+        "query": "select sdnctl.IPAM_IP_POOL.prefix_id as prefix_id from sdnctl.IPAM_IP_POOL where description = \"private1\"",
+        "input-key-mapping": {},
+        "output-key-mapping": {
+          "private1-prefix-id": "prefix_id"
+        }
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/private2-prefix-id.json b/components/model-catalog/resource-dictionary/starter-dictionary/private2-prefix-id.json
index 4e3b0f4..8498dd3 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/private2-prefix-id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/private2-prefix-id.json
@@ -1,49 +1,49 @@
-{

-  "tags": "private2-prefix-id",

-  "name": "private2-prefix-id",

-  "property": {

-    "description": "private2-prefix-id",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/private2-prefix-id",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "private2-prefix-id": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "endpoint-selector": "dynamic-db-source",

-        "type": "SQL",

-        "query": "select sdnctl.IPAM_IP_POOL.prefix_id as prefix_id from sdnctl.IPAM_IP_POOL where description = \"private2\"",

-        "input-key-mapping": {},

-        "output-key-mapping": {

-          "private2-prefix-id": "prefix_id"

-        }

-      }

-    }

-  }

-}

+{
+  "tags": "private2-prefix-id",
+  "name": "private2-prefix-id",
+  "property": {
+    "description": "private2-prefix-id",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/private2-prefix-id",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "private2-prefix-id": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "endpoint-selector": "dynamic-db-source",
+        "type": "SQL",
+        "query": "select sdnctl.IPAM_IP_POOL.prefix_id as prefix_id from sdnctl.IPAM_IP_POOL where description = \"private2\"",
+        "input-key-mapping": {},
+        "output-key-mapping": {
+          "private2-prefix-id": "prefix_id"
+        }
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/properties-capability-source.json b/components/model-catalog/resource-dictionary/starter-dictionary/properties-capability-source.json
index 950c4a2..9136c6e 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/properties-capability-source.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/properties-capability-source.json
@@ -1,26 +1,26 @@
-{

-  "name": "properties-capability-source",

-  "updated-by": "Steve Alphonse Siani, alphonse.steve.siani.djissitchi@ibm.com",

-  "tags": "properties-capability-source",

-  "property" :{

-    "description": "Data dictionary used to read properties.",

-    "type": "string"

-  },

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "capability": {

-      "type": "source-capability",

-      "properties" : {

-        "script-type" : "jython",

-        "script-class-reference" : "Scripts/python/ResolvProperties.py",

-        "instance-dependencies" : []

-      }

-    }

-  }

+{
+  "name": "properties-capability-source",
+  "updated-by": "Steve Alphonse Siani, alphonse.steve.siani.djissitchi@ibm.com",
+  "tags": "properties-capability-source",
+  "property" :{
+    "description": "Data dictionary used to read properties.",
+    "type": "string"
+  },
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "capability": {
+      "type": "source-capability",
+      "properties" : {
+        "script-type" : "jython",
+        "script-class-reference" : "Scripts/python/ResolvProperties.py",
+        "instance-dependencies" : []
+      }
+    }
+  }
 }
\ No newline at end of file
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/pub_key.json b/components/model-catalog/resource-dictionary/starter-dictionary/pub_key.json
index ea882a7..b7c1da7 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/pub_key.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/pub_key.json
@@ -1,37 +1,37 @@
-{

-  "tags": "pub_key",

-  "name": "pub_key",

-  "property": {

-    "description": "pub_key",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/pub_key",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "pub_key": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "pub_key",
+  "name": "pub_key",
+  "property": {
+    "description": "pub_key",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/pub_key",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "pub_key": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/public_net_id.json b/components/model-catalog/resource-dictionary/starter-dictionary/public_net_id.json
index 0c8a927..34c3767 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/public_net_id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/public_net_id.json
@@ -1,38 +1,38 @@
-  {

-      "tags": "public_net_id",

-      "name": "public_net_id",

-      "property": {

-        "description": "public_net_id",

-        "type": "string"

-      },

-      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-      "sources": {

-        "input": {

-          "type": "source-input"

-        },

-        "default": {

-          "type": "source-default",

-          "properties": {}

-        },

-        "sdnc": {

-          "type": "source-rest",

-          "properties": {

-            "type": "JSON",

-            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/public_net_id",

-            "path": "/param/0/value",

-            "input-key-mapping": {

-              "service-instance-id": "service-instance-id",

-              "vnf-id": "vnf-id"

-            },

-            "output-key-mapping": {

-              "public_net_id": "value"

-            },

-            "key-dependencies": [

-              "service-instance-id",

-              "vnf-id"

-            ]

-          }

-        }

-      }

-    

-  }

+  {
+      "tags": "public_net_id",
+      "name": "public_net_id",
+      "property": {
+        "description": "public_net_id",
+        "type": "string"
+      },
+      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+      "sources": {
+        "input": {
+          "type": "source-input"
+        },
+        "default": {
+          "type": "source-default",
+          "properties": {}
+        },
+        "sdnc": {
+          "type": "source-rest",
+          "properties": {
+            "type": "JSON",
+            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/public_net_id",
+            "path": "/param/0/value",
+            "input-key-mapping": {
+              "service-instance-id": "service-instance-id",
+              "vnf-id": "vnf-id"
+            },
+            "output-key-mapping": {
+              "public_net_id": "value"
+            },
+            "key-dependencies": [
+              "service-instance-id",
+              "vnf-id"
+            ]
+          }
+        }
+      }
+    
+  }
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/sample-default-source.json b/components/model-catalog/resource-dictionary/starter-dictionary/sample-default-source.json
index 395b0dd..1db3752 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/sample-default-source.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/sample-default-source.json
@@ -1,16 +1,16 @@
-{

-  "tags": "sample-default-source",

-  "name": "sample-default-source",

-  "property" :{

-    "description": "name of the ",

-    "type": "string"

-  },

-  "updated-by": "brindasanth@onap.com",

-  "sources": {

-    "default": {

-      "type": "source-default",

-      "properties": {

-      }

-    }

-  }

+{
+  "tags": "sample-default-source",
+  "name": "sample-default-source",
+  "property" :{
+    "description": "name of the ",
+    "type": "string"
+  },
+  "updated-by": "brindasanth@onap.com",
+  "sources": {
+    "default": {
+      "type": "source-default",
+      "properties": {
+      }
+    }
+  }
 }
\ No newline at end of file
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/sample-input-source.json b/components/model-catalog/resource-dictionary/starter-dictionary/sample-input-source.json
index 73c0d40..2483b43 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/sample-input-source.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/sample-input-source.json
@@ -1,17 +1,17 @@
-{

-	"name": "sample-input-source",

-	"property" :{

-		"description": "name of the ",

-		"type": "string"

-	},

-	"updated-by": "brindasanth@onap.com",

-	"tags": "sample-input-source",

-	"sources": {

-		"input": {

-			"type": "source-input",

-			"properties": {

-				"key": "input-source"

-			}

-		}

-	}

+{
+	"name": "sample-input-source",
+	"property" :{
+		"description": "name of the ",
+		"type": "string"
+	},
+	"updated-by": "brindasanth@onap.com",
+	"tags": "sample-input-source",
+	"sources": {
+		"input": {
+			"type": "source-input",
+			"properties": {
+				"key": "input-source"
+			}
+		}
+	}
 }
\ No newline at end of file
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/sample-licenses.json b/components/model-catalog/resource-dictionary/starter-dictionary/sample-licenses.json
index 03e4094..7df21d5 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/sample-licenses.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/sample-licenses.json
@@ -1,29 +1,29 @@
-{

-  "tags": "sample-licenses",

-  "name": "sample-licenses",

-  "property": {

-    "description" : " Sample Data for licences",

-    "required": true,

-    "type": "list",

-    "entry_schema": {

-      "type": "dt-license-key"

-    }

-  },

-  "updated-by": "brindasanth@onap.com",

-  "sources": {

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/L3VNF-API:services/service-list/",

-        "path": "/licenses",

-        "input-key-mapping": {

-        },

-        "output-key-mapping": {

-          "licenses": "licenses"

-        },

-        "key-dependencies": []

-      }

-    }

-  }

-}

+{
+  "tags": "sample-licenses",
+  "name": "sample-licenses",
+  "property": {
+    "description" : " Sample Data for licences",
+    "required": true,
+    "type": "list",
+    "entry_schema": {
+      "type": "dt-license-key"
+    }
+  },
+  "updated-by": "brindasanth@onap.com",
+  "sources": {
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/L3VNF-API:services/service-list/",
+        "path": "/licenses",
+        "input-key-mapping": {
+        },
+        "output-key-mapping": {
+          "licenses": "licenses"
+        },
+        "key-dependencies": []
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/sample-mdsal-source.json b/components/model-catalog/resource-dictionary/starter-dictionary/sample-mdsal-source.json
index a6cec54..8cb4b81 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/sample-mdsal-source.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/sample-mdsal-source.json
@@ -1,25 +1,25 @@
-{

-  "tags": "sample-mdsal-source",

-  "name": "sample-mdsal-source",

-  "property": {

-    "description": "Sample sample-mdsal-source",

-    "type": "string"

-  },

-  "updated-by": "brindasanth@onap.com",

-  "sources": {

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/L3VNF-API:services/service-list/$service-instance-id/service-data/vnf-topology-information/vnf-assignments/vnf-vms/$vm-type/vm-networks/$network-role/v4-assigned-ip-list/$v4-ip-type",

-        "path": "/v4-assigned-ip-list/0/v4-ip-prefix",

-        "input-key-mapping": {

-        },

-        "output-key-mapping": {

-          "mdsal-source": "v4-ip-prefix"

-        },

-        "key-dependencies": []

-      }

-    }

-  }

-}

+{
+  "tags": "sample-mdsal-source",
+  "name": "sample-mdsal-source",
+  "property": {
+    "description": "Sample sample-mdsal-source",
+    "type": "string"
+  },
+  "updated-by": "brindasanth@onap.com",
+  "sources": {
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/L3VNF-API:services/service-list/$service-instance-id/service-data/vnf-topology-information/vnf-assignments/vnf-vms/$vm-type/vm-networks/$network-role/v4-assigned-ip-list/$v4-ip-type",
+        "path": "/v4-assigned-ip-list/0/v4-ip-prefix",
+        "input-key-mapping": {
+        },
+        "output-key-mapping": {
+          "mdsal-source": "v4-ip-prefix"
+        },
+        "key-dependencies": []
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/sample-v4-ip-type.json b/components/model-catalog/resource-dictionary/starter-dictionary/sample-v4-ip-type.json
index 055279c..fcca3af 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/sample-v4-ip-type.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/sample-v4-ip-type.json
@@ -1,17 +1,17 @@
-{

-  "name": "sample-v4-ip-type",

-  "property": {

-    "description": "sample-v4-ip-type",

-    "type": "string"

-  },

-  "updated-by": "brindasanth@onap.com",

-  "tags": "sample-v4-ip-type",

-  "sources": {

-    "input": {

-      "type": "source-input",

-      "properties": {

-        "key": "sample-v4-ip-type"

-      }

-    }

-  }

+{
+  "name": "sample-v4-ip-type",
+  "property": {
+    "description": "sample-v4-ip-type",
+    "type": "string"
+  },
+  "updated-by": "brindasanth@onap.com",
+  "tags": "sample-v4-ip-type",
+  "sources": {
+    "input": {
+      "type": "source-input",
+      "properties": {
+        "key": "sample-v4-ip-type"
+      }
+    }
+  }
 }
\ No newline at end of file
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/sec_group.json b/components/model-catalog/resource-dictionary/starter-dictionary/sec_group.json
index 3b8d16b..0dca859 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/sec_group.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/sec_group.json
@@ -1,38 +1,38 @@
-  {

-      "tags": "sec_group",

-      "name": "sec_group",

-      "property": {

-        "description": "sec_group",

-        "type": "string"

-      },

-      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-      "sources": {

-        "input": {

-          "type": "source-input"

-        },

-        "default": {

-          "type": "source-default",

-          "properties": {}

-        },

-        "sdnc": {

-          "type": "source-rest",

-          "properties": {

-            "type": "JSON",

-            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/sec_group",

-            "path": "/param/0/value",

-            "input-key-mapping": {

-              "service-instance-id": "service-instance-id",

-              "vnf-id": "vnf-id"

-            },

-            "output-key-mapping": {

-              "sec_group": "value"

-            },

-            "key-dependencies": [

-              "service-instance-id",

-              "vnf-id"

-            ]

-          }

-        }

-      }

-    

-  }

+  {
+      "tags": "sec_group",
+      "name": "sec_group",
+      "property": {
+        "description": "sec_group",
+        "type": "string"
+      },
+      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+      "sources": {
+        "input": {
+          "type": "source-input"
+        },
+        "default": {
+          "type": "source-default",
+          "properties": {}
+        },
+        "sdnc": {
+          "type": "source-rest",
+          "properties": {
+            "type": "JSON",
+            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/sec_group",
+            "path": "/param/0/value",
+            "input-key-mapping": {
+              "service-instance-id": "service-instance-id",
+              "vnf-id": "vnf-id"
+            },
+            "output-key-mapping": {
+              "sec_group": "value"
+            },
+            "key-dependencies": [
+              "service-instance-id",
+              "vnf-id"
+            ]
+          }
+        }
+      }
+    
+  }
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/service-instance-id.json b/components/model-catalog/resource-dictionary/starter-dictionary/service-instance-id.json
index f78771a..4b1f4f3 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/service-instance-id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/service-instance-id.json
@@ -14,7 +14,7 @@
     "any-db": {
       "type": "source-db",
       "properties": {
-        "query": "SELECT artifact_name FROM BLUEPRINT_RUNTIME where artifact_version=\"1.0.0\"",
+        "query": "SELECT artifact_name FROM BLUEPRINT_MODEL where artifact_version=\"1.0.0\"",
         "input-key-mapping": {
         },
         "output-key-mapping": {
@@ -25,7 +25,7 @@
     "processor-db": {
       "type": "source-db",
       "properties": {
-        "query": "SELECT artifact_name FROM BLUEPRINT_RUNTIME where artifact_version=\"1.0.0\"",
+        "query": "SELECT artifact_name FROM BLUEPRINT_MODEL where artifact_version=\"1.0.0\"",
         "input-key-mapping": {
         },
         "output-key-mapping": {
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vdns_flavor_name.json b/components/model-catalog/resource-dictionary/starter-dictionary/vdns_flavor_name.json
index 0fdd79a..445bc47 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vdns_flavor_name.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vdns_flavor_name.json
@@ -1,39 +1,39 @@
-  {

-  

-      "tags": "vdns_flavor_name",

-      "name": "vdns_flavor_name",

-      "property": {

-        "description": "vdns_flavor_name",

-        "type": "string"

-      },

-      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-      "sources": {

-        "input": {

-          "type": "source-input"

-        },

-        "default": {

-          "type": "source-default",

-          "properties": {}

-        },

-        "sdnc": {

-          "type": "source-rest",

-          "properties": {

-            "type": "JSON",

-            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vdns_flavor_name",

-            "path": "/param/0/value",

-            "input-key-mapping": {

-              "service-instance-id": "service-instance-id",

-              "vnf-id": "vnf-id"

-            },

-            "output-key-mapping": {

-              "vdns_flavor_name": "value"

-            },

-            "key-dependencies": [

-              "service-instance-id",

-              "vnf-id"

-            ]

-          }

-        }

-      }

-    

-  }

+  {
+  
+      "tags": "vdns_flavor_name",
+      "name": "vdns_flavor_name",
+      "property": {
+        "description": "vdns_flavor_name",
+        "type": "string"
+      },
+      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+      "sources": {
+        "input": {
+          "type": "source-input"
+        },
+        "default": {
+          "type": "source-default",
+          "properties": {}
+        },
+        "sdnc": {
+          "type": "source-rest",
+          "properties": {
+            "type": "JSON",
+            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vdns_flavor_name",
+            "path": "/param/0/value",
+            "input-key-mapping": {
+              "service-instance-id": "service-instance-id",
+              "vnf-id": "vnf-id"
+            },
+            "output-key-mapping": {
+              "vdns_flavor_name": "value"
+            },
+            "key-dependencies": [
+              "service-instance-id",
+              "vnf-id"
+            ]
+          }
+        }
+      }
+    
+  }
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vdns_image_name.json b/components/model-catalog/resource-dictionary/starter-dictionary/vdns_image_name.json
index f5a1408..d1d9d06 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vdns_image_name.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vdns_image_name.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vdns_image_name",

-  "name": "vdns_image_name",

-  "property": {

-    "description": "vdns_image_name",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vdns_image_name",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vdns_image_name": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vdns_image_name",
+  "name": "vdns_image_name",
+  "property": {
+    "description": "vdns_image_name",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vdns_image_name",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vdns_image_name": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vdns_int_private_ip_0.json b/components/model-catalog/resource-dictionary/starter-dictionary/vdns_int_private_ip_0.json
index 3472e9f..902cd27 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vdns_int_private_ip_0.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vdns_int_private_ip_0.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vdns_int_private_ip_0",

-  "name": "vdns_int_private_ip_0",

-  "property": {

-    "description": "vdns_int_private_ip_0",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vdns_int_private_ip_0",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vdns_int_private_ip_0": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vdns_int_private_ip_0",
+  "name": "vdns_int_private_ip_0",
+  "property": {
+    "description": "vdns_int_private_ip_0",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vdns_int_private_ip_0",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vdns_int_private_ip_0": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vdns_name_0.json b/components/model-catalog/resource-dictionary/starter-dictionary/vdns_name_0.json
index 6af52a6..efc7418 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vdns_name_0.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vdns_name_0.json
@@ -1,38 +1,38 @@
- {

-      "tags": "vdns_name_0",

-      "name": "vdns_name_0",

-      "property": {

-        "description": "vdns_name_0",

-        "type": "string"

-      },

-      "updated-by": "Singal, Kapil <ks220y@att.com>",

-      "sources": {

-        "input": {

-          "type": "source-input"

-        },

-        "default": {

-          "type": "source-default",

-          "properties": {}

-        },

-        "sdnc": {

-          "type": "source-rest",

-          "properties": {

-            "type": "JSON",

-            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vdns_name_0",

-            "path": "/param/0/value",

-            "input-key-mapping": {

-              "service-instance-id": "service-instance-id",

-              "vnf-id": "vnf-id"

-            },

-            "output-key-mapping": {

-              "vdns_name_0": "value"

-            },

-            "key-dependencies": [

-              "service-instance-id",

-              "vnf-id"

-            ]

-          }

-        }

-      }

-    

-  }

+ {
+      "tags": "vdns_name_0",
+      "name": "vdns_name_0",
+      "property": {
+        "description": "vdns_name_0",
+        "type": "string"
+      },
+      "updated-by": "Singal, Kapil <ks220y@att.com>",
+      "sources": {
+        "input": {
+          "type": "source-input"
+        },
+        "default": {
+          "type": "source-default",
+          "properties": {}
+        },
+        "sdnc": {
+          "type": "source-rest",
+          "properties": {
+            "type": "JSON",
+            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vdns_name_0",
+            "path": "/param/0/value",
+            "input-key-mapping": {
+              "service-instance-id": "service-instance-id",
+              "vnf-id": "vnf-id"
+            },
+            "output-key-mapping": {
+              "vdns_name_0": "value"
+            },
+            "key-dependencies": [
+              "service-instance-id",
+              "vnf-id"
+            ]
+          }
+        }
+      }
+    
+  }
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vdns_onap_private_ip_0.json b/components/model-catalog/resource-dictionary/starter-dictionary/vdns_onap_private_ip_0.json
index 5c5d3e0..d6f1e37 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vdns_onap_private_ip_0.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vdns_onap_private_ip_0.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vdns_onap_private_ip_0",

-  "name": "vdns_onap_private_ip_0",

-  "property": {

-    "description": "vdns_onap_private_ip_0",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vdns_onap_private_ip_0",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vdns_onap_private_ip_0": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vdns_onap_private_ip_0",
+  "name": "vdns_onap_private_ip_0",
+  "property": {
+    "description": "vdns_onap_private_ip_0",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vdns_onap_private_ip_0",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vdns_onap_private_ip_0": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vf-module-label.json b/components/model-catalog/resource-dictionary/starter-dictionary/vf-module-label.json
index 6f268ab..55526b1 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vf-module-label.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vf-module-label.json
@@ -1,34 +1,34 @@
-{

-  "tags": "vf-module-label",

-  "name": "vf-module-label",

-  "property": {

-    "description": "vf-module-label",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "type": "SQL",

-        "query": "select sdnctl.VF_MODULE_MODEL.vf_module_label as vf_module_label from sdnctl.VF_MODULE_MODEL where sdnctl.VF_MODULE_MODEL.customization_uuid=:customizationid",

-        "input-key-mapping": {

-          "customizationid": "vf-module-model-customization-uuid"

-        },

-        "output-key-mapping": {

-          "vf-module-label": "vf_module_label"

-        },

-        "key-dependencies": [

-          "vf-module-model-customization-uuid"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vf-module-label",
+  "name": "vf-module-label",
+  "property": {
+    "description": "vf-module-label",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "type": "SQL",
+        "query": "select sdnctl.VF_MODULE_MODEL.vf_module_label as vf_module_label from sdnctl.VF_MODULE_MODEL where sdnctl.VF_MODULE_MODEL.customization_uuid=:customizationid",
+        "input-key-mapping": {
+          "customizationid": "vf-module-model-customization-uuid"
+        },
+        "output-key-mapping": {
+          "vf-module-label": "vf_module_label"
+        },
+        "key-dependencies": [
+          "vf-module-model-customization-uuid"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vf-module-model-customization-uuid.json b/components/model-catalog/resource-dictionary/starter-dictionary/vf-module-model-customization-uuid.json
index 25760c8..232d658 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vf-module-model-customization-uuid.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vf-module-model-customization-uuid.json
@@ -1,18 +1,18 @@
-{

-  "tags": "vf-module-model-customization-uuid",

-  "name": "vf-module-model-customization-uuid",

-  "property": {

-    "description": "vf-module-model-customization-uuid",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    }

-  }

+{
+  "tags": "vf-module-model-customization-uuid",
+  "name": "vf-module-model-customization-uuid",
+  "property": {
+    "description": "vf-module-model-customization-uuid",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    }
+  }
 }
\ No newline at end of file
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vf-module-type.json b/components/model-catalog/resource-dictionary/starter-dictionary/vf-module-type.json
index 1e95963..dcef027 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vf-module-type.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vf-module-type.json
@@ -1,34 +1,34 @@
-{

-  "tags": "vf-module-type",

-  "name": "vf-module-type",

-  "property": {

-    "description": "vf-module-type",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "type": "SQL",

-        "query": "select vf_module_type as vf_module_type from sdnctl.VF_MODULE_MODEL where customization_uuid=:customizationid",

-        "input-key-mapping": {

-          "customizationid": "vf-module-model-customization-uuid"

-        },

-        "output-key-mapping": {

-          "vf-module-type": "vf_module_type"

-        },

-        "key-dependencies": [

-          "vf-module-model-customization-uuid"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vf-module-type",
+  "name": "vf-module-type",
+  "property": {
+    "description": "vf-module-type",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "type": "SQL",
+        "query": "select vf_module_type as vf_module_type from sdnctl.VF_MODULE_MODEL where customization_uuid=:customizationid",
+        "input-key-mapping": {
+          "customizationid": "vf-module-model-customization-uuid"
+        },
+        "output-key-mapping": {
+          "vf-module-type": "vf_module_type"
+        },
+        "key-dependencies": [
+          "vf-module-model-customization-uuid"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vf_module_id.json b/components/model-catalog/resource-dictionary/starter-dictionary/vf_module_id.json
index d78ba55..ff0c597 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vf_module_id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vf_module_id.json
@@ -1,19 +1,19 @@
-  {

-      "tags": "vf_module_id",

-      "name": "vf_module_id",

-      "property": {

-        "description": "vf_module_id",

-        "type": "string"

-      },

-      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-      "sources": {

-        "input": {

-          "type": "source-input"

-        },

-        "default": {

-          "type": "source-default",

-          "properties": {}

-        }

-      }

-    

+  {
+      "tags": "vf_module_id",
+      "name": "vf_module_id",
+      "property": {
+        "description": "vf_module_id",
+        "type": "string"
+      },
+      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+      "sources": {
+        "input": {
+          "type": "source-input"
+        },
+        "default": {
+          "type": "source-default",
+          "properties": {}
+        }
+      }
+    
   }
\ No newline at end of file
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vfccustomizationuuid.json b/components/model-catalog/resource-dictionary/starter-dictionary/vfccustomizationuuid.json
index 8cf1838..bd8f5e1 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vfccustomizationuuid.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vfccustomizationuuid.json
@@ -1,35 +1,35 @@
-{

-  "tags": "vfccustomizationuuid",

-  "name": "vfccustomizationuuid",

-  "property": {

-    "description": "vfccustomizationuuid",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "endpoint-selector": "dynamic-db-source",

-        "type": "SQL",

-        "query": "select sdnctl.VF_MODULE_TO_VFC_MAPPING.vfc_customization_uuid as vnf_customid from sdnctl.VF_MODULE_TO_VFC_MAPPING where vm_count = 1 and sdnctl.VF_MODULE_TO_VFC_MAPPING.vf_module_customization_uuid=:vfmodulecustomizationuuid",

-        "input-key-mapping": {

-          "vfmodulecustomizationuuid": "vf-module-model-customization-uuid"

-        },

-        "output-key-mapping": {

-          "vfccustomizationuuid": "vnf_customid"

-        },

-        "key-dependencies": [

-          "vf-module-model-customization-uuid"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vfccustomizationuuid",
+  "name": "vfccustomizationuuid",
+  "property": {
+    "description": "vfccustomizationuuid",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "endpoint-selector": "dynamic-db-source",
+        "type": "SQL",
+        "query": "select sdnctl.VF_MODULE_TO_VFC_MAPPING.vfc_customization_uuid as vnf_customid from sdnctl.VF_MODULE_TO_VFC_MAPPING where vm_count = 1 and sdnctl.VF_MODULE_TO_VFC_MAPPING.vf_module_customization_uuid=:vfmodulecustomizationuuid",
+        "input-key-mapping": {
+          "vfmodulecustomizationuuid": "vf-module-model-customization-uuid"
+        },
+        "output-key-mapping": {
+          "vfccustomizationuuid": "vnf_customid"
+        },
+        "key-dependencies": [
+          "vf-module-model-customization-uuid"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vip.json b/components/model-catalog/resource-dictionary/starter-dictionary/vip.json
index dd0ae7d..289ab19 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vip.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vip.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vip",

-  "name": "vip",

-  "property": {

-    "description": "vip",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vip",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vip": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vip",
+  "name": "vip",
+  "property": {
+    "description": "vip",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vip",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vip": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_0_int_pktgen_private_port_0_mac.json b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_0_int_pktgen_private_port_0_mac.json
index 9bcf64b..7640aa2 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_0_int_pktgen_private_port_0_mac.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_0_int_pktgen_private_port_0_mac.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vlb_0_int_pktgen_private_port_0_mac",

-  "name": "vlb_0_int_pktgen_private_port_0_mac",

-  "property": {

-    "description": "vlb_0_int_pktgen_private_port_0_mac",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_0_int_pktgen_private_port_0_mac",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vlb_0_int_pktgen_private_port_0_mac": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vlb_0_int_pktgen_private_port_0_mac",
+  "name": "vlb_0_int_pktgen_private_port_0_mac",
+  "property": {
+    "description": "vlb_0_int_pktgen_private_port_0_mac",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_0_int_pktgen_private_port_0_mac",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vlb_0_int_pktgen_private_port_0_mac": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_flavor_name.json b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_flavor_name.json
index e8c1761..3ba34ee 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_flavor_name.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_flavor_name.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vlb_flavor_name",

-  "name": "vlb_flavor_name",

-  "property": {

-    "description": "vlb_flavor_name",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_flavor_name",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vlb_flavor_name": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vlb_flavor_name",
+  "name": "vlb_flavor_name",
+  "property": {
+    "description": "vlb_flavor_name",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_flavor_name",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vlb_flavor_name": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_image_name.json b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_image_name.json
index 3c3b336..0db006b 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_image_name.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_image_name.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vlb_image_name",

-  "name": "vlb_image_name",

-  "property": {

-    "description": "vlb_image_name",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_image_name",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vlb_image_name": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vlb_image_name",
+  "name": "vlb_image_name",
+  "property": {
+    "description": "vlb_image_name",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_image_name",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vlb_image_name": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_int_pktgen_private_ip_0.json b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_int_pktgen_private_ip_0.json
index 3b2032b..04604eb 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_int_pktgen_private_ip_0.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_int_pktgen_private_ip_0.json
@@ -1,37 +1,37 @@
-  {

-      "tags": "vlb_int_pktgen_private_ip_0",

-      "name": "vlb_int_pktgen_private_ip_0",

-      "property": {

-        "description": "vlb_int_pktgen_private_ip_0",

-        "type": "string"

-      },

-      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-      "sources": {

-        "input": {

-          "type": "source-input"

-        },

-        "default": {

-          "type": "source-default",

-          "properties": {}

-        },

-        "sdnc": {

-          "type": "source-rest",

-          "properties": {

-            "type": "JSON",

-            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_int_pktgen_private_ip_0",

-            "path": "/param/0/value",

-            "input-key-mapping": {

-              "service-instance-id": "service-instance-id",

-              "vnf-id": "vnf-id"

-            },

-            "output-key-mapping": {

-              "vlb_int_pktgen_private_ip_0": "value"

-            },

-            "key-dependencies": [

-              "service-instance-id",

-              "vnf-id"

-            ]

-          }

-        }

-      }

-    }

+  {
+      "tags": "vlb_int_pktgen_private_ip_0",
+      "name": "vlb_int_pktgen_private_ip_0",
+      "property": {
+        "description": "vlb_int_pktgen_private_ip_0",
+        "type": "string"
+      },
+      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+      "sources": {
+        "input": {
+          "type": "source-input"
+        },
+        "default": {
+          "type": "source-default",
+          "properties": {}
+        },
+        "sdnc": {
+          "type": "source-rest",
+          "properties": {
+            "type": "JSON",
+            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_int_pktgen_private_ip_0",
+            "path": "/param/0/value",
+            "input-key-mapping": {
+              "service-instance-id": "service-instance-id",
+              "vnf-id": "vnf-id"
+            },
+            "output-key-mapping": {
+              "vlb_int_pktgen_private_ip_0": "value"
+            },
+            "key-dependencies": [
+              "service-instance-id",
+              "vnf-id"
+            ]
+          }
+        }
+      }
+    }
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_int_private_ip_0.json b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_int_private_ip_0.json
index ae93287..4ca8e70 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_int_private_ip_0.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_int_private_ip_0.json
@@ -1,38 +1,38 @@
- {

-      "tags": "vlb_int_private_ip_0",

-      "name": "vlb_int_private_ip_0",

-      "property": {

-        "description": "vlb_int_private_ip_0",

-        "type": "string"

-      },

-      "updated-by": "Singal, Kapil <ks220y@att.com>",

-      "sources": {

-        "input": {

-          "type": "source-input"

-        },

-        "default": {

-          "type": "source-default",

-          "properties": {}

-        },

-        "sdnc": {

-          "type": "source-rest",

-          "properties": {

-            "type": "JSON",

-            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_int_private_ip_0",

-            "path": "/param/0/value",

-            "input-key-mapping": {

-              "service-instance-id": "service-instance-id",

-              "vnf-id": "vnf-id"

-            },

-            "output-key-mapping": {

-              "vlb_int_private_ip_0": "value"

-            },

-            "key-dependencies": [

-              "service-instance-id",

-              "vnf-id"

-            ]

-          }

-        }

-      }

-    

-  }

+ {
+      "tags": "vlb_int_private_ip_0",
+      "name": "vlb_int_private_ip_0",
+      "property": {
+        "description": "vlb_int_private_ip_0",
+        "type": "string"
+      },
+      "updated-by": "Singal, Kapil <ks220y@att.com>",
+      "sources": {
+        "input": {
+          "type": "source-input"
+        },
+        "default": {
+          "type": "source-default",
+          "properties": {}
+        },
+        "sdnc": {
+          "type": "source-rest",
+          "properties": {
+            "type": "JSON",
+            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_int_private_ip_0",
+            "path": "/param/0/value",
+            "input-key-mapping": {
+              "service-instance-id": "service-instance-id",
+              "vnf-id": "vnf-id"
+            },
+            "output-key-mapping": {
+              "vlb_int_private_ip_0": "value"
+            },
+            "key-dependencies": [
+              "service-instance-id",
+              "vnf-id"
+            ]
+          }
+        }
+      }
+    
+  }
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_name_0.json b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_name_0.json
index f9c177b..f8e7f31 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_name_0.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_name_0.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vlb_name_0",

-  "name": "vlb_name_0",

-  "property": {

-    "description": "vlb_name_0",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_name_0",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vlb_name_0": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vlb_name_0",
+  "name": "vlb_name_0",
+  "property": {
+    "description": "vlb_name_0",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_name_0",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vlb_name_0": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_onap_private_ip_0.json b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_onap_private_ip_0.json
index 4153938..b78cc9f 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_onap_private_ip_0.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_onap_private_ip_0.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vlb_onap_private_ip_0",

-  "name": "vlb_onap_private_ip_0",

-  "property": {

-    "description": "vlb_onap_private_ip_0",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_onap_private_ip_0",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "private2-prefix-id": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vlb_onap_private_ip_0",
+  "name": "vlb_onap_private_ip_0",
+  "property": {
+    "description": "vlb_onap_private_ip_0",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_onap_private_ip_0",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "private2-prefix-id": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_private_net_cidr.json b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_private_net_cidr.json
index 3aa4528..419ef22 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_private_net_cidr.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_private_net_cidr.json
@@ -1,49 +1,49 @@
-{

-  "tags": "vlb_private_net_cidr",

-  "name": "vlb_private_net_cidr",

-  "property": {

-    "description": "vlb_private_net_cidr",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_private_net_cidr",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vlb_private_net_cidr": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "endpoint-selector": "dynamic-db-source",

-        "type": "SQL",

-        "query": "select sdnctl.IPAM_IP_POOL.prefix as prefix from sdnctl.IPAM_IP_POOL where description = \"private1\"",

-        "input-key-mapping": {},

-        "output-key-mapping": {

-          "vlb_private_net_cidr": "prefix"

-        }

-      }

-    }

-  }

-}

+{
+  "tags": "vlb_private_net_cidr",
+  "name": "vlb_private_net_cidr",
+  "property": {
+    "description": "vlb_private_net_cidr",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_private_net_cidr",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vlb_private_net_cidr": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "endpoint-selector": "dynamic-db-source",
+        "type": "SQL",
+        "query": "select sdnctl.IPAM_IP_POOL.prefix as prefix from sdnctl.IPAM_IP_POOL where description = \"private1\"",
+        "input-key-mapping": {},
+        "output-key-mapping": {
+          "vlb_private_net_cidr": "prefix"
+        }
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_private_net_id.json b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_private_net_id.json
index fec9ae3..38f33a2 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vlb_private_net_id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vlb_private_net_id.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vlb_private_net_id",

-  "name": "vlb_private_net_id",

-  "property": {

-    "description": "vlb_private_net_id",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_private_net_id",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vlb_private_net_id": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vlb_private_net_id",
+  "name": "vlb_private_net_id",
+  "property": {
+    "description": "vlb_private_net_id",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vlb_private_net_id",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vlb_private_net_id": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vm-type.json b/components/model-catalog/resource-dictionary/starter-dictionary/vm-type.json
index 7c3ac08..d24478d 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vm-type.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vm-type.json
@@ -1,35 +1,35 @@
-{

-  "tags": "vm-type",

-  "name": "vm-type",

-  "property": {

-    "description": "vm-type",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "endpoint-selector": "dynamic-db-source",

-        "type": "SQL",

-        "query": "select VFC_MODEL.vm_type as vm_type from VFC_MODEL where customization_uuid=:vfccustomizationuuid",

-        "input-key-mapping": {

-          "vfccustomizationuuid": "vfccustomizationuuid"

-        },

-        "output-key-mapping": {

-          "vm-type": "vm_type"

-        },

-        "key-dependencies": [

-          "vfccustomizationuuid"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vm-type",
+  "name": "vm-type",
+  "property": {
+    "description": "vm-type",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "endpoint-selector": "dynamic-db-source",
+        "type": "SQL",
+        "query": "select VFC_MODEL.vm_type as vm_type from VFC_MODEL where customization_uuid=:vfccustomizationuuid",
+        "input-key-mapping": {
+          "vfccustomizationuuid": "vfccustomizationuuid"
+        },
+        "output-key-mapping": {
+          "vm-type": "vm_type"
+        },
+        "key-dependencies": [
+          "vfccustomizationuuid"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vnf-id.json b/components/model-catalog/resource-dictionary/starter-dictionary/vnf-id.json
index 8dab9f9..8445d29 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vnf-id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vnf-id.json
@@ -1,37 +1,37 @@
-  {

-      "tags": "vnf-id",

-      "name": "vnf-id",

-      "property": {

-        "description": "vnf-id",

-        "type": "string"

-      },

-      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-      "sources": {

-        "input": {

-          "type": "source-input"

-        },

-        "default": {

-          "type": "source-default",

-          "properties": {}

-        },

-        "sdnc": {

-          "type": "source-rest",

-          "properties": {

-            "type": "JSON",

-            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vnf-id",

-            "path": "/param/0/value",

-            "input-key-mapping": {

-              "service-instance-id": "service-instance-id",

-              "vnf-id": "vnf-id"

-            },

-            "output-key-mapping": {

-              "vnf-id": "value"

-            },

-            "key-dependencies": [

-              "service-instance-id",

-              "vnf-id"

-            ]

-          }

-        }

-      }

-    }

+  {
+      "tags": "vnf-id",
+      "name": "vnf-id",
+      "property": {
+        "description": "vnf-id",
+        "type": "string"
+      },
+      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+      "sources": {
+        "input": {
+          "type": "source-input"
+        },
+        "default": {
+          "type": "source-default",
+          "properties": {}
+        },
+        "sdnc": {
+          "type": "source-rest",
+          "properties": {
+            "type": "JSON",
+            "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vnf-id",
+            "path": "/param/0/value",
+            "input-key-mapping": {
+              "service-instance-id": "service-instance-id",
+              "vnf-id": "vnf-id"
+            },
+            "output-key-mapping": {
+              "vnf-id": "value"
+            },
+            "key-dependencies": [
+              "service-instance-id",
+              "vnf-id"
+            ]
+          }
+        }
+      }
+    }
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vnf-name.json b/components/model-catalog/resource-dictionary/starter-dictionary/vnf-name.json
index 49378f0..675b754 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vnf-name.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vnf-name.json
@@ -1,55 +1,55 @@
-{

-  "tags": "vnf-name",

-  "name": "vnf-name",

-  "property": {

-    "description": "vnf-name",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-name/vnf-data/vnf-topology/vnf-parameters-data/param/vnf-name",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-name": "vnf-name"

-        },

-        "output-key-mapping": {

-          "vnf-name": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-name"

-        ]

-      }

-    },

-    "aai-data": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "verb": "GET",

-        "url-path": "/aai/v14/network/generic-vnfs/generic-vnf/$vnf-id",

-        "path": "",

-        "input-key-mapping": {

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vnf-name": "vnf-name"

-        },

-        "key-dependencies": [

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vnf-name",
+  "name": "vnf-name",
+  "property": {
+    "description": "vnf-name",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-name/vnf-data/vnf-topology/vnf-parameters-data/param/vnf-name",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-name": "vnf-name"
+        },
+        "output-key-mapping": {
+          "vnf-name": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-name"
+        ]
+      }
+    },
+    "aai-data": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "verb": "GET",
+        "url-path": "/aai/v14/network/generic-vnfs/generic-vnf/$vnf-id",
+        "path": "",
+        "input-key-mapping": {
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vnf-name": "vnf-name"
+        },
+        "key-dependencies": [
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vnf_id.json b/components/model-catalog/resource-dictionary/starter-dictionary/vnf_id.json
index 7afb3bf..8bbe49c 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vnf_id.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vnf_id.json
@@ -1,19 +1,19 @@
- {

-      "tags": "vnf_id",

-      "name": "vnf_id",

-      "property": {

-        "description": "vnf_id",

-        "type": "string"

-      },

-      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-      "sources": {

-        "input": {

-          "type": "source-input"

-        },

-        "default": {

-          "type": "source-default",

-          "properties": {}

-        }

-      }

-    

+ {
+      "tags": "vnf_id",
+      "name": "vnf_id",
+      "property": {
+        "description": "vnf_id",
+        "type": "string"
+      },
+      "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+      "sources": {
+        "input": {
+          "type": "source-input"
+        },
+        "default": {
+          "type": "source-default",
+          "properties": {}
+        }
+      }
+    
   }
\ No newline at end of file
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vnfc-model-invariant-uuid.json b/components/model-catalog/resource-dictionary/starter-dictionary/vnfc-model-invariant-uuid.json
index da4bc65..2150b50 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vnfc-model-invariant-uuid.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vnfc-model-invariant-uuid.json
@@ -1,35 +1,35 @@
-{

-  "tags": "vnfc-model-invariant-uuid",

-  "name": "vnfc-model-invariant-uuid",

-  "property": {

-    "description": "vnfc-model-invariant-uuid",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "endpoint-selector": "dynamic-db-source",

-        "type": "SQL",

-        "query": "select VFC_MODEL.invariant_uuid as vfc_invariant_uuid from VFC_MODEL where customization_uuid=:vfccustomizationuuid",

-        "input-key-mapping": {

-          "vfccustomizationuuid": "vfccustomizationuuid"

-        },

-        "output-key-mapping": {

-          "vnfc-model-invariant-uuid": "vfc_invariant_uuid"

-        },

-        "key-dependencies": [

-          "vfccustomizationuuid"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vnfc-model-invariant-uuid",
+  "name": "vnfc-model-invariant-uuid",
+  "property": {
+    "description": "vnfc-model-invariant-uuid",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "endpoint-selector": "dynamic-db-source",
+        "type": "SQL",
+        "query": "select VFC_MODEL.invariant_uuid as vfc_invariant_uuid from VFC_MODEL where customization_uuid=:vfccustomizationuuid",
+        "input-key-mapping": {
+          "vfccustomizationuuid": "vfccustomizationuuid"
+        },
+        "output-key-mapping": {
+          "vnfc-model-invariant-uuid": "vfc_invariant_uuid"
+        },
+        "key-dependencies": [
+          "vfccustomizationuuid"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vnfc-model-version.json b/components/model-catalog/resource-dictionary/starter-dictionary/vnfc-model-version.json
index 1f85487..4673a61 100755
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vnfc-model-version.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vnfc-model-version.json
@@ -1,35 +1,35 @@
-{

-  "tags": "vnfc-model-version",

-  "name": "vnfc-model-version",

-  "property": {

-    "description": "vnfc-model-version",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "processor-db": {

-      "type": "source-db",

-      "properties": {

-        "endpoint-selector": "dynamic-db-source",

-        "type": "SQL",

-        "query": "select VFC_MODEL.version as vnfc_model_version from VFC_MODEL where customization_uuid=:vfccustomizationuuid",

-        "input-key-mapping": {

-          "vfccustomizationuuid": "vfccustomizationuuid"

-        },

-        "output-key-mapping": {

-          "vnfc-model-version": "vnfc_model_version"

-        },

-        "key-dependencies": [

-          "vfccustomizationuuid"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vnfc-model-version",
+  "name": "vnfc-model-version",
+  "property": {
+    "description": "vnfc-model-version",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "processor-db": {
+      "type": "source-db",
+      "properties": {
+        "endpoint-selector": "dynamic-db-source",
+        "type": "SQL",
+        "query": "select VFC_MODEL.version as vnfc_model_version from VFC_MODEL where customization_uuid=:vfccustomizationuuid",
+        "input-key-mapping": {
+          "vfccustomizationuuid": "vfccustomizationuuid"
+        },
+        "output-key-mapping": {
+          "vnfc-model-version": "vnfc_model_version"
+        },
+        "key-dependencies": [
+          "vfccustomizationuuid"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vpg_flavor_name.json b/components/model-catalog/resource-dictionary/starter-dictionary/vpg_flavor_name.json
index ca17696..ae21528 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vpg_flavor_name.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vpg_flavor_name.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vpg_flavor_name",

-  "name": "vpg_flavor_name",

-  "property": {

-    "description": "vpg_flavor_name",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vpg_flavor_name",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vpg_flavor_name": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vpg_flavor_name",
+  "name": "vpg_flavor_name",
+  "property": {
+    "description": "vpg_flavor_name",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vpg_flavor_name",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vpg_flavor_name": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vpg_image_name.json b/components/model-catalog/resource-dictionary/starter-dictionary/vpg_image_name.json
index d06d9c5..3fd99a6 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vpg_image_name.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vpg_image_name.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vpg_image_name",

-  "name": "vpg_image_name",

-  "property": {

-    "description": "vpg_image_name",

-    "type": "string"

-  },

-  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vpg_image_name",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vpg_image_name": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vpg_image_name",
+  "name": "vpg_image_name",
+  "property": {
+    "description": "vpg_image_name",
+    "type": "string"
+  },
+  "updated-by": "MALAKOV, YURIY <yuriy.malakov@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vpg_image_name",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vpg_image_name": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vpg_int_pktgen_private_ip_0.json b/components/model-catalog/resource-dictionary/starter-dictionary/vpg_int_pktgen_private_ip_0.json
index f2e8068..88e9720 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vpg_int_pktgen_private_ip_0.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vpg_int_pktgen_private_ip_0.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vpg_int_pktgen_private_ip_0",

-  "name": "vpg_int_pktgen_private_ip_0",

-  "property": {

-    "description": "vpg_int_pktgen_private_ip_0",

-    "type": "string"

-  },

-  "updated-by": "Singal, Kapil <ks220y@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vpg_int_pktgen_private_ip_0",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vpg_int_pktgen_private_ip_0": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vpg_int_pktgen_private_ip_0",
+  "name": "vpg_int_pktgen_private_ip_0",
+  "property": {
+    "description": "vpg_int_pktgen_private_ip_0",
+    "type": "string"
+  },
+  "updated-by": "Singal, Kapil <ks220y@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vpg_int_pktgen_private_ip_0",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vpg_int_pktgen_private_ip_0": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/model-catalog/resource-dictionary/starter-dictionary/vpg_onap_private_ip_0.json b/components/model-catalog/resource-dictionary/starter-dictionary/vpg_onap_private_ip_0.json
index b5d4b8b..cfdf8b9 100644
--- a/components/model-catalog/resource-dictionary/starter-dictionary/vpg_onap_private_ip_0.json
+++ b/components/model-catalog/resource-dictionary/starter-dictionary/vpg_onap_private_ip_0.json
@@ -1,37 +1,37 @@
-{

-  "tags": "vpg_onap_private_ip_0",

-  "name": "vpg_onap_private_ip_0",

-  "property": {

-    "description": "vpg_onap_private_ip_0",

-    "type": "string"

-  },

-  "updated-by": "Singal, Kapil <ks220y@att.com>",

-  "sources": {

-    "input": {

-      "type": "source-input"

-    },

-    "default": {

-      "type": "source-default",

-      "properties": {}

-    },

-    "sdnc": {

-      "type": "source-rest",

-      "properties": {

-        "type": "JSON",

-        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vpg_onap_private_ip_0",

-        "path": "/param/0/value",

-        "input-key-mapping": {

-          "service-instance-id": "service-instance-id",

-          "vnf-id": "vnf-id"

-        },

-        "output-key-mapping": {

-          "vpg_onap_private_ip_0": "value"

-        },

-        "key-dependencies": [

-          "service-instance-id",

-          "vnf-id"

-        ]

-      }

-    }

-  }

-}

+{
+  "tags": "vpg_onap_private_ip_0",
+  "name": "vpg_onap_private_ip_0",
+  "property": {
+    "description": "vpg_onap_private_ip_0",
+    "type": "string"
+  },
+  "updated-by": "Singal, Kapil <ks220y@att.com>",
+  "sources": {
+    "input": {
+      "type": "source-input"
+    },
+    "default": {
+      "type": "source-default",
+      "properties": {}
+    },
+    "sdnc": {
+      "type": "source-rest",
+      "properties": {
+        "type": "JSON",
+        "url-path": "config/GENERIC-RESOURCE-API:services/service/$service-instance-id/service-data/vnfs/vnf/$vnf-id/vnf-data/vnf-topology/vnf-parameters-data/param/vpg_onap_private_ip_0",
+        "path": "/param/0/value",
+        "input-key-mapping": {
+          "service-instance-id": "service-instance-id",
+          "vnf-id": "vnf-id"
+        },
+        "output-key-mapping": {
+          "vpg_onap_private_ip_0": "value"
+        },
+        "key-dependencies": [
+          "service-instance-id",
+          "vnf-id"
+        ]
+      }
+    }
+  }
+}
diff --git a/components/parent/pom.xml b/components/parent/pom.xml
deleted file mode 100644
index 6f33118..0000000
--- a/components/parent/pom.xml
+++ /dev/null
@@ -1,390 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  ~ Copyright © 2017-2018 AT&T Intellectual Property.
-  ~
-  ~ Modifications Copyright © 2018 IBM.
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~     http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
-  -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.onap.ccsdk.cds</groupId>
-        <artifactId>components</artifactId>
-        <version>0.7.0-SNAPSHOT</version>
-    </parent>
-    <groupId>org.onap.ccsdk.cds.components</groupId>
-    <artifactId>parent</artifactId>
-    <name>Components Parent</name>
-    <packaging>pom</packaging>
-    <properties>
-        <eelf.version>1.0.0</eelf.version>
-        <guava.version>27.0.1-jre</guava.version>
-        <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
-        <h2database.version>1.4.197</h2database.version>
-        <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
-        <velocity.version>1.7</velocity.version>
-        <jinja.version>2.5.1</jinja.version>
-    </properties>
-    <dependencyManagement>
-        <dependencies>
-            <!-- Spring boot -->
-            <dependency>
-                <groupId>org.springframework.boot</groupId>
-                <artifactId>spring-boot-dependencies</artifactId>
-                <version>${spring.boot.version}</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-
-            <!--Swagger Dependencies -->
-            <dependency>
-                <groupId>io.springfox</groupId>
-                <artifactId>springfox-swagger2</artifactId>
-                <version>${springfox.swagger2.version}</version>
-                <exclusions>
-                    <exclusion>
-                        <groupId>org.slf4j</groupId>
-                        <artifactId>slf4j-api</artifactId>
-                    </exclusion>
-                </exclusions>
-            </dependency>
-            <dependency>
-                <groupId>io.springfox</groupId>
-                <artifactId>springfox-swagger-ui</artifactId>
-                <version>${springfox.swagger2.version}</version>
-            </dependency>
-
-            <!-- Common Utils Dependencies -->
-            <dependency>
-                <groupId>org.apache.commons</groupId>
-                <artifactId>commons-lang3</artifactId>
-                <version>3.2.1</version>
-            </dependency>
-            <dependency>
-                <groupId>commons-collections</groupId>
-                <artifactId>commons-collections</artifactId>
-                <version>3.2.2</version>
-            </dependency>
-            <dependency>
-                <groupId>commons-io</groupId>
-                <artifactId>commons-io</artifactId>
-                <version>2.6</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.velocity</groupId>
-                <artifactId>velocity</artifactId>
-                <version>${velocity.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>com.google.guava</groupId>
-                <artifactId>guava</artifactId>
-                <version>${guava.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>com.hubspot.jinjava</groupId>
-                <artifactId>jinjava</artifactId>
-                <version>${jinja.version}</version>
-            </dependency>
-
-            <!-- Kotlin Dependencies -->
-            <dependency>
-                <groupId>org.jetbrains.kotlin</groupId>
-                <artifactId>kotlin-stdlib</artifactId>
-                <version>${kotlin.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.jetbrains.kotlin</groupId>
-                <artifactId>kotlin-stdlib-common</artifactId>
-                <version>${kotlin.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.jetbrains.kotlin</groupId>
-                <artifactId>kotlin-scripting-jvm-host</artifactId>
-                <version>${kotlin.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.jetbrains.kotlin</groupId>
-                <artifactId>kotlin-compiler-embeddable</artifactId>
-                <version>${kotlin.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.jetbrains.kotlin</groupId>
-                <artifactId>kotlin-script-util</artifactId>
-                <version>${kotlin.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.jetbrains.kotlin</groupId>
-                <artifactId>kotlin-script-runtime</artifactId>
-                <version>${kotlin.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.jetbrains.kotlinx</groupId>
-                <artifactId>kotlinx-coroutines-core</artifactId>
-                <version>${kotlin.couroutines.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.jetbrains.kotlinx</groupId>
-                <artifactId>kotlinx-coroutines-reactor</artifactId>
-                <version>${kotlin.couroutines.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.jetbrains.kotlin</groupId>
-                <artifactId>kotlin-reflect</artifactId>
-                <version>${kotlin.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.jetbrains.kotlin</groupId>
-                <artifactId>kotlin-stdlib-jdk8</artifactId>
-                <version>${kotlin.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.jetbrains.kotlin</groupId>
-                <artifactId>kotlin-stdlib-jdk7</artifactId>
-                <version>${kotlin.version}</version>
-            </dependency>
-
-            <!-- GRPC Dependencies -->
-            <dependency>
-                <groupId>io.grpc</groupId>
-                <artifactId>grpc-core</artifactId>
-                <version>${grpc.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>io.grpc</groupId>
-                <artifactId>grpc-netty</artifactId>
-                <version>${grpc.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>io.grpc</groupId>
-                <artifactId>grpc-protobuf</artifactId>
-                <version>${grpc.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>io.grpc</groupId>
-                <artifactId>grpc-stub</artifactId>
-                <version>${grpc.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>com.google.protobuf</groupId>
-                <artifactId>protobuf-java-util</artifactId>
-                <version>${protobuff.java.utils.version}</version>
-            </dependency>
-
-
-            <!-- Database -->
-            <dependency>
-                <groupId>com.h2database</groupId>
-                <artifactId>h2</artifactId>
-                <version>${h2database.version}</version>
-            </dependency>
-
-
-            <!-- Testing Dependencies -->
-            <dependency>
-                <groupId>io.mockk</groupId>
-                <artifactId>mockk</artifactId>
-                <version>${mockk.version}</version>
-                <scope>test</scope>
-            </dependency>
-            <dependency>
-                <groupId>org.jetbrains.kotlin</groupId>
-                <artifactId>kotlin-test-junit</artifactId>
-                <version>${kotlin.version}</version>
-                <scope>test</scope>
-            </dependency>
-            <dependency>
-                <groupId>org.jetbrains.kotlinx</groupId>
-                <artifactId>kotlinx-coroutines-test</artifactId>
-                <version>${kotlin.couroutines.version}</version>
-                <scope>test</scope>
-            </dependency>
-            <dependency>
-                <groupId>io.grpc</groupId>
-                <artifactId>grpc-testing</artifactId>
-                <version>${grpc.version}</version>
-                <scope>test</scope>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.commons</groupId>
-            <artifactId>commons-lang3</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>commons-collections</groupId>
-            <artifactId>commons-collections</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>commons-io</groupId>
-            <artifactId>commons-io</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>com.jayway.jsonpath</groupId>
-            <artifactId>json-path</artifactId>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.slf4j</groupId>
-                    <artifactId>slf4j-api</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>com.google.guava</groupId>
-            <artifactId>guava</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>io.springfox</groupId>
-            <artifactId>springfox-swagger2</artifactId>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.slf4j</groupId>
-                    <artifactId>slf4j-api</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>io.springfox</groupId>
-            <artifactId>springfox-swagger-ui</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.jetbrains.kotlin</groupId>
-            <artifactId>kotlin-stdlib</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.jetbrains.kotlin</groupId>
-            <artifactId>kotlin-script-util</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.jetbrains.kotlin</groupId>
-            <artifactId>kotlin-stdlib-jdk8</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.jetbrains.kotlinx</groupId>
-            <artifactId>kotlinx-coroutines-core</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.jetbrains.kotlinx</groupId>
-            <artifactId>kotlinx-coroutines-reactor</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>com.fasterxml.jackson.module</groupId>
-            <artifactId>jackson-module-kotlin</artifactId>
-        </dependency>
-        <!-- GRPC Dependencies -->
-        <dependency>
-            <groupId>io.grpc</groupId>
-            <artifactId>grpc-netty</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>io.grpc</groupId>
-            <artifactId>grpc-protobuf</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>io.grpc</groupId>
-            <artifactId>grpc-stub</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>com.google.protobuf</groupId>
-            <artifactId>protobuf-java-util</artifactId>
-        </dependency>
-
-    </dependencies>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-source-plugin</artifactId>
-                <version>3.0.1</version>
-                <executions>
-                    <execution>
-                        <id>attach-sources</id>
-                        <goals>
-                            <goal>jar</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-
-            <plugin>
-                <artifactId>kotlin-maven-plugin</artifactId>
-                <groupId>org.jetbrains.kotlin</groupId>
-                <version>${kotlin.maven.version}</version>
-                <executions>
-                    <execution>
-                        <id>compile</id>
-                        <goals>
-                            <goal>compile</goal>
-                        </goals>
-                        <configuration>
-                            <sourceDirs>
-                                <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
-                                <sourceDir>${project.basedir}/src/main/java</sourceDir>
-                            </sourceDirs>
-                        </configuration>
-                    </execution>
-                    <execution>
-                        <id>test-compile</id>
-                        <goals>
-                            <goal>test-compile</goal>
-                        </goals>
-                        <configuration>
-                            <sourceDirs>
-                                <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
-                                <sourceDir>${project.basedir}/src/test/java</sourceDir>
-                            </sourceDirs>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <version>3.5.1</version>
-                <configuration>
-                    <source>${maven.compiler.source}</source>
-                    <target>${maven.compiler.target}</target>
-                </configuration>
-                <executions>
-                    <!-- Replacing default-compile as it is treated specially by maven -->
-                    <execution>
-                        <id>default-compile</id>
-                        <phase>none</phase>
-                    </execution>
-                    <!-- Replacing default-testCompile as it is treated specially by maven -->
-                    <execution>
-                        <id>default-testCompile</id>
-                        <phase>none</phase>
-                    </execution>
-                    <execution>
-                        <id>java-compile</id>
-                        <phase>compile</phase>
-                        <goals>
-                            <goal>compile</goal>
-                        </goals>
-                    </execution>
-                    <execution>
-                        <id>java-test-compile</id>
-                        <phase>test-compile</phase>
-                        <goals>
-                            <goal>testCompile</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-</project>
diff --git a/components/pom.xml b/components/pom.xml
deleted file mode 100644
index 060cf4e..0000000
--- a/components/pom.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  ~ Copyright © 2017-2018 AT&T Intellectual Property.
-  ~ Modifications Copyright © 2018 IBM.
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~     http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
-  -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-    <parent>
-        <groupId>org.onap.ccsdk.cds</groupId>
-        <artifactId>parent</artifactId>
-        <version>0.7.0-SNAPSHOT</version>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <artifactId>components</artifactId>
-    <name>Components Root</name>
-    <packaging>pom</packaging>
-    <properties>
-        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-        <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
-        <build.number>${maven.build.timestamp}</build.number>
-        <java.version>1.8</java.version>
-        <maven.compiler.target>1.8</maven.compiler.target>
-        <maven.compiler.source>1.8</maven.compiler.source>
-    </properties>
-    <modules>
-        <module>parent</module>
-        <module>model-catalog/proto-definition</module>
-    </modules>
-</project>
diff --git a/components/scripts/python/ccsdk_netconf/common.py b/components/scripts/python/ccsdk_netconf/common.py
index 66c7a98..457d460 100644
--- a/components/scripts/python/ccsdk_netconf/common.py
+++ b/components/scripts/python/ccsdk_netconf/common.py
@@ -12,6 +12,7 @@
 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 #  See the License for the specific language governing permissions and
 #  limitations under the License.
+from netconf_constant import *
 from org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution import ResourceResolutionExtensionsKt
 
 
@@ -21,9 +22,45 @@
         self.component_function = component_function
 
     def resolve_and_generate_message_from_template_prefix(self, artifact_prefix):
+        """Get the template resolved in the current workflow execution by the artifact prefix
+
+        :param artifact_prefix:
+        :return: template
+        """
         return ResourceResolutionExtensionsKt.contentFromResolvedArtifact(self.component_function, artifact_prefix)
 
     def retrieve_resolved_template_from_database(self, key, artifact_template):
+        """Get the template resolved and stored with resolution-key and matching with the artifact name
+
+        :param key:
+        :param artifact_template:
+        :return:
+        """
         return ResourceResolutionExtensionsKt.storedContentFromResolvedArtifact(self.component_function, key,
                                                                                 artifact_template)
 
+    def set_execution_attribute_response_data(self, response_data):
+        """For the current node execution, set the attribute value of response-data
+
+        :param response_data:
+        :return:
+        """
+        self.component_function.setAttribute(ATTRIBUTE_RESPONSE_DATA, response_data)
+
+    def get_node_template_attribute(self, node_template_name, attribute_key):
+        """get attribute value for a specific node template of the current workflow
+
+        :param node_template_name:
+        :param attribute_key:
+        :return: JsonNode
+        """
+        self.component_function.getNodeTemplateAttribute(node_template_name, attribute_key)
+
+    def get_input_value(self, key):
+        """Get input value of the current node template execution
+
+        :param key:
+        :return: JsonNode
+        """
+        self.component_function.bluePrintRuntimeService.getInputValue(key)
+
diff --git a/components/scripts/python/ccsdk_netconf/netconfclient.py b/components/scripts/python/ccsdk_netconf/netconfclient.py
index 74ac7e3..2d48293 100644
--- a/components/scripts/python/ccsdk_netconf/netconfclient.py
+++ b/components/scripts/python/ccsdk_netconf/netconfclient.py
@@ -63,6 +63,3 @@
     def get(self, filter_content):
         device_response = self.netconf_rpc_client.get(filter_content)
         return device_response
-
-    def set_execution_attribute_response_data(self, response_data):
-        self.component_function.setAttribute(ATTRIBUTE_RESPONSE_DATA, response_data)
diff --git a/docs/designtime.rst b/docs/designtime.rst
index 68da0a1..ac0af51 100644
--- a/docs/designtime.rst
+++ b/docs/designtime.rst
@@ -16,7 +16,7 @@
 
 * Gather the cloud parameters:
 
-instantiation:
+Instantiation:
 ~~~~~~~~~~~~~~
 
 Have the HEAT template along with the HEAT environment file (or) Have the Helm chart along with the Values.yaml file
@@ -40,7 +40,7 @@
 
 
 Services:
-=========
+--------
 
 .. toctree::
    :maxdepth: 1
diff --git a/docs/installation.rst b/docs/installation.rst
index 2f9ce48..ef51fa0 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -2,6 +2,10 @@
 .. http://creativecommons.org/licenses/by/4.0
 .. Copyright (C) 2019 IBM.
 
+
+User Guide
+==========
+
 Installation
 ------------
 
@@ -63,4 +67,22 @@
    replicaset.apps/cds-cds-6bd674dc77                     1         1         1         2m
    replicaset.apps/cds-controller-blueprints-545bbf98cf   1         1         1         2m
    NAME                          DESIRED   CURRENT   AGE
-   statefulset.apps/cds-cds-db   1         1         2m
\ No newline at end of file
+   statefulset.apps/cds-cds-db   1         1         2m
+   
+   
+   
+Running CDS UI:
+---------------
+
+Client:
+~~~~~~~
+Install Node.js and angularCLI. Refer https://angular.io/guide/quickstart
+npm install in the directory cds/cds-ui/client
+npm run build - to build UI module 
+
+
+Loopback Server:
+~~~~~~~~~~~~~~~~
+
+npm install in the directory cds/cds-ui/server
+npm start should bring you the CDS UI page in your local machine with the link https://127.0.0.1:3000/
\ No newline at end of file
diff --git a/ms/blueprintsprocessor/.gitignore b/ms/blueprintsprocessor/.gitignore
deleted file mode 100644
index 04f991d..0000000
--- a/ms/blueprintsprocessor/.gitignore
+++ /dev/null
@@ -1,32 +0,0 @@
-### STS ###
-.apt_generated
-.classpath
-.factorypath
-.project
-.settings
-.springBeans
-.sts4-cache
-
-.classpath
-.settings/
-
-# Target dirs in all projects
-**/target-ide/*
-**/target/*
-**/logs/*
-**/tokens/*
-**/lib/cachedir/**
-
-# Added for Intellij IDEA IDE
-**/debug-logs/*
-**/.idea/*
-**/*.iml
-**/*.project
-**/.springBeans
-**/.directory
-
-**/transaction.log
-**/*versionsBackup
-**/blackDuckHub*
-**/*.jsonld
-/target-ide/
diff --git a/ms/blueprintsprocessor/application/pom.xml b/ms/blueprintsprocessor/application/pom.xml
index 64452a0..a67b10d 100755
--- a/ms/blueprintsprocessor/application/pom.xml
+++ b/ms/blueprintsprocessor/application/pom.xml
@@ -70,6 +70,11 @@
             <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
             <artifactId>configs-api</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+            <artifactId>health-api</artifactId>
+        </dependency>
+
 
         <!-- Functions -->
         <dependency>
diff --git a/ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/cds/blueprintsprocessor/SwaggerConfig.java b/ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/cds/blueprintsprocessor/SwaggerConfig.java
index 82693c4..ce802b7 100644
--- a/ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/cds/blueprintsprocessor/SwaggerConfig.java
+++ b/ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/cds/blueprintsprocessor/SwaggerConfig.java
@@ -28,7 +28,6 @@
 import springfox.documentation.spring.web.plugins.Docket;
 
 import java.util.Collections;
-import springfox.documentation.swagger2.annotations.EnableSwagger2WebFlux;
 
 /**
  * SwaggerConfig
@@ -36,7 +35,7 @@
  * @author Brinda Santh 8/13/2018
  */
 @Configuration
-@EnableSwagger2WebFlux
+//@EnableSwagger2WebFlux
 public class SwaggerConfig {
 
     @Bean
diff --git a/ms/blueprintsprocessor/application/src/main/resources/logback.xml b/ms/blueprintsprocessor/application/src/main/resources/logback.xml
index 1c3c7dc..872ee4f 100644
--- a/ms/blueprintsprocessor/application/src/main/resources/logback.xml
+++ b/ms/blueprintsprocessor/application/src/main/resources/logback.xml
@@ -1,36 +1,36 @@
-<!--

-  ~  Copyright © 2017-2018 AT&T Intellectual Property.

-  ~

-  ~  Licensed under the Apache License, Version 2.0 (the "License");

-  ~  you may not use this file except in compliance with the License.

-  ~  You may obtain a copy of the License at

-  ~

-  ~      http://www.apache.org/licenses/LICENSE-2.0

-  ~

-  ~  Unless required by applicable law or agreed to in writing, software

-  ~  distributed under the License is distributed on an "AS IS" BASIS,

-  ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-  ~  See the License for the specific language governing permissions and

-  ~  limitations under the License.

-  -->

-

-<configuration>

-    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

-        <!-- encoders are assigned the type

-             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->

-        <encoder>

-            <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>

-        </encoder>

-    </appender>

-

-

-    <logger name="org.springframework" level="info"/>

-    <logger name="org.springframework.web" level="info"/>

-    <logger name="org.hibernate" level="error"/>

-    <logger name="org.onap.ccsdk.cds" level="info"/>

-

-    <root level="info">

-        <appender-ref ref="STDOUT"/>

-    </root>

-

-</configuration>

+<!--
+  ~  Copyright © 2017-2018 AT&T Intellectual Property.
+  ~
+  ~  Licensed under the Apache License, Version 2.0 (the "License");
+  ~  you may not use this file except in compliance with the License.
+  ~  You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~  Unless required by applicable law or agreed to in writing, software
+  ~  distributed under the License is distributed on an "AS IS" BASIS,
+  ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~  See the License for the specific language governing permissions and
+  ~  limitations under the License.
+  -->
+
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <!-- encoders are assigned the type
+             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+
+    <logger name="org.springframework" level="info"/>
+    <logger name="org.springframework.web" level="info"/>
+    <logger name="org.hibernate" level="error"/>
+    <logger name="org.onap.ccsdk.cds" level="info"/>
+
+    <root level="info">
+        <appender-ref ref="STDOUT"/>
+    </root>
+
+</configuration>
diff --git a/ms/blueprintsprocessor/application/src/main/resources/sql/schema-local.sql b/ms/blueprintsprocessor/application/src/main/resources/sql/schema-local.sql
index ad048b0..05df420 100644
--- a/ms/blueprintsprocessor/application/src/main/resources/sql/schema-local.sql
+++ b/ms/blueprintsprocessor/application/src/main/resources/sql/schema-local.sql
@@ -6,8 +6,8 @@
 -- -----------------------------------------------------
 -- table CONFIG_MODEL
 -- -----------------------------------------------------
-CREATE TABLE IF NOT EXISTS sdnctl.CONFIG_MODEL (
-  config_model_id 		INT(11) NOT NULL AUTO_INCREMENT,
+CREATE TABLE IF NOT EXISTS sdnctl.BLUEPRINT_MODEL (
+  blueprint_model_id 		VARCHAR(50) NOT NULL,
   service_uuid 			VARCHAR(50) NULL DEFAULT NULL,
   distribution_id 		VARCHAR(50) NULL DEFAULT NULL,
   service_name 			VARCHAR(255) NULL DEFAULT NULL,
@@ -27,25 +27,25 @@
   published 			varchar(1) not null,
   updated_by 			varchar(100) not null,
   tags 				longtext null default null,
-  primary key PK_CONFIG_MODEL (config_model_id),
-  UNIQUE KEY UK_CONFIG_MODEL (artifact_name , artifact_version)
+  primary key PK_BLUEPRINT_MODEL (blueprint_model_id),
+  UNIQUE KEY UK_BLUEPRINT_MODEL (artifact_name , artifact_version)
 ) ENGINE=InnoDB;
 
 
 -- -----------------------------------------------------
 -- table CONFIG_MODEL_CONTENT
 -- -----------------------------------------------------
-CREATE TABLE IF NOT EXISTS sdnctl.CONFIG_MODEL_CONTENT (
-  config_model_content_id 	INT(11) NOT NULL AUTO_INCREMENT, 
-  config_model_id 		INT NOT NULL,
+CREATE TABLE IF NOT EXISTS sdnctl.BLUEPRINT_MODEL_CONTENT (
+  blueprint_model_content_id 	VARCHAR(50) NOT NULL,
+  blueprint_model_id 		VARCHAR(50) NOT NULL,
   name 				VARCHAR(100) NOT NULL,
   content_type 			VARCHAR(50) NOT NULL,
   description 			LONGTEXT NULL DEFAULT NULL,
   updated_date 			DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
-  content 			LONGTEXT NULL DEFAULT NULL,
-  PRIMARY KEY PK_CONFIG_MODEL_CONTENT (config_model_content_id),
-  UNIQUE KEY UK_CONFIG_MODEL_CONTENT (config_model_id, name, content_type),
-  FOREIGN KEY FK_CONFIG_MODEL_CONTENT (config_model_id) REFERENCES sdnctl.CONFIG_MODEL(config_model_id) ON DELETE CASCADE
+  content 			LONGBLOB NULL DEFAULT NULL,
+  PRIMARY KEY PK_BLUEPRINT_MODEL_CONTENT (blueprint_model_content_id),
+  UNIQUE KEY UK_BLUEPRINT_MODEL_CONTENT (blueprint_model_id, name, content_type),
+  FOREIGN KEY FK_BLUEPRINT_MODEL_CONTENT (blueprint_model_id) REFERENCES sdnctl.BLUEPRINT_MODEL(blueprint_model_id) ON DELETE CASCADE
 ) ENGINE=InnoDB;
 
 -- -----------------------------------------------------
diff --git a/ms/blueprintsprocessor/application/src/main/resources/sql/schema.sql b/ms/blueprintsprocessor/application/src/main/resources/sql/schema.sql
index 58564dc..8bf39ee 100644
--- a/ms/blueprintsprocessor/application/src/main/resources/sql/schema.sql
+++ b/ms/blueprintsprocessor/application/src/main/resources/sql/schema.sql
@@ -1,8 +1,8 @@
 -- -----------------------------------------------------
 -- table CONFIG_MODEL
 -- -----------------------------------------------------
-CREATE TABLE IF NOT EXISTS configurator.CONFIG_MODEL (
-  config_model_id 		INT(11) NOT NULL AUTO_INCREMENT,
+CREATE TABLE IF NOT EXISTS configurator.BLUEPRINT_MODEL (
+  blueprint_model_id 		VARCHAR(50) NOT NULL,
   service_uuid 			VARCHAR(50) NULL DEFAULT NULL,
   distribution_id 		VARCHAR(50) NULL DEFAULT NULL,
   service_name 			VARCHAR(255) NULL DEFAULT NULL,
@@ -22,25 +22,25 @@
   published 			varchar(1) not null,
   updated_by 			varchar(100) not null,
   tags 				longtext null default null,
-  primary key PK_CONFIG_MODEL (config_model_id),
-  UNIQUE KEY UK_CONFIG_MODEL (artifact_name , artifact_version)
+  primary key PK_BLUEPRINT_MODEL (blueprint_model_id),
+  UNIQUE KEY UK_BLUEPRINT_MODEL (artifact_name , artifact_version)
 ) ENGINE=InnoDB;
 
 
 -- -----------------------------------------------------
 -- table CONFIG_MODEL_CONTENT
 -- -----------------------------------------------------
-CREATE TABLE IF NOT EXISTS configurator.CONFIG_MODEL_CONTENT (
-  config_model_content_id 	INT(11) NOT NULL AUTO_INCREMENT, 
-  config_model_id 		INT NOT NULL,
+CREATE TABLE IF NOT EXISTS configurator.BLUEPRINT_MODEL_CONTENT (
+  blueprint_model_content_id 	VARCHAR(50) NOT NULL,
+  blueprint_model_id 		VARCHAR(50) NOT NULL,
   name 				VARCHAR(100) NOT NULL,
   content_type 			VARCHAR(50) NOT NULL,
   description 			LONGTEXT NULL DEFAULT NULL,
   updated_date 			DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
-  content 			LONGTEXT NULL DEFAULT NULL,
-  PRIMARY KEY PK_CONFIG_MODEL_CONTENT (config_model_content_id),
-  UNIQUE KEY UK_CONFIG_MODEL_CONTENT (config_model_id, name, content_type),
-  FOREIGN KEY FK_CONFIG_MODEL_CONTENT (config_model_id) REFERENCES configurator.CONFIG_MODEL(config_model_id) ON DELETE CASCADE
+  content 			LONGBLOB NULL DEFAULT NULL,
+  PRIMARY KEY PK_BLUEPRINT_MODEL_CONTENT (blueprint_model_content_id),
+  UNIQUE KEY UK_BLUEPRINT_MODEL_CONTENT (blueprint_model_id, name, content_type),
+  FOREIGN KEY FK_BLUEPRINT_MODEL_CONTENT (blueprint_model_id) REFERENCES configurator.BLUEPRINT_MODEL(blueprint_model_id) ON delete CASCADE
 ) ENGINE=InnoDB;
 
 -- -----------------------------------------------------
diff --git a/ms/blueprintsprocessor/application/src/test/resources/application.properties b/ms/blueprintsprocessor/application/src/test/resources/application.properties
index 766498f..d56e958 100644
--- a/ms/blueprintsprocessor/application/src/test/resources/application.properties
+++ b/ms/blueprintsprocessor/application/src/test/resources/application.properties
@@ -77,3 +77,7 @@
 blueprintsprocessor.messageclient.self-service-api.groupId=receiver-id
 blueprintsprocessor.messageclient.self-service-api.clientId=default-client-id
 blueprintsprocessor.messageclient.self-service-api.kafkaEnable=false
+
+
+endpoints.user.name=ccsdkapps
+endpoints.user.password=ccsdkapps
diff --git a/ms/blueprintsprocessor/application/src/test/resources/logback-test.xml b/ms/blueprintsprocessor/application/src/test/resources/logback-test.xml
index eaa51c0..70d94f5 100644
--- a/ms/blueprintsprocessor/application/src/test/resources/logback-test.xml
+++ b/ms/blueprintsprocessor/application/src/test/resources/logback-test.xml
@@ -1,41 +1,41 @@
-<!--

-  ~ Copyright © 2017-2018 AT&T Intellectual Property.

-  ~ Modifications Copyright (C) 2019 Nordix Foundation.

-  ~

-  ~ Licensed under the Apache License, Version 2.0 (the "License");

-  ~ you may not use this file except in compliance with the License.

-  ~ You may obtain a copy of the License at

-  ~

-  ~     http://www.apache.org/licenses/LICENSE-2.0

-  ~

-  ~ Unless required by applicable law or agreed to in writing, software

-  ~ distributed under the License is distributed on an "AS IS" BASIS,

-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-  ~ See the License for the specific language governing permissions and

-  ~ limitations under the License.

-  -->

-

-<configuration>

-    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

-        <encoder>

-            <pattern>%d{HH:mm:ss.SSS} %-5level %-40.40logger{39} : %msg%n</pattern>

-        </encoder>

-    </appender>

-

-    <logger name="org.springframework.web.HttpLogging" level="trace"/>

-    <logger name="org.springframework.web.reactive.function.client.ExchangeFunctions" level="trace"/>

-

-    <!-- Helpful to optimize Spring Context caching to speed-up tests

-         and prevent resorting to @DirtiesContext as much as possible -->

-    <logger name="org.springframework.test.context.cache" level="debug"/>

-

-    <!-- Please refer to https://thoughts-on-java.org/hibernate-logging-guide/

-         for a lengthy discussion on good Hibernate logging practices -->

-    <logger name="org.hibernate.SQL" level="debug"/>

-    <logger name="org.hibernate.type.descriptor.sql" level="trace"/>

-

-    <root level="info">

-        <appender-ref ref="STDOUT"/>

-    </root>

-

-</configuration>

+<!--
+  ~ Copyright © 2017-2018 AT&T Intellectual Property.
+  ~ Modifications Copyright (C) 2019 Nordix Foundation.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} %-5level %-40.40logger{39} : %msg%n</pattern>
+        </encoder>
+    </appender>
+
+    <logger name="org.springframework.web.HttpLogging" level="trace"/>
+    <logger name="org.springframework.web.reactive.function.client.ExchangeFunctions" level="trace"/>
+
+    <!-- Helpful to optimize Spring Context caching to speed-up tests
+         and prevent resorting to @DirtiesContext as much as possible -->
+    <logger name="org.springframework.test.context.cache" level="debug"/>
+
+    <!-- Please refer to https://thoughts-on-java.org/hibernate-logging-guide/
+         for a lengthy discussion on good Hibernate logging practices -->
+    <logger name="org.hibernate.SQL" level="debug"/>
+    <logger name="org.hibernate.type.descriptor.sql" level="trace"/>
+
+    <root level="info">
+        <appender-ref ref="STDOUT"/>
+    </root>
+
+</configuration>
diff --git a/ms/blueprintsprocessor/distribution/src/main/dc/docker-compose.yaml b/ms/blueprintsprocessor/distribution/src/main/dc/docker-compose.yaml
index 848083e..2d1f1ae 100755
--- a/ms/blueprintsprocessor/distribution/src/main/dc/docker-compose.yaml
+++ b/ms/blueprintsprocessor/distribution/src/main/dc/docker-compose.yaml
@@ -1,16 +1,16 @@
-version: '3.3'

-

-services:

-  db:

-    image: mariadb:latest

-    container_name: ccsdk-mariadb

-    ports:

-    - "3306:3306"

-    volumes:

-    - ~/vm_mysql:/var/lib/mysql

-    restart: always

-    environment:

-      MYSQL_ROOT_PASSWORD: sdnctl

-      MYSQL_DATABASE: sdnctl

-      MYSQL_USER: sdnctl

-      MYSQL_PASSWORD: sdnctl

+version: '3.3'
+
+services:
+  db:
+    image: mariadb:latest
+    container_name: ccsdk-mariadb
+    ports:
+    - "3306:3306"
+    volumes:
+    - ~/vm_mysql:/var/lib/mysql
+    restart: always
+    environment:
+      MYSQL_ROOT_PASSWORD: sdnctl
+      MYSQL_DATABASE: sdnctl
+      MYSQL_USER: sdnctl
+      MYSQL_PASSWORD: sdnctl
diff --git a/ms/blueprintsprocessor/distribution/src/main/docker/startService.sh b/ms/blueprintsprocessor/distribution/src/main/docker/startService.sh
index d1e09dd..14d772e 100644
--- a/ms/blueprintsprocessor/distribution/src/main/docker/startService.sh
+++ b/ms/blueprintsprocessor/distribution/src/main/docker/startService.sh
@@ -5,6 +5,6 @@
 echo "APP Config HOME : ${APP_CONFIG_HOME}"
 export APP_HOME=/opt/app/onap
 
-keytool -import -trustcacerts -keystore $JAVA_HOME/jre/lib/security/cacerts -storepass changeit -alias ONAP -import -file $APP_CONFIG_HOME/ONAP_RootCA.cer
+keytool -import -noprompt -trustcacerts -keystore $JAVA_HOME/jre/lib/security/cacerts -storepass changeit -alias ONAP -import -file $APP_CONFIG_HOME/ONAP_RootCA.cer
 
 source /etc/run.source
diff --git a/ms/blueprintsprocessor/functions/ansible-awx-executor/pom.xml b/ms/blueprintsprocessor/functions/ansible-awx-executor/pom.xml
index 8b59b17..9613030 100644
--- a/ms/blueprintsprocessor/functions/ansible-awx-executor/pom.xml
+++ b/ms/blueprintsprocessor/functions/ansible-awx-executor/pom.xml
@@ -24,6 +24,7 @@
 
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
     <artifactId>ansible-awx-executor</artifactId>
+    <version>0.7.0-SNAPSHOT</version>
     <name>Blueprints Processor Function - Ansible AWX Executor</name>
     <description>Blueprints Processor Function - Ansible Executor</description>
 
diff --git a/ms/blueprintsprocessor/functions/ansible-awx-executor/src/test/resources/logback-test.xml b/ms/blueprintsprocessor/functions/ansible-awx-executor/src/test/resources/logback-test.xml
index 5b36ac0..4313fa5 100644
--- a/ms/blueprintsprocessor/functions/ansible-awx-executor/src/test/resources/logback-test.xml
+++ b/ms/blueprintsprocessor/functions/ansible-awx-executor/src/test/resources/logback-test.xml
@@ -1,35 +1,35 @@
-<!--

-  ~ Copyright © 2017-2018 AT&T Intellectual Property.

-  ~

-  ~ Licensed under the Apache License, Version 2.0 (the "License");

-  ~ you may not use this file except in compliance with the License.

-  ~ You may obtain a copy of the License at

-  ~

-  ~     http://www.apache.org/licenses/LICENSE-2.0

-  ~

-  ~ Unless required by applicable law or agreed to in writing, software

-  ~ distributed under the License is distributed on an "AS IS" BASIS,

-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-  ~ See the License for the specific language governing permissions and

-  ~ limitations under the License.

-  -->

-

-<configuration>

-    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

-        <!-- encoders are assigned the type

-             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->

-        <encoder>

-            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{55} - %msg%n</pattern>

-        </encoder>

-    </appender>

-

-

-    <logger name="org.springframework" level="warn"/>

-    <logger name="org.hibernate" level="info"/>

-    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>

-

-    <root level="warn">

-        <appender-ref ref="STDOUT"/>

-    </root>

-

-</configuration>

+<!--
+  ~ Copyright © 2017-2018 AT&T Intellectual Property.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <!-- encoders are assigned the type
+             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{55} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+
+    <logger name="org.springframework" level="warn"/>
+    <logger name="org.hibernate" level="info"/>
+    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>
+
+    <root level="warn">
+        <appender-ref ref="STDOUT"/>
+    </root>
+
+</configuration>
diff --git a/ms/blueprintsprocessor/functions/cli-executor/pom.xml b/ms/blueprintsprocessor/functions/cli-executor/pom.xml
index 89f409a..b45fdb3 100644
--- a/ms/blueprintsprocessor/functions/cli-executor/pom.xml
+++ b/ms/blueprintsprocessor/functions/cli-executor/pom.xml
@@ -23,6 +23,7 @@
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
     <artifactId>cli-executor</artifactId>
+    <version>0.7.0-SNAPSHOT</version>
     <name>Blueprints Processor Function - CLI Executor</name>
     <description>Blueprints Processor Function - CLI Executor</description>
 
diff --git a/ms/blueprintsprocessor/functions/cli-executor/src/main/kotlin/internal/scripts/InternalSimpleCli.kt b/ms/blueprintsprocessor/functions/cli-executor/src/main/kotlin/internal/scripts/InternalSimpleCli.kt
index cf27cc2..15365e1 100644
--- a/ms/blueprintsprocessor/functions/cli-executor/src/main/kotlin/internal/scripts/InternalSimpleCli.kt
+++ b/ms/blueprintsprocessor/functions/cli-executor/src/main/kotlin/internal/scripts/InternalSimpleCli.kt
@@ -19,11 +19,12 @@
 package internal.scripts
 
 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
+import org.onap.ccsdk.cds.blueprintsprocessor.functions.cli.executor.cliDeviceInfo
+import org.onap.ccsdk.cds.blueprintsprocessor.functions.cli.executor.getSshClientService
 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.ComponentScriptExecutor
-import org.onap.ccsdk.cds.blueprintsprocessor.ssh.sshClientService
 import org.onap.ccsdk.cds.controllerblueprints.core.asJsonPrimitive
-import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintDependencyService
+
 import org.slf4j.LoggerFactory
 
 open class TestCliScriptFunction : AbstractScriptComponentFunction() {
@@ -54,10 +55,10 @@
 
     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
         // Get the Device Information from the DSL Model
-        val deviceInformation = bluePrintRuntimeService.resolveDSLExpression("device-properties")
+        val deviceInformation = cliDeviceInfo("device-properties")
 
         // Get the Client Service
-        val sshClientService = BluePrintDependencyService.sshClientService(deviceInformation)
+        val sshClientService = getSshClientService(deviceInformation)
 
         sshClientService.startSessionNB()
 
diff --git a/ms/blueprintsprocessor/functions/cli-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/cli/executor/CliExecutorExtensions.kt b/ms/blueprintsprocessor/functions/cli-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/cli/executor/CliExecutorExtensions.kt
index bc9b710..ad95759 100644
--- a/ms/blueprintsprocessor/functions/cli-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/cli/executor/CliExecutorExtensions.kt
+++ b/ms/blueprintsprocessor/functions/cli-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/cli/executor/CliExecutorExtensions.kt
@@ -17,7 +17,20 @@
 
 package org.onap.ccsdk.cds.blueprintsprocessor.functions.cli.executor
 
+import com.fasterxml.jackson.databind.JsonNode
+import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractComponentFunction
+import org.onap.ccsdk.cds.blueprintsprocessor.ssh.service.BlueprintSshClientService
+import org.onap.ccsdk.cds.blueprintsprocessor.ssh.sshClientService
+import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintDependencyService
+
 /**
  * Register the CLI module exposed dependency
  */
+fun AbstractComponentFunction.cliDeviceInfo(requirementName: String): JsonNode {
+    return bluePrintRuntimeService.resolveDSLExpression(requirementName)
+}
+
+fun AbstractComponentFunction.getSshClientService(cliDeviceInfo: JsonNode): BlueprintSshClientService {
+    return BluePrintDependencyService.sshClientService(cliDeviceInfo)
+}
 
diff --git a/ms/blueprintsprocessor/functions/netconf-executor/pom.xml b/ms/blueprintsprocessor/functions/netconf-executor/pom.xml
index f163c0e..a10dfba 100644
--- a/ms/blueprintsprocessor/functions/netconf-executor/pom.xml
+++ b/ms/blueprintsprocessor/functions/netconf-executor/pom.xml
@@ -23,6 +23,7 @@
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
     <artifactId>netconf-executor</artifactId>
+    <version>0.7.0-SNAPSHOT</version>
     <name>Blueprints Processor Function - Netconf Executor</name>
     <description>Blueprints Processor Function - Netconf Executor</description>
 
diff --git a/ms/blueprintsprocessor/functions/netconf-executor/src/test/resources/logback-test.xml b/ms/blueprintsprocessor/functions/netconf-executor/src/test/resources/logback-test.xml
index cc7ac83..da4cf9a 100644
--- a/ms/blueprintsprocessor/functions/netconf-executor/src/test/resources/logback-test.xml
+++ b/ms/blueprintsprocessor/functions/netconf-executor/src/test/resources/logback-test.xml
@@ -1,37 +1,37 @@
-<!--

-  ~ Copyright © 2017-2018 AT&T Intellectual Property.

-  ~

-  ~ Licensed under the Apache License, Version 2.0 (the "License");

-  ~ you may not use this file except in compliance with the License.

-  ~ You may obtain a copy of the License at

-  ~

-  ~     http://www.apache.org/licenses/LICENSE-2.0

-  ~

-  ~ Unless required by applicable law or agreed to in writing, software

-  ~ distributed under the License is distributed on an "AS IS" BASIS,

-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-  ~ See the License for the specific language governing permissions and

-  ~ limitations under the License.

-  -->

-

-<configuration>

-    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

-        <!-- encoders are assigned the type

-             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->

-        <encoder>

-            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>

-        </encoder>

-    </appender>

-

-    <logger name="org.springframework.test" level="warn"/>

-    <logger name="org.springframework" level="warn"/>

-    <logger name="org.hibernate" level="info"/>

-    <logger name="org.apache.sshd" level="warn"/>

-    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>

-    <logger name="org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor.core" level="warn"/>

-

-    <root level="warn">

-        <appender-ref ref="STDOUT"/>

-    </root>

-

-</configuration>

+<!--
+  ~ Copyright © 2017-2018 AT&T Intellectual Property.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <!-- encoders are assigned the type
+             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+    <logger name="org.springframework.test" level="warn"/>
+    <logger name="org.springframework" level="warn"/>
+    <logger name="org.hibernate" level="info"/>
+    <logger name="org.apache.sshd" level="warn"/>
+    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>
+    <logger name="org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor.core" level="warn"/>
+
+    <root level="warn">
+        <appender-ref ref="STDOUT"/>
+    </root>
+
+</configuration>
diff --git a/ms/blueprintsprocessor/functions/python-executor/src/test/resources/logback-test.xml b/ms/blueprintsprocessor/functions/python-executor/src/test/resources/logback-test.xml
index 0c8d93b..e04e741 100644
--- a/ms/blueprintsprocessor/functions/python-executor/src/test/resources/logback-test.xml
+++ b/ms/blueprintsprocessor/functions/python-executor/src/test/resources/logback-test.xml
@@ -1,35 +1,35 @@
-<!--

-  ~ Copyright © 2017-2018 AT&T Intellectual Property.

-  ~

-  ~ Licensed under the Apache License, Version 2.0 (the "License");

-  ~ you may not use this file except in compliance with the License.

-  ~ You may obtain a copy of the License at

-  ~

-  ~     http://www.apache.org/licenses/LICENSE-2.0

-  ~

-  ~ Unless required by applicable law or agreed to in writing, software

-  ~ distributed under the License is distributed on an "AS IS" BASIS,

-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-  ~ See the License for the specific language governing permissions and

-  ~ limitations under the License.

-  -->

-

-<configuration>

-    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

-        <!-- encoders are assigned the type

-             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->

-        <encoder>

-            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>

-        </encoder>

-    </appender>

-

-

-    <logger name="org.springframework" level="warn"/>

-    <logger name="org.hibernate" level="info"/>

-    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>

-

-    <root level="warn">

-        <appender-ref ref="STDOUT"/>

-    </root>

-

-</configuration>

+<!--
+  ~ Copyright © 2017-2018 AT&T Intellectual Property.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <!-- encoders are assigned the type
+             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+
+    <logger name="org.springframework" level="warn"/>
+    <logger name="org.hibernate" level="info"/>
+    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>
+
+    <root level="warn">
+        <appender-ref ref="STDOUT"/>
+    </root>
+
+</configuration>
diff --git a/ms/blueprintsprocessor/functions/python-executor/src/test/resources/payload/requests/sample-activate-request.json b/ms/blueprintsprocessor/functions/python-executor/src/test/resources/payload/requests/sample-activate-request.json
index 7142f04..694589d 100644
--- a/ms/blueprintsprocessor/functions/python-executor/src/test/resources/payload/requests/sample-activate-request.json
+++ b/ms/blueprintsprocessor/functions/python-executor/src/test/resources/payload/requests/sample-activate-request.json
@@ -1,31 +1,31 @@
-{

-  "actionIdentifiers": {

-    "actionName": "activate",

-    "blueprintName": "baseconfiguration",

-    "blueprintVersion": "1.0.0",

-    "mode": "sync"

-  },

-  "commonHeader": {

-    "flags": {

-      "force": true,

-      "ttl": 3600

-    },

-    "originatorId": "sdnc",

-    "requestId": "123456-1000",

-    "subRequestId": "sub-123456-1000",

-    "timestamp": "2012-04-23T18:25:43.511Z"

-  },

-  "payload": {

-    "resource-assignment-request": {

-      "resource-assignment-properties": {

-        "request-id": "1234",

-        "service-instance-id": "siid_1234",

-        "vnf-id": "vnf_1234",

-        "action-name": "assign-activate",

-        "scope-type": "vnf-type",

-        "hostname": "localhost",

-        "vnf_name": "temp_vnf"

-      }

-    }

-  }

-}

+{
+  "actionIdentifiers": {
+    "actionName": "activate",
+    "blueprintName": "baseconfiguration",
+    "blueprintVersion": "1.0.0",
+    "mode": "sync"
+  },
+  "commonHeader": {
+    "flags": {
+      "force": true,
+      "ttl": 3600
+    },
+    "originatorId": "sdnc",
+    "requestId": "123456-1000",
+    "subRequestId": "sub-123456-1000",
+    "timestamp": "2012-04-23T18:25:43.511Z"
+  },
+  "payload": {
+    "resource-assignment-request": {
+      "resource-assignment-properties": {
+        "request-id": "1234",
+        "service-instance-id": "siid_1234",
+        "vnf-id": "vnf_1234",
+        "action-name": "assign-activate",
+        "scope-type": "vnf-type",
+        "hostname": "localhost",
+        "vnf_name": "temp_vnf"
+      }
+    }
+  }
+}
diff --git a/ms/blueprintsprocessor/functions/resource-resolution/pom.xml b/ms/blueprintsprocessor/functions/resource-resolution/pom.xml
index be524fe..66210f2 100644
--- a/ms/blueprintsprocessor/functions/resource-resolution/pom.xml
+++ b/ms/blueprintsprocessor/functions/resource-resolution/pom.xml
@@ -23,6 +23,7 @@
     </parent>
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
     <artifactId>resource-resolution</artifactId>
+    <version>0.7.0-SNAPSHOT</version>
     <packaging>jar</packaging>
     <name>Blueprints Processor Function - Resource Resolution</name>
     <description>Blueprints Processor Function - Resource Resolution</description>
diff --git a/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/logback-test.xml b/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/logback-test.xml
index 305c59f..f379f37 100644
--- a/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/logback-test.xml
+++ b/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/logback-test.xml
@@ -1,37 +1,37 @@
-<!--

-  ~ Copyright © 2017-2018 AT&T Intellectual Property.

-  ~

-  ~ Licensed under the Apache License, Version 2.0 (the "License");

-  ~ you may not use this file except in compliance with the License.

-  ~ You may obtain a copy of the License at

-  ~

-  ~     http://www.apache.org/licenses/LICENSE-2.0

-  ~

-  ~ Unless required by applicable law or agreed to in writing, software

-  ~ distributed under the License is distributed on an "AS IS" BASIS,

-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-  ~ See the License for the specific language governing permissions and

-  ~ limitations under the License.

-  -->

-

-<configuration>

-    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

-        <!-- encoders are assigned the type

-             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->

-        <encoder>

-            <pattern>%d{HH:mm:ss.SSS} %-5level [%thread] %logger{50} - %msg%n</pattern>

-        </encoder>

-    </appender>

-

-

-    <logger name="org.springframework" level="warn"/>

-    <logger name="org.hibernate" level="info"/>

-    <logger name="org.mockserver.mock" level="warn"/>

-    <logger name="org.onap.ccsdk.cds.controllerblueprints" level="warn"/>

-    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>

-

-    <root level="warn">

-        <appender-ref ref="STDOUT"/>

-    </root>

-

-</configuration>

+<!--
+  ~ Copyright © 2017-2018 AT&T Intellectual Property.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <!-- encoders are assigned the type
+             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} %-5level [%thread] %logger{50} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+
+    <logger name="org.springframework" level="warn"/>
+    <logger name="org.hibernate" level="info"/>
+    <logger name="org.mockserver.mock" level="warn"/>
+    <logger name="org.onap.ccsdk.cds.controllerblueprints" level="warn"/>
+    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>
+
+    <root level="warn">
+        <appender-ref ref="STDOUT"/>
+    </root>
+
+</configuration>
diff --git a/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/payload/inputs/input.json b/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/payload/inputs/input.json
index cd6fac1..52a8a4f 100644
--- a/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/payload/inputs/input.json
+++ b/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/payload/inputs/input.json
@@ -1,18 +1,18 @@
-{

-	"api-ver": "2.00",

-	"originator-id": "MSO",

-	"request-id": "123456",

-	"service-instance-id": "ibcx0001vm001",

-	"service-type": "AVPN",

-	"vnf-type": "vUSP - vDBE-IPX HUB",

-	"vnf-id": 123456,

-	"service-template-name": "VRR-baseconfiguration",

-	"service-template-version": "1.0.0",

-	"action-name": "resource-assignment-action",

-	"group-name": "sample group name",

-	"bundle-id": "sample bundle id",

-	"bundle-mac": [

-		"Sample bundle mac",

-		"Sample bundle mac"

-	]

-}

+{
+	"api-ver": "2.00",
+	"originator-id": "MSO",
+	"request-id": "123456",
+	"service-instance-id": "ibcx0001vm001",
+	"service-type": "AVPN",
+	"vnf-type": "vUSP - vDBE-IPX HUB",
+	"vnf-id": 123456,
+	"service-template-name": "VRR-baseconfiguration",
+	"service-template-version": "1.0.0",
+	"action-name": "resource-assignment-action",
+	"group-name": "sample group name",
+	"bundle-id": "sample bundle id",
+	"bundle-mac": [
+		"Sample bundle mac",
+		"Sample bundle mac"
+	]
+}
diff --git a/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/payload/requests/sample-resourceresolution-request.json b/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/payload/requests/sample-resourceresolution-request.json
index 6a7b4c2..cc653cc 100644
--- a/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/payload/requests/sample-resourceresolution-request.json
+++ b/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/payload/requests/sample-resourceresolution-request.json
@@ -1,32 +1,32 @@
-{

-  "actionIdentifiers": {

-    "actionName": "sample-action",

-    "blueprintName": "sample-blurprint",

-    "blueprintVersion": "1.0.0",

-    "mode": "sync"

-  },

-  "commonHeader": {

-    "flags": {

-      "force": true,

-      "ttl": 3600

-    },

-    "originatorId": "sdnc",

-    "requestId": "123456-1000",

-    "subRequestId": "sub-123456-1000",

-    "timestamp": "2012-04-23T18:25:43.511Z"

-  },

-  "payload": {

-    "resource-assignment-request": {

-      "resource-assignment-properties": {

-        "request-id": "1234",

-        "profile_name": "1.0.0",

-        "service-instance-id": "siid_1234",

-        "vnf-id": "vnf_1234",

-        "action-name": "assign-activate",

-        "scope-type": "vnf-type",

-        "hostname": "localhost",

-        "vnf_name": "temp_vnf"

-      }

-    }

-  }

-}

+{
+  "actionIdentifiers": {
+    "actionName": "sample-action",
+    "blueprintName": "sample-blurprint",
+    "blueprintVersion": "1.0.0",
+    "mode": "sync"
+  },
+  "commonHeader": {
+    "flags": {
+      "force": true,
+      "ttl": 3600
+    },
+    "originatorId": "sdnc",
+    "requestId": "123456-1000",
+    "subRequestId": "sub-123456-1000",
+    "timestamp": "2012-04-23T18:25:43.511Z"
+  },
+  "payload": {
+    "resource-assignment-request": {
+      "resource-assignment-properties": {
+        "request-id": "1234",
+        "profile_name": "1.0.0",
+        "service-instance-id": "siid_1234",
+        "vnf-id": "vnf_1234",
+        "action-name": "assign-activate",
+        "scope-type": "vnf-type",
+        "hostname": "localhost",
+        "vnf_name": "temp_vnf"
+      }
+    }
+  }
+}
diff --git a/ms/blueprintsprocessor/functions/restconf-executor/pom.xml b/ms/blueprintsprocessor/functions/restconf-executor/pom.xml
index c1dd501..2872a5a 100644
--- a/ms/blueprintsprocessor/functions/restconf-executor/pom.xml
+++ b/ms/blueprintsprocessor/functions/restconf-executor/pom.xml
@@ -23,6 +23,7 @@
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
     <artifactId>restconf-executor</artifactId>
+    <version>0.7.0-SNAPSHOT</version>
     <name>Blueprints Processor Function - Restconf Executor</name>
     <description>Blueprints Processor Function - Restconf Executor</description>
 
diff --git a/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/primary/domain/BlueprintModel.kt b/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/primary/domain/BlueprintModel.kt
index 17ffd5b..74a611f 100755
--- a/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/primary/domain/BlueprintModel.kt
+++ b/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/primary/domain/BlueprintModel.kt
@@ -34,11 +34,11 @@
 
 @EntityListeners(AuditingEntityListener::class)
 @Entity
-@Table(name = "CONFIG_MODEL", uniqueConstraints = [UniqueConstraint(columnNames = ["artifact_name", "artifact_version"])])
+@Table(name = "BLUEPRINT_MODEL", uniqueConstraints = [UniqueConstraint(columnNames = ["artifact_name", "artifact_version"])])
 @Proxy(lazy = false)
 class BlueprintModel : Serializable {
     @Id
-    @Column(name = "config_model_id")
+    @Column(name = "blueprint_model_id")
     var id: String? = null
 
     @Column(name = "service_uuid")
diff --git a/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/primary/domain/BlueprintModelContent.kt b/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/primary/domain/BlueprintModelContent.kt
index e0d26a7..bed6e4e 100644
--- a/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/primary/domain/BlueprintModelContent.kt
+++ b/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/primary/domain/BlueprintModelContent.kt
@@ -32,11 +32,11 @@
  */
 @EntityListeners(AuditingEntityListener::class)
 @Entity
-@Table(name = "CONFIG_MODEL_CONTENT")
+@Table(name = "BLUEPRINT_MODEL_CONTENT")
 class BlueprintModelContent : Serializable {
 
     @Id
-    @Column(name = "config_model_content_id")
+    @Column(name = "blueprint_model_content_id")
     var id: String? = null
 
     @Column(name = "name", nullable = false)
@@ -48,7 +48,7 @@
     lateinit var contentType: String
 
     @OneToOne
-    @JoinColumn(name = "config_model_id")
+    @JoinColumn(name = "blueprint_model_id")
     var blueprintModel: BlueprintModel? = null
 
     @Lob
diff --git a/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/primary/domain/BlueprintModelSearch.kt b/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/primary/domain/BlueprintModelSearch.kt
index f00d5ca..f47124d 100644
--- a/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/primary/domain/BlueprintModelSearch.kt
+++ b/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/primary/domain/BlueprintModelSearch.kt
@@ -32,13 +32,13 @@
  */
 
 @Entity
-@Table(name = "CONFIG_MODEL")
+@Table(name = "BLUEPRINT_MODEL")
 @JsonTypeName("blueprintModel")
 @JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = JsonTypeInfo.Id.NAME)
 class BlueprintModelSearch : Serializable {
 
     @Id
-    @Column(name = "config_model_id")
+    @Column(name = "blueprint_model_id")
     var id: String? = null
 
     @Column(name = "artifact_uuid")
diff --git a/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/service/BlueprintProcessorCatalogServiceImpl.kt b/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/service/BlueprintProcessorCatalogServiceImpl.kt
index 9ce45d1..3e0f351 100755
--- a/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/service/BlueprintProcessorCatalogServiceImpl.kt
+++ b/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/service/BlueprintProcessorCatalogServiceImpl.kt
@@ -117,6 +117,10 @@
             blueprintModelRepository.deleteByArtifactNameAndArtifactVersion(artifactName, artifactVersion)
             val deployFile =
                     normalizedPathName(bluePrintLoadConfiguration.blueprintDeployPath, artifactName, artifactVersion)
+
+            val cacheKey = BluePrintFileUtils.compileCacheKey(deployFile)
+            BluePrintCompileCache.cleanClassLoader(cacheKey)
+
             deleteNBDir(deployFile).let {
                 if (it) log.info("Deleted deployed blueprint model :$artifactName::$artifactVersion")
                 else log.info("Fail to delete deployed blueprint model :$artifactName::$artifactVersion")
diff --git a/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/service/ControllerBlueprintCatalogServiceImpl.kt b/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/service/ControllerBlueprintCatalogServiceImpl.kt
index 66b5d00..4c02fda 100755
--- a/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/service/ControllerBlueprintCatalogServiceImpl.kt
+++ b/ms/blueprintsprocessor/modules/commons/db-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/db/service/ControllerBlueprintCatalogServiceImpl.kt
@@ -21,14 +21,13 @@
 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.domain.BlueprintModel
 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.domain.BlueprintModelContent
 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.repository.BlueprintModelRepository
-import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants
-import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintException
+import org.onap.ccsdk.cds.controllerblueprints.core.*
 import org.onap.ccsdk.cds.controllerblueprints.core.common.ApplicationConstants
 import org.onap.ccsdk.cds.controllerblueprints.core.config.BluePrintLoadConfiguration
 import org.onap.ccsdk.cds.controllerblueprints.core.data.ErrorCode
-import org.onap.ccsdk.cds.controllerblueprints.core.deleteDir
 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintValidatorService
-import org.onap.ccsdk.cds.controllerblueprints.core.normalizedPath
+import org.onap.ccsdk.cds.controllerblueprints.core.scripts.BluePrintCompileCache
+import org.onap.ccsdk.cds.controllerblueprints.core.utils.BluePrintFileUtils
 import org.slf4j.LoggerFactory
 import org.springframework.dao.DataIntegrityViolationException
 import org.springframework.stereotype.Service
@@ -85,6 +84,12 @@
             throw BluePrintException("Not a valid Archive file(${archiveFile.absolutePath})")
         }
 
+        // cleanup up deploy folder for the Blueprint
+        val blueprintDeploy = normalizedPathName(bluePrintLoadConfiguration.blueprintDeployPath,
+                                    artifactName, artifactVersion)
+        val cacheKey = BluePrintFileUtils.compileCacheKey(blueprintDeploy)
+        BluePrintCompileCache.cleanClassLoader(cacheKey)
+
         blueprintModelRepository.findByArtifactNameAndArtifactVersion(artifactName!!, artifactVersion!!)?.let {
             log.info("Overwriting blueprint model :$artifactName::$artifactVersion")
             blueprintModelRepository.deleteByArtifactNameAndArtifactVersion(artifactName, artifactVersion)
diff --git a/ms/blueprintsprocessor/modules/commons/db-lib/src/test/resources/logback-test.xml b/ms/blueprintsprocessor/modules/commons/db-lib/src/test/resources/logback-test.xml
index 355cd3a..365c41c 100644
--- a/ms/blueprintsprocessor/modules/commons/db-lib/src/test/resources/logback-test.xml
+++ b/ms/blueprintsprocessor/modules/commons/db-lib/src/test/resources/logback-test.xml
@@ -1,35 +1,35 @@
-<!--

-  ~ Copyright © 2017-2018 AT&T Intellectual Property.

-  ~

-  ~ Licensed under the Apache License, Version 2.0 (the "License");

-  ~ you may not use this file except in compliance with the License.

-  ~ You may obtain a copy of the License at

-  ~

-  ~     http://www.apache.org/licenses/LICENSE-2.0

-  ~

-  ~ Unless required by applicable law or agreed to in writing, software

-  ~ distributed under the License is distributed on an "AS IS" BASIS,

-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-  ~ See the License for the specific language governing permissions and

-  ~ limitations under the License.

-  -->

-

-<configuration>

-    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

-        <!-- encoders are assigned the type

-             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->

-        <encoder>

-            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>

-        </encoder>

-    </appender>

-

-    <logger name="org.springframework.test" level="warn"/>

-    <logger name="org.springframework" level="warn"/>

-    <logger name="org.hibernate" level="info"/>

-    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>

-

-    <root level="warn">

-        <appender-ref ref="STDOUT"/>

-    </root>

-

-</configuration>

+<!--
+  ~ Copyright © 2017-2018 AT&T Intellectual Property.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <!-- encoders are assigned the type
+             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+    <logger name="org.springframework.test" level="warn"/>
+    <logger name="org.springframework" level="warn"/>
+    <logger name="org.hibernate" level="info"/>
+    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>
+
+    <root level="warn">
+        <appender-ref ref="STDOUT"/>
+    </root>
+
+</configuration>
diff --git a/ms/blueprintsprocessor/modules/commons/dmaap-lib/src/test/resources/logback-test.xml b/ms/blueprintsprocessor/modules/commons/dmaap-lib/src/test/resources/logback-test.xml
index ebb41b8..cff5742 100644
--- a/ms/blueprintsprocessor/modules/commons/dmaap-lib/src/test/resources/logback-test.xml
+++ b/ms/blueprintsprocessor/modules/commons/dmaap-lib/src/test/resources/logback-test.xml
@@ -1,40 +1,40 @@
-<!--

-  ~  ============LICENSE_START=======================================================

-  ~  ONAP - CDS

-  ~  ================================================================================

-  ~  Copyright (C) 2019 Huawei Technologies Co., Ltd. All rights reserved.

-  ~  ================================================================================

-  ~  Licensed under the Apache License, Version 2.0 (the "License");

-  ~  you may not use this file except in compliance with the License.

-  ~  You may obtain a copy of the License at

-  ~

-  ~       http://www.apache.org/licenses/LICENSE-2.0

-  ~

-  ~  Unless required by applicable law or agreed to in writing, software

-  ~  distributed under the License is distributed on an "AS IS" BASIS,

-  ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-  ~  See the License for the specific language governing permissions and

-  ~  limitations under the License.

-  ~  ============LICENSE_END=========================================================

-  -->

-

-

-<configuration>

-    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

-        <!-- encoders are assigned the type

-             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->

-        <encoder>

-            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>

-        </encoder>

-    </appender>

-

-    <logger name="org.springframework.test" level="warn"/>

-    <logger name="org.springframework" level="warn"/>

-    <logger name="org.hibernate" level="info"/>

-    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>

-

-    <root level="warn">

-        <appender-ref ref="STDOUT"/>

-    </root>

-

-</configuration>

+<!--
+  ~  ============LICENSE_START=======================================================
+  ~  ONAP - CDS
+  ~  ================================================================================
+  ~  Copyright (C) 2019 Huawei Technologies Co., Ltd. All rights reserved.
+  ~  ================================================================================
+  ~  Licensed under the Apache License, Version 2.0 (the "License");
+  ~  you may not use this file except in compliance with the License.
+  ~  You may obtain a copy of the License at
+  ~
+  ~       http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~  Unless required by applicable law or agreed to in writing, software
+  ~  distributed under the License is distributed on an "AS IS" BASIS,
+  ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~  See the License for the specific language governing permissions and
+  ~  limitations under the License.
+  ~  ============LICENSE_END=========================================================
+  -->
+
+
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <!-- encoders are assigned the type
+             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+    <logger name="org.springframework.test" level="warn"/>
+    <logger name="org.springframework" level="warn"/>
+    <logger name="org.hibernate" level="info"/>
+    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>
+
+    <root level="warn">
+        <appender-ref ref="STDOUT"/>
+    </root>
+
+</configuration>
diff --git a/ms/blueprintsprocessor/modules/commons/grpc-lib/pom.xml b/ms/blueprintsprocessor/modules/commons/grpc-lib/pom.xml
index e5214e1..5cc29a6 100644
--- a/ms/blueprintsprocessor/modules/commons/grpc-lib/pom.xml
+++ b/ms/blueprintsprocessor/modules/commons/grpc-lib/pom.xml
@@ -30,16 +30,16 @@
     <dependencies>
         <dependency>
             <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
+            <artifactId>blueprint-proto</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
             <artifactId>blueprint-core</artifactId>
         </dependency>
         <dependency>
             <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
             <artifactId>processor-core</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.onap.ccsdk.cds.components</groupId>
-            <artifactId>proto-definition</artifactId>
-        </dependency>
     </dependencies>
 
 </project>
diff --git a/ms/blueprintsprocessor/modules/commons/rest-lib/src/main/resources/application.properties b/ms/blueprintsprocessor/modules/commons/rest-lib/src/main/resources/application.properties
index 2ce8714..c10e96e 100644
--- a/ms/blueprintsprocessor/modules/commons/rest-lib/src/main/resources/application.properties
+++ b/ms/blueprintsprocessor/modules/commons/rest-lib/src/main/resources/application.properties
@@ -1,16 +1,16 @@
-#

-#  Copyright © 2017-2018 AT&T Intellectual Property.

-#

-#  Licensed under the Apache License, Version 2.0 (the "License");

-#  you may not use this file except in compliance with the License.

-#  You may obtain a copy of the License at

-#

-#      http://www.apache.org/licenses/LICENSE-2.0

-#

-#  Unless required by applicable law or agreed to in writing, software

-#  distributed under the License is distributed on an "AS IS" BASIS,

-#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-#  See the License for the specific language governing permissions and

-#  limitations under the License.

-#

-

+#
+#  Copyright © 2017-2018 AT&T Intellectual Property.
+#
+#  Licensed under the Apache License, Version 2.0 (the "License");
+#  you may not use this file except in compliance with the License.
+#  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+#
+
diff --git a/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/resources/logback-test.xml b/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/resources/logback-test.xml
index 355cd3a..365c41c 100644
--- a/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/resources/logback-test.xml
+++ b/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/resources/logback-test.xml
@@ -1,35 +1,35 @@
-<!--

-  ~ Copyright © 2017-2018 AT&T Intellectual Property.

-  ~

-  ~ Licensed under the Apache License, Version 2.0 (the "License");

-  ~ you may not use this file except in compliance with the License.

-  ~ You may obtain a copy of the License at

-  ~

-  ~     http://www.apache.org/licenses/LICENSE-2.0

-  ~

-  ~ Unless required by applicable law or agreed to in writing, software

-  ~ distributed under the License is distributed on an "AS IS" BASIS,

-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-  ~ See the License for the specific language governing permissions and

-  ~ limitations under the License.

-  -->

-

-<configuration>

-    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

-        <!-- encoders are assigned the type

-             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->

-        <encoder>

-            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>

-        </encoder>

-    </appender>

-

-    <logger name="org.springframework.test" level="warn"/>

-    <logger name="org.springframework" level="warn"/>

-    <logger name="org.hibernate" level="info"/>

-    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>

-

-    <root level="warn">

-        <appender-ref ref="STDOUT"/>

-    </root>

-

-</configuration>

+<!--
+  ~ Copyright © 2017-2018 AT&T Intellectual Property.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <!-- encoders are assigned the type
+             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+    <logger name="org.springframework.test" level="warn"/>
+    <logger name="org.springframework" level="warn"/>
+    <logger name="org.hibernate" level="info"/>
+    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>
+
+    <root level="warn">
+        <appender-ref ref="STDOUT"/>
+    </root>
+
+</configuration>
diff --git a/ms/blueprintsprocessor/modules/inbounds/configs-api/pom.xml b/ms/blueprintsprocessor/modules/inbounds/configs-api/pom.xml
index b09a8ac..d4d0307 100644
--- a/ms/blueprintsprocessor/modules/inbounds/configs-api/pom.xml
+++ b/ms/blueprintsprocessor/modules/inbounds/configs-api/pom.xml
@@ -21,8 +21,6 @@
         <artifactId>inbounds</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-
-    <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
     <artifactId>configs-api</artifactId>
     <version>0.7.0-SNAPSHOT</version>
     <packaging>jar</packaging>
diff --git a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/BluePrintManagementGRPCHandler.kt b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/BluePrintManagementGRPCHandler.kt
index c48f1dd..a3bf370 100644
--- a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/BluePrintManagementGRPCHandler.kt
+++ b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/BluePrintManagementGRPCHandler.kt
@@ -19,7 +19,7 @@
 package org.onap.ccsdk.cds.blueprintsprocessor.designer.api
 
 import com.google.protobuf.ByteString
-import io.grpc.StatusException
+import com.google.protobuf.util.JsonFormat
 import io.grpc.stub.StreamObserver
 import kotlinx.coroutines.runBlocking
 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.handler.BluePrintModelHandler
@@ -27,6 +27,7 @@
 import org.onap.ccsdk.cds.controllerblueprints.common.api.Status
 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants
 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintProcessorException
+import org.onap.ccsdk.cds.controllerblueprints.core.asJsonString
 import org.onap.ccsdk.cds.controllerblueprints.core.emptyTONull
 import org.onap.ccsdk.cds.controllerblueprints.core.utils.currentTimestamp
 import org.onap.ccsdk.cds.controllerblueprints.management.api.*
@@ -34,6 +35,7 @@
 import org.springframework.security.access.prepost.PreAuthorize
 import org.springframework.stereotype.Service
 
+//TODO("Convert to coroutines handler")
 @Service
 open class BluePrintManagementGRPCHandler(private val bluePrintModelHandler: BluePrintModelHandler)
     : BluePrintManagementServiceGrpc.BluePrintManagementServiceImplBase() {
@@ -45,6 +47,7 @@
     StreamObserver<BluePrintManagementOutput>) {
 
         runBlocking {
+            //TODO("catch if request id is missing")
             log.info("request(${request.commonHeader.requestId})")
             try {
                 /** Get the file byte array */
@@ -56,29 +59,67 @@
                 when (uploadAction) {
                     UploadAction.DRAFT.toString() -> {
                         val blueprintModel = bluePrintModelHandler.upload(byteArray, false)
-                        responseObserver.onNext(successStatus(request.commonHeader))
+                        responseObserver.onNext(successStatus(request.commonHeader, blueprintModel.asJsonString()))
                     }
                     UploadAction.PUBLISH.toString() -> {
                         val blueprintModel = bluePrintModelHandler.upload(byteArray, true)
-                        responseObserver.onNext(successStatus(request.commonHeader))
+                        responseObserver.onNext(successStatus(request.commonHeader, blueprintModel.asJsonString()))
                     }
                     UploadAction.VALIDATE.toString() -> {
                         //TODO("Not Implemented")
-                        responseObserver.onError(failStatus("Not Implemented",
+                        responseObserver.onNext(failStatus(request.commonHeader,
+                                "Upload action($uploadAction) not implemented",
                                 BluePrintProcessorException("Not Implemented")))
                     }
                     UploadAction.ENRICH.toString() -> {
                         val enrichedByteArray = bluePrintModelHandler.enrichBlueprintFileSource(byteArray)
-                        responseObserver.onNext(enrichmentStatus(request.commonHeader, enrichedByteArray))
+                        responseObserver.onNext(outputWithFileBytes(request.commonHeader, enrichedByteArray))
                     }
                     else -> {
-                        responseObserver.onError(failStatus("Upload action($uploadAction) not implemented",
-                                BluePrintProcessorException("Upload action($uploadAction) not implemented")))
+                        responseObserver.onNext(failStatus(request.commonHeader,
+                                "Upload action($uploadAction) not implemented",
+                                BluePrintProcessorException("Not implemented")))
                     }
                 }
-                responseObserver.onCompleted()
             } catch (e: Exception) {
-                responseObserver.onError(failStatus("request(${request.commonHeader.requestId}): Failed to upload CBA", e))
+                responseObserver.onNext(failStatus(request.commonHeader,
+                        "request(${request.commonHeader.requestId}): Failed to upload CBA", e))
+            } finally {
+                responseObserver.onCompleted()
+            }
+        }
+    }
+
+    @PreAuthorize("hasRole('USER')")
+    override fun downloadBlueprint(request: BluePrintDownloadInput,
+                                   responseObserver: StreamObserver<BluePrintManagementOutput>) {
+        runBlocking {
+            val blueprintName = request.actionIdentifiers.blueprintName
+            val blueprintVersion = request.actionIdentifiers.blueprintVersion
+            val blueprint = "blueprint $blueprintName:$blueprintVersion"
+
+            /** Get the Search Action */
+            val searchAction = request.actionIdentifiers?.actionName.emptyTONull()
+                    ?: DownloadAction.SEARCH.toString()
+
+            log.info("request(${request.commonHeader.requestId}): Received download $blueprint")
+            try {
+                when (searchAction) {
+                    DownloadAction.SEARCH.toString() -> {
+                        val downloadByteArray = bluePrintModelHandler.download(blueprintName, blueprintVersion)
+                        responseObserver.onNext(outputWithFileBytes(request.commonHeader, downloadByteArray))
+                    }
+                    else -> {
+                        responseObserver.onNext(failStatus(request.commonHeader,
+                                "Search action($searchAction) not implemented",
+                                BluePrintProcessorException("Not implemented")))
+                    }
+                }
+            } catch (e: Exception) {
+                responseObserver.onNext(failStatus(request.commonHeader,
+                        "request(${request.commonHeader.requestId}): Failed to delete $blueprint", e))
+            } finally {
+                responseObserver.onCompleted()
             }
         }
     }
@@ -96,14 +137,16 @@
             try {
                 bluePrintModelHandler.deleteBlueprintModel(blueprintName, blueprintVersion)
                 responseObserver.onNext(successStatus(request.commonHeader))
-                responseObserver.onCompleted()
             } catch (e: Exception) {
-                responseObserver.onError(failStatus("request(${request.commonHeader.requestId}): Failed to delete $blueprint", e))
+                responseObserver.onNext(failStatus(request.commonHeader,
+                        "request(${request.commonHeader.requestId}): Failed to delete $blueprint", e))
+            } finally {
+                responseObserver.onCompleted()
             }
         }
     }
 
-    private fun enrichmentStatus(header: CommonHeader, byteArray: ByteArray): BluePrintManagementOutput =
+    private fun outputWithFileBytes(header: CommonHeader, byteArray: ByteArray): BluePrintManagementOutput =
             BluePrintManagementOutput.newBuilder()
                     .setCommonHeader(header)
                     .setFileChunk(FileChunk.newBuilder().setChunk(ByteString.copyFrom(byteArray)))
@@ -114,21 +157,37 @@
                             .build())
                     .build()
 
-    private fun successStatus(header: CommonHeader): BluePrintManagementOutput =
-            BluePrintManagementOutput.newBuilder()
-                    .setCommonHeader(header)
-                    .setStatus(Status.newBuilder()
-                            .setTimestamp(currentTimestamp())
-                            .setMessage(BluePrintConstants.STATUS_SUCCESS)
-                            .setCode(200)
-                            .build())
-                    .build()
+    private fun successStatus(header: CommonHeader, propertyContent: String? = null): BluePrintManagementOutput {
+        // Populate Response Payload
+        val propertiesBuilder = BluePrintManagementOutput.newBuilder().propertiesBuilder
+        propertyContent?.let {
+            JsonFormat.parser().merge(propertyContent, propertiesBuilder)
+        }
+        return BluePrintManagementOutput.newBuilder()
+                .setCommonHeader(header)
+                .setProperties(propertiesBuilder.build())
+                .setStatus(Status.newBuilder()
+                        .setTimestamp(currentTimestamp())
+                        .setMessage(BluePrintConstants.STATUS_SUCCESS)
+                        .setCode(200)
+                        .build())
+                .build()
+    }
 
-    private fun failStatus(message: String, e: Exception): StatusException {
+    private fun failStatus(header: CommonHeader, message: String, e: Exception): BluePrintManagementOutput {
         log.error(message, e)
-        return io.grpc.Status.INTERNAL
-                .withDescription(message)
-                .withCause(e)
-                .asException()
+        return BluePrintManagementOutput.newBuilder()
+                .setCommonHeader(header)
+                .setStatus(Status.newBuilder()
+                        .setTimestamp(currentTimestamp())
+                        .setMessage(BluePrintConstants.STATUS_FAILURE)
+                        .setErrorMessage(message)
+                        .setCode(500)
+                        .build())
+                .build()
+//        return io.grpc.Status.INTERNAL
+//                .withDescription(message)
+//                .withCause(e)
+//                .asException()
     }
 }
diff --git a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/handler/BluePrintModelHandler.kt b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/handler/BluePrintModelHandler.kt
index 212ffd9..526e92c 100644
--- a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/handler/BluePrintModelHandler.kt
+++ b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/handler/BluePrintModelHandler.kt
@@ -123,19 +123,14 @@
     @Throws(BluePrintException::class)
     open fun downloadBlueprintModelFileByNameAndVersion(name: String,
                                                         version: String): ResponseEntity<Resource> {
-        val blueprintModel: BlueprintModel
         try {
-            blueprintModel = getBlueprintModelByNameAndVersion(name, version)
+            val archiveByteArray = download(name, version)
+            val fileName = "${name}_$version.zip"
+            return prepareResourceEntity(fileName, archiveByteArray)
         } catch (e: BluePrintException) {
             throw BluePrintException(ErrorCode.RESOURCE_NOT_FOUND.value,
                     String.format("Error while " + "downloading the CBA file: %s", e.message), e)
         }
-
-        val fileName = blueprintModel.id + ".zip"
-        val file = blueprintModel.blueprintModelContent?.content
-                ?: throw BluePrintException(ErrorCode.RESOURCE_NOT_FOUND.value,
-                        String.format("Error while downloading the CBA file: couldn't get model content"))
-        return prepareResourceEntity(fileName, file)
     }
 
     /**
@@ -153,7 +148,7 @@
             throw BluePrintException(ErrorCode.RESOURCE_NOT_FOUND.value, String.format("Error while " + "downloading the CBA file: %s", e.message), e)
         }
 
-        val fileName = blueprintModel.id + ".zip"
+        val fileName = "${blueprintModel.artifactName}_${blueprintModel.artifactVersion}.zip"
         val file = blueprintModel.blueprintModelContent?.content
                 ?: throw BluePrintException(ErrorCode.RESOURCE_NOT_FOUND.value,
                         String.format("Error while downloading the CBA file: couldn't get model content"))
@@ -319,6 +314,20 @@
         }
     }
 
+    /** Common CBA download function for RestController and GRPC Handler, the [fileSource] may be
+     * byteArray or File Part type.*/
+    open fun download(name: String, version: String): ByteArray {
+        try {
+            val blueprintModel = getBlueprintModelByNameAndVersion(name, version)
+            return blueprintModel.blueprintModelContent?.content
+                    ?: throw BluePrintException(ErrorCode.RESOURCE_NOT_FOUND.value,
+                            String.format("Error while downloading the CBA file: couldn't get model content"))
+        } catch (e: BluePrintException) {
+            throw BluePrintException(ErrorCode.RESOURCE_NOT_FOUND.value,
+                    String.format("Error while " + "downloading the CBA file: %s", e.message), e)
+        }
+    }
+
     /** Common CBA Enrich function for RestController and GRPC Handler, the [fileSource] may be
      * byteArray or File Part type.*/
     open suspend fun enrichBlueprintFileSource(fileSource: Any): ByteArray {
diff --git a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/BluePrintManagementGRPCHandlerTest.kt b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/BluePrintManagementGRPCHandlerTest.kt
index 6e4e91a..691cfd7 100644
--- a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/BluePrintManagementGRPCHandlerTest.kt
+++ b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/BluePrintManagementGRPCHandlerTest.kt
@@ -20,9 +20,13 @@
 
 import com.google.protobuf.ByteString
 import io.grpc.testing.GrpcServerRule
+import kotlinx.coroutines.runBlocking
 import org.junit.Rule
 import org.junit.Test
 import org.junit.runner.RunWith
+import org.onap.ccsdk.cds.blueprintsprocessor.grpc.GRPCLibConstants
+import org.onap.ccsdk.cds.blueprintsprocessor.grpc.TokenAuthGrpcClientProperties
+import org.onap.ccsdk.cds.blueprintsprocessor.grpc.service.TokenAuthGrpcClientService
 import org.onap.ccsdk.cds.controllerblueprints.common.api.ActionIdentifiers
 import org.onap.ccsdk.cds.controllerblueprints.common.api.CommonHeader
 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants
@@ -35,10 +39,7 @@
 import org.springframework.test.annotation.DirtiesContext
 import org.springframework.test.context.TestPropertySource
 import org.springframework.test.context.junit4.SpringRunner
-import kotlin.test.AfterTest
-import kotlin.test.BeforeTest
-import kotlin.test.assertEquals
-import kotlin.test.assertTrue
+import kotlin.test.*
 
 @RunWith(SpringRunner::class)
 @EnableAutoConfiguration
@@ -67,7 +68,7 @@
     }
 
     @Test
-    fun `test upload blueprint`() {
+    fun `test upload and download blueprint`() {
         val blockingStub = BluePrintManagementServiceGrpc.newBlockingStub(grpcServerRule.channel)
         val id = "123_upload"
         val req = createUploadInputRequest(id, UploadAction.PUBLISH.toString())
@@ -77,6 +78,16 @@
         assertTrue(output.status.message.contentEquals(BluePrintConstants.STATUS_SUCCESS),
                 "failed to get success status")
         assertEquals(id, output.commonHeader.requestId)
+
+        val downloadId = "123_download"
+        val downloadReq = createDownloadInputRequest(downloadId, DownloadAction.SEARCH.toString())
+
+        val downloadOutput = blockingStub.downloadBlueprint(downloadReq)
+        assertEquals(200, downloadOutput.status.code)
+        assertTrue(downloadOutput.status.message.contentEquals(BluePrintConstants.STATUS_SUCCESS),
+                "failed to get success status")
+        assertNotNull(downloadOutput.fileChunk?.chunk, "failed to get cba file chunks")
+        assertEquals(downloadId, downloadOutput.commonHeader.requestId)
     }
 
     @Test
@@ -96,6 +107,28 @@
         assertEquals(200, output.status.code)
     }
 
+    /** This is Integration test sample, Do not enable this test case in server build, this is for local desktop testing*/
+    private fun integrationTestGrpcManagement() {
+        runBlocking {
+            val tokenAuthGrpcClientProperties = TokenAuthGrpcClientProperties().apply {
+                host = "127.0.0.1"
+                port = 9111
+                type = GRPCLibConstants.TYPE_TOKEN_AUTH
+                token = "Basic Y2NzZGthcHBzOmNjc2RrYXBwcw=="
+            }
+            val basicAuthGrpcClientService = TokenAuthGrpcClientService(tokenAuthGrpcClientProperties)
+            val channel = basicAuthGrpcClientService.channel()
+
+            val blockingStub = BluePrintManagementServiceGrpc.newBlockingStub(channel)
+
+            val bluePrintUploadInput = createUploadInputRequest("12345", UploadAction.DRAFT.toString())
+
+            val bluePrintManagementOutput = blockingStub.uploadBlueprint(bluePrintUploadInput)
+            assertNotNull(bluePrintManagementOutput, "failed to get response")
+        }
+    }
+
+
     private fun createUploadInputRequest(id: String, action: String): BluePrintUploadInput {
         val file = normalizedFile("./src/test/resources/test-cba.zip")
         assertTrue(file.exists(), "couldnt get file ${file.absolutePath}")
@@ -123,6 +156,23 @@
                 .build()
     }
 
+    private fun createDownloadInputRequest(id: String, action: String): BluePrintDownloadInput {
+        val commonHeader = CommonHeader
+                .newBuilder()
+                .setTimestamp("2012-04-23T18:25:43.511Z")
+                .setOriginatorId("System")
+                .setRequestId(id)
+                .setSubRequestId("1234-56").build()
+
+        return BluePrintDownloadInput.newBuilder()
+                .setCommonHeader(commonHeader)
+                .setActionIdentifiers(ActionIdentifiers.newBuilder()
+                        .setBlueprintName("baseconfiguration")
+                        .setBlueprintVersion("1.0.0")
+                        .setActionName(action).build())
+                .build()
+    }
+
     private fun createRemoveInputRequest(id: String): BluePrintRemoveInput {
         val commonHeader = CommonHeader
                 .newBuilder()
diff --git a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/utils/BluePrintEnhancerUtilsTest.kt b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/utils/BluePrintEnhancerUtilsTest.kt
index 5999873..10bf887 100644
--- a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/utils/BluePrintEnhancerUtilsTest.kt
+++ b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/utils/BluePrintEnhancerUtilsTest.kt
@@ -22,13 +22,12 @@
 import org.junit.Test
 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.mock.MockFilePart
 import org.onap.ccsdk.cds.controllerblueprints.core.*
-import java.nio.file.Paths
 import java.util.*
 import kotlin.test.assertTrue
 
 class BluePrintEnhancerUtilsTest {
 
-    private val blueprintDir = "./../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration"
+    private val blueprintDir = "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration"
     private val blueprintArchivePath: String = "./target/blueprints/archive"
     private val blueprintEnrichmentPath: String = "./target/blueprints/enrichment"
     private var zipBlueprintFileName =  normalizedPathName(blueprintArchivePath, "test.zip")
@@ -39,7 +38,7 @@
         assertTrue(archiveDir.exists(), "failed to create archiveDir(${archiveDir.absolutePath}")
         val enhancerDir = normalizedFile(blueprintEnrichmentPath).reCreateDirs()
         assertTrue(enhancerDir.exists(), "failed to create enhancerDir(${enhancerDir.absolutePath}")
-        val blueprintFile = Paths.get(blueprintDir).toFile().normalize()
+        val blueprintFile = normalizedFile(blueprintDir)
         val testZipFile = blueprintFile.compress(zipBlueprintFileName)
         assertTrue(testZipFile.exists(), "Failed to create blueprint test zip(${testZipFile.absolutePath}")
     }
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/pom.xml b/ms/blueprintsprocessor/modules/inbounds/health-api/pom.xml
new file mode 100644
index 0000000..6037804
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/pom.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~  Copyright © 2019-2020 Orange.
+
+  ~
+  ~  Licensed under the Apache License, Version 2.0 (the "License");
+  ~  you may not use this file except in compliance with the License.
+  ~  You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~  Unless required by applicable law or agreed to in writing, software
+  ~  distributed under the License is distributed on an "AS IS" BASIS,
+  ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~  See the License for the specific language governing permissions and
+  ~  limitations under the License.
+  -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <artifactId>inbounds</artifactId>
+    <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+    <version>0.7.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>health-api</artifactId>
+
+  <packaging>jar</packaging>
+  <name>Blueprints Processor Health API</name>
+  <description>checking system check health endpoints</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+      <artifactId>rest-lib</artifactId>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/configuration/BasicAuthRestClientServiceConfiguration.kt b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/configuration/BasicAuthRestClientServiceConfiguration.kt
new file mode 100644
index 0000000..0a97d37
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/configuration/BasicAuthRestClientServiceConfiguration.kt
@@ -0,0 +1,50 @@
+/*
+ * Copyright © 2019-2020 Orange.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.onap.ccsdk.cds.blueprintsprocessor.healthapi.configuration
+
+import org.onap.ccsdk.cds.blueprintsprocessor.rest.BasicAuthRestClientProperties
+import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BasicAuthRestClientService
+import org.springframework.beans.factory.annotation.Value
+import org.springframework.context.annotation.Bean
+import org.springframework.context.annotation.Configuration
+import org.springframework.context.annotation.PropertySource
+
+@Configuration
+@PropertySource("classpath:application.properties")
+open class BasicAuthRestClientServiceConfiguration {
+
+    @Value("\${endpoints.user.name}")
+    private val username: String? = null
+
+    @Value("\${endpoints.user.password}")
+    private val password: String? = null
+
+    @Bean
+    open fun getBasicAuthRestClientProperties(): BasicAuthRestClientProperties {
+        val basicAuthRestClientProperties = BasicAuthRestClientProperties()
+        basicAuthRestClientProperties.username = username.toString()
+        basicAuthRestClientProperties.password = password.toString()
+        return basicAuthRestClientProperties
+    }
+
+    @Bean
+    open fun getBasicAuthRestClientService(): BasicAuthRestClientService {
+        return BasicAuthRestClientService(getBasicAuthRestClientProperties())
+    }
+
+
+}
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/controller/HealthCheckController.kt b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/controller/HealthCheckController.kt
new file mode 100644
index 0000000..1283ac5
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/controller/HealthCheckController.kt
@@ -0,0 +1,48 @@
+/*
+ * Copyright © 2019-2020 Orange.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.onap.ccsdk.cds.blueprintsprocessor.healthapi.controller
+
+import io.swagger.annotations.Api
+import io.swagger.annotations.ApiOperation
+import org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain.HealthApiResponse
+import org.onap.ccsdk.cds.blueprintsprocessor.healthapi.service.HealthCheckService
+import org.springframework.beans.factory.annotation.Autowired
+import org.springframework.http.MediaType
+import org.springframework.http.ResponseEntity
+import org.springframework.web.bind.annotation.RequestMapping
+import org.springframework.web.bind.annotation.RequestMethod
+import org.springframework.web.bind.annotation.ResponseBody
+import org.springframework.web.bind.annotation.RestController
+
+@RestController
+@RequestMapping("/api/v1/health")
+@Api(value = "/api/v1/health",
+        description = "gather all HealthCheckResponses for HealthChecks known to the runtime")
+open class HealthCheckController {
+
+    @Autowired
+    lateinit var healthApiService: HealthCheckService
+
+    @RequestMapping(path = [""],
+            method = [RequestMethod.GET],
+            produces = [MediaType.APPLICATION_JSON_VALUE])
+    @ResponseBody
+    @ApiOperation(value = "Health Check", hidden = true)
+    fun getSystemHealthCheckResponse(): ResponseEntity<HealthApiResponse> {
+        return ResponseEntity.ok().body(healthApiService.retrieveSystemStatus())
+    }
+}
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/domain/HealthApiResponse.kt b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/domain/HealthApiResponse.kt
new file mode 100644
index 0000000..4dac178
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/domain/HealthApiResponse.kt
@@ -0,0 +1,6 @@
+package org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain
+
+
+data class HealthApiResponse(val status: HealthCheckStatus, val checks:List<HealthCheckResponse>)
+
+
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/domain/HealthCheckResponse.kt b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/domain/HealthCheckResponse.kt
new file mode 100644
index 0000000..acac867
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/domain/HealthCheckResponse.kt
@@ -0,0 +1,6 @@
+package org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain
+
+
+data class HealthCheckResponse(val name: String, val status: HealthCheckStatus)
+
+
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/domain/HealthCheckStatus.kt b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/domain/HealthCheckStatus.kt
new file mode 100644
index 0000000..a891a40
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/domain/HealthCheckStatus.kt
@@ -0,0 +1,6 @@
+package org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain
+
+enum class HealthCheckStatus {
+    UP,
+    DOWN
+}
\ No newline at end of file
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/domain/ServiceEndpoint.kt b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/domain/ServiceEndpoint.kt
new file mode 100644
index 0000000..8fbc33b
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/domain/ServiceEndpoint.kt
@@ -0,0 +1,5 @@
+package org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain
+
+
+
+data class ServiceEndpoint(val serviceName: String, val serviceLink: String)
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/service/HealthCheckService.kt b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/service/HealthCheckService.kt
new file mode 100644
index 0000000..09fdb67
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/service/HealthCheckService.kt
@@ -0,0 +1,91 @@
+/*
+ * Copyright © 2019-2020 Orange.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.onap.ccsdk.cds.blueprintsprocessor.healthapi.service
+
+import org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain.HealthApiResponse
+import org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain.HealthCheckResponse
+import org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain.HealthCheckStatus
+import org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain.ServiceEndpoint
+import org.onap.ccsdk.cds.blueprintsprocessor.rest.BasicAuthRestClientProperties
+import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BasicAuthRestClientService
+import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BlueprintWebClientService
+import org.slf4j.LoggerFactory
+import org.springframework.beans.factory.annotation.Autowired
+import org.springframework.http.HttpMethod
+import org.springframework.stereotype.Service
+
+
+@Service
+class HealthCheckService {
+
+    private var logger = LoggerFactory.getLogger(HealthCheckService::class.java)
+
+    @Autowired
+    lateinit var basicAuthRestClientService: BasicAuthRestClientService
+
+    @Autowired
+    lateinit var restClientProperties: BasicAuthRestClientProperties
+
+
+    open fun setupServiceEndpoint(): List<ServiceEndpoint> {
+        return listOf(ServiceEndpoint("Execution service", "http://cds-blueprints-processor-http:8080/api/v1/execution-service/health-check"),
+                ServiceEndpoint("Template service", "http://cds-blueprints-processor-http:8080/api/v1/template/health-check"),
+                ServiceEndpoint("Resources service", "http://cds-blueprints-processor-http:8080/api/v1/resources/health-check"),
+                ServiceEndpoint("SDC Listener service", "http://cds-sdc-listener:8080/api/v1/sdclistener/health-check")
+        )
+    }
+
+    fun retrieveSystemStatus(): HealthApiResponse {
+        logger.info("Retrieve System Status")
+        var healthApiResponse: HealthApiResponse
+        val listOfResponse = mutableListOf<HealthCheckResponse>()
+        var systemStatus: HealthCheckStatus = HealthCheckStatus.UP
+
+        for (serviceEndpoint in setupServiceEndpoint().parallelStream()) {
+            var serviceStatus: HealthCheckStatus = retrieveServiceStatus(serviceEndpoint)
+            if (serviceStatus.equals(HealthCheckStatus.DOWN))
+                systemStatus = HealthCheckStatus.DOWN
+
+            listOfResponse.add(HealthCheckResponse(serviceEndpoint.serviceName, serviceStatus))
+        }
+        healthApiResponse = HealthApiResponse(systemStatus, listOfResponse)
+        return healthApiResponse
+    }
+
+    private fun retrieveServiceStatus(serviceEndpoint: ServiceEndpoint): HealthCheckStatus {
+        var serviceStatus: HealthCheckStatus = HealthCheckStatus.UP
+        try {
+            addClientPropertiesConfiguration(serviceEndpoint)
+            val result: BlueprintWebClientService.WebClientResponse<String> = basicAuthRestClientService.exchangeResource(HttpMethod.GET.name, "", "")
+            if (result == null || result.status != 200) {
+                serviceStatus = HealthCheckStatus.DOWN
+
+            }
+        } catch (e: Exception) {
+            logger.error("service is down" + e)
+            serviceStatus = HealthCheckStatus.DOWN
+
+        }
+        return serviceStatus
+    }
+
+    private fun addClientPropertiesConfiguration(serviceEndpoint: ServiceEndpoint) {
+        restClientProperties.url = serviceEndpoint.serviceLink
+    }
+
+
+}
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/resources/application.properties b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/resources/application.properties
new file mode 100644
index 0000000..aca95b4
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/main/resources/application.properties
@@ -0,0 +1,18 @@
+#
+#  Copyright � 2019-2020 Orange.
+#
+#  Licensed under the Apache License, Version 2.0 (the "License");
+#  you may not use this file except in compliance with the License.
+#  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+#
+
+endpoints.user.name=ccsdkapps
+endpoints.user.password=ccsdkapps
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/HealthCheckApplicationTests.kt b/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/HealthCheckApplicationTests.kt
new file mode 100644
index 0000000..cd02b65
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/HealthCheckApplicationTests.kt
@@ -0,0 +1,55 @@
+/*
+ * Copyright © 2019-2020 Orange.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.onap.ccsdk.cds.blueprintsprocessor.healthapi
+
+
+import org.junit.Test
+import org.junit.runner.RunWith
+import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintCoreConfiguration
+import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintCatalogService
+import org.springframework.beans.factory.annotation.Autowired
+import org.springframework.boot.autoconfigure.security.SecurityProperties
+import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest
+import org.springframework.context.annotation.ComponentScan
+import org.springframework.test.context.ContextConfiguration
+import org.springframework.test.context.TestPropertySource
+import org.springframework.test.context.junit4.SpringRunner
+import org.springframework.test.web.reactive.server.WebTestClient
+
+
+@RunWith(SpringRunner::class)
+@WebFluxTest
+@ContextConfiguration(classes = [BluePrintCoreConfiguration::class,
+    BluePrintCatalogService::class, SecurityProperties::class])
+@ComponentScan(basePackages = ["org.onap.ccsdk.cds.blueprintsprocessor", "org.onap.ccsdk.cds.controllerblueprints"])
+@TestPropertySource(locations = ["classpath:application-test.properties"])
+class HealthCheckApplicationTests {
+
+
+    @Autowired
+    lateinit var webTestClient: WebTestClient
+
+    @Test
+    fun testHealthApiUp() {
+        val result = webTestClient.get().uri("/api/v1/health")
+                .exchange()
+                .expectStatus().is2xxSuccessful
+        println(result)
+    }
+
+
+}
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/HealthCheckServiceTest.java b/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/HealthCheckServiceTest.java
new file mode 100644
index 0000000..8fb5e58
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/healthapi/HealthCheckServiceTest.java
@@ -0,0 +1,137 @@
+/*
+ * Copyright © 2019-2020 Orange.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.onap.ccsdk.cds.blueprintsprocessor.healthapi;
+
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.mockito.ArgumentMatchers.any;
+import static org.mockito.ArgumentMatchers.eq;
+import static org.mockito.Mockito.anyString;
+
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.InjectMocks;
+import org.mockito.Mock;
+import org.mockito.Mockito;
+import org.mockito.junit.MockitoJUnitRunner;
+import org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain.HealthApiResponse;
+import org.onap.ccsdk.cds.blueprintsprocessor.healthapi.domain.HealthCheckStatus;
+import org.onap.ccsdk.cds.blueprintsprocessor.healthapi.service.HealthCheckService;
+import org.onap.ccsdk.cds.blueprintsprocessor.rest.BasicAuthRestClientProperties;
+import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BasicAuthRestClientService;
+import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BlueprintWebClientService.WebClientResponse;
+import org.springframework.http.HttpMethod;
+
+@RunWith(MockitoJUnitRunner.class)
+public class HealthCheckServiceTest {
+
+  @Mock
+  private BasicAuthRestClientService basicAuthRestClientService;
+
+  @Mock
+  private BasicAuthRestClientProperties restClientProperties;
+
+  @InjectMocks
+  private HealthCheckService healthCheckService = new HealthCheckService();
+
+  @Before
+  public void setup() {
+  }
+
+  @Test
+  public void testSystemIsCompletelyDown() {
+
+    Mockito.when(basicAuthRestClientService.exchangeResource(anyString(), anyString(), anyString())).
+            thenThrow(new RuntimeException());
+    HealthApiResponse healthApiResponse = healthCheckService.retrieveSystemStatus();
+    assertNotNull(healthApiResponse);
+    Assert.assertEquals(healthApiResponse.getStatus(), HealthCheckStatus.DOWN);
+    healthApiResponse.getChecks().stream().forEach(serviceEndpoint -> {
+      assertNotNull(serviceEndpoint);
+      assertEquals(serviceEndpoint.getStatus(), HealthCheckStatus.DOWN);
+
+    });
+
+  }
+
+
+  @Test
+  public void testSystemIsUPAndRunning() {
+
+    Mockito.when(basicAuthRestClientService.exchangeResource(eq(HttpMethod.GET.name()), anyString(), anyString())).
+            thenReturn(new WebClientResponse<>(200, "Success"));
+    HealthApiResponse healthApiResponse = healthCheckService.retrieveSystemStatus();
+    assertNotNull(healthApiResponse);
+    assertEquals(healthApiResponse.getStatus(), HealthCheckStatus.UP);
+    healthApiResponse.getChecks().stream().forEach(serviceEndpoint -> {
+      assertNotNull(serviceEndpoint);
+      assertEquals(serviceEndpoint.getStatus(), HealthCheckStatus.UP);
+
+    });
+
+  }
+
+  @Test
+  public void testServiceIsNotFound() {
+    Mockito.when(basicAuthRestClientService.exchangeResource(eq(HttpMethod.GET.name()), any(), anyString())).
+            thenReturn(new WebClientResponse<>(404, "failure"));
+    HealthApiResponse healthApiResponse = healthCheckService.retrieveSystemStatus();
+    assertNotNull(healthApiResponse);
+    assertEquals(healthApiResponse.getStatus(), HealthCheckStatus.DOWN);
+    healthApiResponse.getChecks().stream().forEach(serviceEndpoint -> {
+      assertNotNull(serviceEndpoint);
+      assertEquals(serviceEndpoint.getStatus(), HealthCheckStatus.DOWN);
+
+    });
+
+  }
+
+
+  @Test
+  public void testServiceInternalServerError() {
+    Mockito.when(basicAuthRestClientService.exchangeResource(eq(HttpMethod.GET.name()), any(), anyString()))
+            .thenReturn(new WebClientResponse<>(500, "failure"));
+    HealthApiResponse healthApiResponse = healthCheckService.retrieveSystemStatus();
+    assertNotNull(healthApiResponse);
+    assertEquals(healthApiResponse.getStatus(), HealthCheckStatus.DOWN);
+    healthApiResponse.getChecks().stream().forEach(serviceEndpoint -> {
+      assertNotNull(serviceEndpoint);
+      assertEquals(serviceEndpoint.getStatus(), HealthCheckStatus.DOWN);
+
+    });
+
+  }
+
+  @Test
+  public void testServiceIsRedirected() {
+    Mockito.when(basicAuthRestClientService.exchangeResource(eq(HttpMethod.GET.name()), any(), anyString()))
+            .thenReturn(new WebClientResponse<>(300, "failure"));
+    HealthApiResponse healthApiResponse = healthCheckService.retrieveSystemStatus();
+    assertNotNull(healthApiResponse);
+    assertEquals(healthApiResponse.getStatus(), HealthCheckStatus.DOWN);
+    healthApiResponse.getChecks().stream().forEach(serviceEndpoint -> {
+      assertNotNull(serviceEndpoint);
+      assertEquals(serviceEndpoint.getStatus(), HealthCheckStatus.DOWN);
+
+    });
+
+  }
+
+}
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/resources/application-test.properties b/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/resources/application-test.properties
new file mode 100644
index 0000000..c9a5700
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/resources/application-test.properties
@@ -0,0 +1,31 @@
+#  Copyright © 2019 Bell Canada.
+#
+#  Licensed under the Apache License, Version 2.0 (the "License");
+#  you may not use this file except in compliance with the License.
+#  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+
+blueprintsprocessor.db.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1
+blueprintsprocessor.db.username=sa
+blueprintsprocessor.db.password=
+blueprintsprocessor.db.driverClassName=org.h2.Driver
+blueprintsprocessor.db.hibernateHbm2ddlAuto=create-drop
+blueprintsprocessor.db.hibernateDDLAuto=update
+blueprintsprocessor.db.hibernateNamingStrategy=org.hibernate.cfg.ImprovedNamingStrategy
+blueprintsprocessor.db.hibernateDialect=org.hibernate.dialect.H2Dialect
+# Controller Blueprints Core Configuration
+blueprintsprocessor.blueprintDeployPath=./target/blueprints/deploy
+blueprintsprocessor.blueprintWorkingPath=./target/blueprints/work
+blueprintsprocessor.blueprintArchivePath=./target/blueprints/archive
+
+# Python executor
+blueprints.processor.functions.python.executor.executionPath=./../../../../components/scripts/python/ccsdk_blueprints
+blueprints.processor.functions.python.executor.modulePaths=./../../../../components/scripts/python/ccsdk_blueprints
+server.socket=localhost:8080
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/resources/logback.xml b/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/resources/logback.xml
new file mode 100644
index 0000000..ed92b89
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/resources/logback.xml
@@ -0,0 +1,35 @@
+<!--
+  ~ Copyright © 2019 Bell Canada
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <!-- encoders are assigned the type
+             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+
+    <logger name="org.springframework" level="warn"/>
+    <logger name="org.hibernate" level="info"/>
+    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>
+
+    <root level="info">
+        <appender-ref ref="STDOUT"/>
+    </root>
+
+</configuration>
diff --git a/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker b/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
new file mode 100644
index 0000000..1f0955d
--- /dev/null
+++ b/ms/blueprintsprocessor/modules/inbounds/health-api/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
@@ -0,0 +1 @@
+mock-maker-inline
diff --git a/ms/blueprintsprocessor/modules/inbounds/pom.xml b/ms/blueprintsprocessor/modules/inbounds/pom.xml
index 0542fe3..a1d7161 100644
--- a/ms/blueprintsprocessor/modules/inbounds/pom.xml
+++ b/ms/blueprintsprocessor/modules/inbounds/pom.xml
@@ -33,6 +33,7 @@
         <module>designer-api</module>
         <module>resource-api</module>
         <module>selfservice-api</module>
+        <module>health-api</module>
     </modules>
     <dependencies>
         <dependency>
diff --git a/ms/blueprintsprocessor/modules/inbounds/resource-api/src/test/resources/application-test.properties b/ms/blueprintsprocessor/modules/inbounds/resource-api/src/test/resources/application-test.properties
index 7d74687..cb7837b 100644
--- a/ms/blueprintsprocessor/modules/inbounds/resource-api/src/test/resources/application-test.properties
+++ b/ms/blueprintsprocessor/modules/inbounds/resource-api/src/test/resources/application-test.properties
@@ -1,33 +1,33 @@
-#

-# Copyright � 2017-2018 AT&T Intellectual Property.

-#

-# Modifications Copyright � 2019 IBM, Bell Canada.

-#

-# Licensed under the Apache License, Version 2.0 (the "License");

-# you may not use this file except in compliance with the License.

-# You may obtain a copy of the License at

-#

-#     http://www.apache.org/licenses/LICENSE-2.0

-#

-# Unless required by applicable law or agreed to in writing, software

-# distributed under the License is distributed on an "AS IS" BASIS,

-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-# See the License for the specific language governing permissions and

-# limitations under the License.

-#

-blueprintsprocessor.db.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1

-blueprintsprocessor.db.username=sa

-blueprintsprocessor.db.password=

-blueprintsprocessor.db.driverClassName=org.h2.Driver

-blueprintsprocessor.db.hibernateHbm2ddlAuto=create-drop

-blueprintsprocessor.db.hibernateDDLAuto=update

-blueprintsprocessor.db.hibernateNamingStrategy=org.hibernate.cfg.ImprovedNamingStrategy

-blueprintsprocessor.db.hibernateDialect=org.hibernate.dialect.H2Dialect

-# Controller Blueprints Core Configuration

-blueprintsprocessor.blueprintDeployPath=./target/blueprints/deploy

-blueprintsprocessor.blueprintWorkingPath=./target/blueprints/work

-blueprintsprocessor.blueprintArchivePath=./target/blueprints/archive

-

-# Python executor

-blueprints.processor.functions.python.executor.executionPath=./../../../../components/scripts/python/ccsdk_blueprints

-blueprints.processor.functions.python.executor.modulePaths=./../../../../components/scripts/python/ccsdk_blueprints

+#
+# Copyright � 2017-2018 AT&T Intellectual Property.
+#
+# Modifications Copyright � 2019 IBM, Bell Canada.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+blueprintsprocessor.db.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1
+blueprintsprocessor.db.username=sa
+blueprintsprocessor.db.password=
+blueprintsprocessor.db.driverClassName=org.h2.Driver
+blueprintsprocessor.db.hibernateHbm2ddlAuto=create-drop
+blueprintsprocessor.db.hibernateDDLAuto=update
+blueprintsprocessor.db.hibernateNamingStrategy=org.hibernate.cfg.ImprovedNamingStrategy
+blueprintsprocessor.db.hibernateDialect=org.hibernate.dialect.H2Dialect
+# Controller Blueprints Core Configuration
+blueprintsprocessor.blueprintDeployPath=./target/blueprints/deploy
+blueprintsprocessor.blueprintWorkingPath=./target/blueprints/work
+blueprintsprocessor.blueprintArchivePath=./target/blueprints/archive
+
+# Python executor
+blueprints.processor.functions.python.executor.executionPath=./../../../../components/scripts/python/ccsdk_blueprints
+blueprints.processor.functions.python.executor.modulePaths=./../../../../components/scripts/python/ccsdk_blueprints
diff --git a/ms/blueprintsprocessor/modules/inbounds/resource-api/src/test/resources/logback.xml b/ms/blueprintsprocessor/modules/inbounds/resource-api/src/test/resources/logback.xml
index 56b0774..c546502 100644
--- a/ms/blueprintsprocessor/modules/inbounds/resource-api/src/test/resources/logback.xml
+++ b/ms/blueprintsprocessor/modules/inbounds/resource-api/src/test/resources/logback.xml
@@ -1,35 +1,35 @@
-<!--

-  ~ Copyright © 2017-2018 AT&T Intellectual Property.

-  ~

-  ~ Licensed under the Apache License, Version 2.0 (the "License");

-  ~ you may not use this file except in compliance with the License.

-  ~ You may obtain a copy of the License at

-  ~

-  ~     http://www.apache.org/licenses/LICENSE-2.0

-  ~

-  ~ Unless required by applicable law or agreed to in writing, software

-  ~ distributed under the License is distributed on an "AS IS" BASIS,

-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-  ~ See the License for the specific language governing permissions and

-  ~ limitations under the License.

-  -->

-

-<configuration>

-    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

-        <!-- encoders are assigned the type

-             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->

-        <encoder>

-            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>

-        </encoder>

-    </appender>

-

-

-    <logger name="org.springframework" level="warn"/>

-    <logger name="org.hibernate" level="info"/>

-    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>

-

-    <root level="info">

-        <appender-ref ref="STDOUT"/>

-    </root>

-

-</configuration>

+<!--
+  ~ Copyright © 2017-2018 AT&T Intellectual Property.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <!-- encoders are assigned the type
+             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+
+    <logger name="org.springframework" level="warn"/>
+    <logger name="org.hibernate" level="info"/>
+    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>
+
+    <root level="info">
+        <appender-ref ref="STDOUT"/>
+    </root>
+
+</configuration>
diff --git a/ms/blueprintsprocessor/modules/inbounds/selfservice-api/pom.xml b/ms/blueprintsprocessor/modules/inbounds/selfservice-api/pom.xml
index 7c53e1c..b5cac58 100755
--- a/ms/blueprintsprocessor/modules/inbounds/selfservice-api/pom.xml
+++ b/ms/blueprintsprocessor/modules/inbounds/selfservice-api/pom.xml
@@ -33,10 +33,9 @@
     <dependencies>
 
         <dependency>
-            <groupId>org.onap.ccsdk.cds.components</groupId>
-            <artifactId>proto-definition</artifactId>
+            <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
+            <artifactId>blueprint-proto</artifactId>
         </dependency>
-
         <dependency>
             <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
             <artifactId>blueprint-core</artifactId>
diff --git a/ms/blueprintsprocessor/modules/services/execution-service/pom.xml b/ms/blueprintsprocessor/modules/services/execution-service/pom.xml
index 4acc224..784906b 100644
--- a/ms/blueprintsprocessor/modules/services/execution-service/pom.xml
+++ b/ms/blueprintsprocessor/modules/services/execution-service/pom.xml
@@ -57,10 +57,6 @@
             <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
             <artifactId>resource-dict</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.onap.ccsdk.cds.components</groupId>
-            <artifactId>proto-definition</artifactId>
-        </dependency>
 
         <dependency>
             <groupId>org.onap.ccsdk.sli.core</groupId>
diff --git a/ms/blueprintsprocessor/modules/services/execution-service/src/test/resources/payload/inputs/input.json b/ms/blueprintsprocessor/modules/services/execution-service/src/test/resources/payload/inputs/input.json
index cd6fac1..52a8a4f 100644
--- a/ms/blueprintsprocessor/modules/services/execution-service/src/test/resources/payload/inputs/input.json
+++ b/ms/blueprintsprocessor/modules/services/execution-service/src/test/resources/payload/inputs/input.json
@@ -1,18 +1,18 @@
-{

-	"api-ver": "2.00",

-	"originator-id": "MSO",

-	"request-id": "123456",

-	"service-instance-id": "ibcx0001vm001",

-	"service-type": "AVPN",

-	"vnf-type": "vUSP - vDBE-IPX HUB",

-	"vnf-id": 123456,

-	"service-template-name": "VRR-baseconfiguration",

-	"service-template-version": "1.0.0",

-	"action-name": "resource-assignment-action",

-	"group-name": "sample group name",

-	"bundle-id": "sample bundle id",

-	"bundle-mac": [

-		"Sample bundle mac",

-		"Sample bundle mac"

-	]

-}

+{
+	"api-ver": "2.00",
+	"originator-id": "MSO",
+	"request-id": "123456",
+	"service-instance-id": "ibcx0001vm001",
+	"service-type": "AVPN",
+	"vnf-type": "vUSP - vDBE-IPX HUB",
+	"vnf-id": 123456,
+	"service-template-name": "VRR-baseconfiguration",
+	"service-template-version": "1.0.0",
+	"action-name": "resource-assignment-action",
+	"group-name": "sample group name",
+	"bundle-id": "sample bundle id",
+	"bundle-mac": [
+		"Sample bundle mac",
+		"Sample bundle mac"
+	]
+}
diff --git a/ms/blueprintsprocessor/modules/services/execution-service/src/test/resources/payload/requests/sample-execution-request.json b/ms/blueprintsprocessor/modules/services/execution-service/src/test/resources/payload/requests/sample-execution-request.json
index b28ac5a..27eec82 100644
--- a/ms/blueprintsprocessor/modules/services/execution-service/src/test/resources/payload/requests/sample-execution-request.json
+++ b/ms/blueprintsprocessor/modules/services/execution-service/src/test/resources/payload/requests/sample-execution-request.json
@@ -1,20 +1,20 @@
-{

-  "actionIdentifiers": {

-    "actionName": "sample-action",

-    "blueprintName": "sample-blurprint",

-    "blueprintVersion": "1.0.0",

-    "mode": "sync"

-  },

-  "commonHeader": {

-    "flags": {

-      "force": true,

-      "ttl": 3600

-    },

-    "originatorId": "sdnc",

-    "requestId": "123456-1000",

-    "subRequestId": "sub-123456-1000",

-    "timestamp": "2012-04-23T18:25:43.511Z"

-  },

-  "payload": {

-  }

-}

+{
+  "actionIdentifiers": {
+    "actionName": "sample-action",
+    "blueprintName": "sample-blurprint",
+    "blueprintVersion": "1.0.0",
+    "mode": "sync"
+  },
+  "commonHeader": {
+    "flags": {
+      "force": true,
+      "ttl": 3600
+    },
+    "originatorId": "sdnc",
+    "requestId": "123456-1000",
+    "subRequestId": "sub-123456-1000",
+    "timestamp": "2012-04-23T18:25:43.511Z"
+  },
+  "payload": {
+  }
+}
diff --git a/ms/blueprintsprocessor/modules/services/workflow-service/src/test/resources/logback.xml b/ms/blueprintsprocessor/modules/services/workflow-service/src/test/resources/logback.xml
index 56e6622..3245937 100644
--- a/ms/blueprintsprocessor/modules/services/workflow-service/src/test/resources/logback.xml
+++ b/ms/blueprintsprocessor/modules/services/workflow-service/src/test/resources/logback.xml
@@ -1,35 +1,35 @@
-<!--

-  ~ Copyright © 2017-2018 AT&T Intellectual Property.

-  ~

-  ~ Licensed under the Apache License, Version 2.0 (the "License");

-  ~ you may not use this file except in compliance with the License.

-  ~ You may obtain a copy of the License at

-  ~

-  ~     http://www.apache.org/licenses/LICENSE-2.0

-  ~

-  ~ Unless required by applicable law or agreed to in writing, software

-  ~ distributed under the License is distributed on an "AS IS" BASIS,

-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-  ~ See the License for the specific language governing permissions and

-  ~ limitations under the License.

-  -->

-

-<configuration>

-    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

-        <!-- encoders are assigned the type

-             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->

-        <encoder>

-            <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>

-        </encoder>

-    </appender>

-

-

-    <logger name="org.springframework" level="warn"/>

-    <logger name="org.hibernate" level="info"/>

-    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>

-

-    <root level="warn">

-        <appender-ref ref="STDOUT"/>

-    </root>

-

-</configuration>

+<!--
+  ~ Copyright © 2017-2018 AT&T Intellectual Property.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<configuration>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <!-- encoders are assigned the type
+             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+
+    <logger name="org.springframework" level="warn"/>
+    <logger name="org.hibernate" level="info"/>
+    <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>
+
+    <root level="warn">
+        <appender-ref ref="STDOUT"/>
+    </root>
+
+</configuration>
diff --git a/ms/blueprintsprocessor/parent/pom.xml b/ms/blueprintsprocessor/parent/pom.xml
index 5a54a77..cd40564 100755
--- a/ms/blueprintsprocessor/parent/pom.xml
+++ b/ms/blueprintsprocessor/parent/pom.xml
@@ -37,7 +37,7 @@
         <jython.version>2.7.1</jython.version>
         <!--        Should be using released artifact as soon as available:-->
         <!--        https://github.com/springfox/springfox/milestone/44-->
-        <springfox.swagger2.version>3.0.0-SNAPSHOT</springfox.swagger2.version>
+        <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
         <h2database.version>1.4.197</h2database.version>
         <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
         <powermock.version>1.7.4</powermock.version>
@@ -96,17 +96,17 @@
                     </exclusion>
                 </exclusions>
             </dependency>
-            <dependency>
-                <groupId>io.springfox</groupId>
-                <artifactId>springfox-spring-webflux</artifactId>
-                <version>${springfox.swagger2.version}</version>
-                <exclusions>
-                    <exclusion>
-                        <groupId>org.slf4j</groupId>
-                        <artifactId>slf4j-api</artifactId>
-                    </exclusion>
-                </exclusions>
-            </dependency>
+<!--            <dependency>-->
+<!--                <groupId>io.springfox</groupId>-->
+<!--                <artifactId>springfox-spring-webflux</artifactId>-->
+<!--                <version>${springfox.swagger2.version}</version>-->
+<!--                <exclusions>-->
+<!--                    <exclusion>-->
+<!--                        <groupId>org.slf4j</groupId>-->
+<!--                        <artifactId>slf4j-api</artifactId>-->
+<!--                    </exclusion>-->
+<!--                </exclusions>-->
+<!--            </dependency>-->
 
             <!-- Common Utils Dependencies -->
             <dependency>
@@ -248,11 +248,7 @@
                 <artifactId>protobuf-java-util</artifactId>
                 <version>${protobuff.java.utils.version}</version>
             </dependency>
-            <dependency>
-                <groupId>org.onap.ccsdk.cds.components</groupId>
-                <artifactId>proto-definition</artifactId>
-                <version>${project.version}</version>
-            </dependency>
+
 
             <!-- Adaptors -->
             <dependency>
@@ -371,6 +367,12 @@
                 <version>${project.version}</version>
             </dependency>
 
+            <dependency>
+                <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+                <artifactId>health-api</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+
             <!-- North Bound -->
             <dependency>
                 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
@@ -460,6 +462,11 @@
             </dependency>
             <dependency>
                 <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
+                <artifactId>blueprint-proto</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
                 <artifactId>blueprint-validation</artifactId>
                 <version>${project.version}</version>
             </dependency>
@@ -569,10 +576,10 @@
                 </exclusion>
             </exclusions>
         </dependency>
-        <dependency>
-            <groupId>io.springfox</groupId>
-            <artifactId>springfox-spring-webflux</artifactId>
-        </dependency>
+<!--        <dependency>-->
+<!--            <groupId>io.springfox</groupId>-->
+<!--            <artifactId>springfox-spring-webflux</artifactId>-->
+<!--        </dependency>-->
         <dependency>
             <groupId>io.springfox</groupId>
             <artifactId>springfox-swagger-ui</artifactId>
diff --git a/ms/controllerblueprints/.gitignore b/ms/controllerblueprints/.gitignore
deleted file mode 100644
index 4b5c1c0..0000000
--- a/ms/controllerblueprints/.gitignore
+++ /dev/null
@@ -1,25 +0,0 @@
-/target/

-/logs/

-.classpath

-.settings/

-

-# Target dirs in all projects

-**/target-ide/*

-**/target/*

-**/logs/*

-**/debug-logs/*

-**/tokens/*

-

-# Added for Intellij IDEA IDE

-**/debug-logs/*

-**/.idea/*

-**/*.iml

-**/*.project

-**/.springBeans

-**/.directory

-

-

-**/*versionsBackup

-**/blackDuckHub*

-**/*.jsonld

-/target-ide/

diff --git a/ms/controllerblueprints/README.md b/ms/controllerblueprints/README.md
index b96dbf7..0cb7a13 100755
--- a/ms/controllerblueprints/README.md
+++ b/ms/controllerblueprints/README.md
@@ -1,13 +1,13 @@
-Application VM Arguments :

-

--DappName=ControllerBluePrints

--Dms_name=org.onap.ccsdk.cds.controllerblueprints

--DappVersion=1.0.0

--Dlogging.config=etc/logback.xml

--Dspring.config.location=opt/app/onap/config/

--Dspring.datasource.url=jdbc:mysql://127.0.0.1:3306/sdnctl

--Dspring.datasource.username=sdnctl

--Dspring.datasource.password=sdnctl

--Dcontrollerblueprints.loadInitialData=true

--Dspring.profiles.active=dev

-

+Application VM Arguments :
+
+-DappName=ControllerBluePrints
+-Dms_name=org.onap.ccsdk.cds.controllerblueprints
+-DappVersion=1.0.0
+-Dlogging.config=etc/logback.xml
+-Dspring.config.location=opt/app/onap/config/
+-Dspring.datasource.url=jdbc:mysql://127.0.0.1:3306/sdnctl
+-Dspring.datasource.username=sdnctl
+-Dspring.datasource.password=sdnctl
+-Dcontrollerblueprints.loadInitialData=true
+-Dspring.profiles.active=dev
+
diff --git a/ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/scripts/BluePrintCompilerCache.kt b/ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/scripts/BluePrintCompilerCache.kt
index fa6b0ab..f90e27f 100644
--- a/ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/scripts/BluePrintCompilerCache.kt
+++ b/ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/scripts/BluePrintCompilerCache.kt
@@ -39,6 +39,10 @@
 
     fun cleanClassLoader(key: String) {
         if(hasClassLoader(key)){
+            // Make sure to close all classloader loaded resources before we let go of it.
+            // This fixes a Delete failure message on filesystem that keeps locks on opened jars;
+            // like Windows and NFS.
+            classLoaderCache.get(key).close()
             classLoaderCache.invalidate(key)
             log.info("Cleaned compiled cache($key)")
         }else{
diff --git a/ms/controllerblueprints/modules/blueprint-proto/krotoPlusConfig.asciipb b/ms/controllerblueprints/modules/blueprint-proto/krotoPlusConfig.asciipb
new file mode 100644
index 0000000..30255b9
--- /dev/null
+++ b/ms/controllerblueprints/modules/blueprint-proto/krotoPlusConfig.asciipb
@@ -0,0 +1,6 @@
+grpc_coroutines {
+    filter { exclude_path: "google/*" }
+}
+grpc_stub_exts {
+    support_coroutines: true
+}
\ No newline at end of file
diff --git a/ms/controllerblueprints/modules/blueprint-proto/pom.xml b/ms/controllerblueprints/modules/blueprint-proto/pom.xml
new file mode 100644
index 0000000..7d4d600
--- /dev/null
+++ b/ms/controllerblueprints/modules/blueprint-proto/pom.xml
@@ -0,0 +1,113 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~  Copyright © 2019 IBM.
+  ~
+  ~  Licensed under the Apache License, Version 2.0 (the "License");
+  ~  you may not use this file except in compliance with the License.
+  ~  You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~  Unless required by applicable law or agreed to in writing, software
+  ~  distributed under the License is distributed on an "AS IS" BASIS,
+  ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~  See the License for the specific language governing permissions and
+  ~  limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+        <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
+        <artifactId>modules</artifactId>
+        <version>0.7.0-SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>blueprint-proto</artifactId>
+    <name>Controller Blueprints Proto</name>
+    <description>Controller Blueprints Proto</description>
+
+    <dependencies>
+        <dependency>
+            <groupId>com.github.marcoferrer.krotoplus</groupId>
+            <artifactId>kroto-plus-coroutines</artifactId>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <extensions>
+            <extension>
+                <groupId>kr.motd.maven</groupId>
+                <artifactId>os-maven-plugin</artifactId>
+                <version>1.6.2</version>
+            </extension>
+        </extensions>
+        <plugins>
+            <plugin>
+                <groupId>org.xolstice.maven.plugins</groupId>
+                <artifactId>protobuf-maven-plugin</artifactId>
+                <version>0.6.1</version>
+                <configuration>
+                    <protocArtifact>
+                        com.google.protobuf:protoc:3.6.1:exe:${os.detected.classifier}
+                    </protocArtifact>
+                    <protoSourceRoot>${project.basedir}/../../../../components/model-catalog/proto-definition/proto
+                    </protoSourceRoot>
+                </configuration>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>compile</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>grpc-java</id>
+                        <goals>
+                            <goal>compile-custom</goal>
+                        </goals>
+                        <configuration>
+                            <pluginId>grpc-java</pluginId>
+                            <pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}
+                            </pluginArtifact>
+                        </configuration>
+                    </execution>
+<!--                    <execution>-->
+<!--                        <id>grpc-coroutines</id>-->
+<!--                        <goals>-->
+<!--                            <goal>compile-custom</goal>-->
+<!--                        </goals>-->
+<!--                        <configuration>-->
+<!--                            <pluginId>kroto-plus</pluginId>-->
+<!--                            <pluginArtifact>-->
+<!--                                com.github.marcoferrer.krotoplus:protoc-gen-kroto-plus:${kroto-plus.version}:jar:jvm8-->
+<!--                            </pluginArtifact>-->
+<!--                            <pluginParameter>ConfigPath=${project.basedir}/krotoPlusConfig.asciipb</pluginParameter>-->
+<!--                        </configuration>-->
+<!--                    </execution>-->
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>kotlin-maven-plugin</artifactId>
+                <groupId>org.jetbrains.kotlin</groupId>
+                <version>${kotlin.maven.version}</version>
+                <executions>
+                    <execution>
+                        <id>compile</id>
+                        <goals>
+                            <goal>compile</goal>
+                        </goals>
+                        <configuration>
+                            <sourceDirs>
+                                <sourceDir>${project.basedir}/target/generated-sources/protobuf/java</sourceDir>
+                                <sourceDir>${project.basedir}/target/generated-sources/protobuf/grpc-java</sourceDir>
+<!--                                <sourceDir>${project.basedir}/target/generated-sources/protobuf/kroto-plus</sourceDir>-->
+                            </sourceDirs>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/ms/controllerblueprints/modules/pom.xml b/ms/controllerblueprints/modules/pom.xml
index 73b2313..6cb4ea8 100644
--- a/ms/controllerblueprints/modules/pom.xml
+++ b/ms/controllerblueprints/modules/pom.xml
@@ -31,6 +31,7 @@
         <module>blueprint-core</module>
         <module>resource-dict</module>
         <module>blueprint-validation</module>
+        <module>blueprint-proto</module>
     </modules>
 
     <dependencies>
diff --git a/ms/controllerblueprints/parent/pom.xml b/ms/controllerblueprints/parent/pom.xml
index 925b167..86a7211 100644
--- a/ms/controllerblueprints/parent/pom.xml
+++ b/ms/controllerblueprints/parent/pom.xml
@@ -30,6 +30,7 @@
     <properties>
         <eelf.version>1.0.0</eelf.version>
         <guava.version>27.0.1-jre</guava.version>
+        <kroto-plus.version>0.5.0</kroto-plus.version>
         <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
         <h2database.version>1.4.197</h2database.version>
         <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
@@ -200,6 +201,11 @@
                 <artifactId>protobuf-java-util</artifactId>
                 <version>${protobuff.java.utils.version}</version>
             </dependency>
+            <dependency>
+                <groupId>com.github.marcoferrer.krotoplus</groupId>
+                <artifactId>kroto-plus-coroutines</artifactId>
+                <version>${kroto-plus.version}</version>
+            </dependency>
 
             <!-- Database -->
             <dependency>
diff --git a/ms/sdclistener/application/pom.xml b/ms/sdclistener/application/pom.xml
index da24e97..7b12e14 100644
--- a/ms/sdclistener/application/pom.xml
+++ b/ms/sdclistener/application/pom.xml
@@ -90,8 +90,8 @@
       <scope>test</scope>
     </dependency>
     <dependency>
-      <groupId>org.onap.ccsdk.cds.components</groupId>
-      <artifactId>proto-definition</artifactId>
+      <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
+      <artifactId>blueprint-proto</artifactId>
     </dependency>
 
     <dependency>
diff --git a/ms/sdclistener/application/src/main/java/org/onap/ccsdk/cds/sdclistener/service/ListenerServiceImpl.java b/ms/sdclistener/application/src/main/java/org/onap/ccsdk/cds/sdclistener/service/ListenerServiceImpl.java
index 77f3ea5..1937af7 100644
--- a/ms/sdclistener/application/src/main/java/org/onap/ccsdk/cds/sdclistener/service/ListenerServiceImpl.java
+++ b/ms/sdclistener/application/src/main/java/org/onap/ccsdk/cds/sdclistener/service/ListenerServiceImpl.java
@@ -15,30 +15,16 @@
  */
 package org.onap.ccsdk.cds.sdclistener.service;
 
-import static java.lang.String.format;
-import static org.onap.ccsdk.cds.sdclistener.status.SdcListenerStatus.NotificationType.SDC_LISTENER_COMPONENT;
-import static org.onap.sdc.utils.DistributionStatusEnum.COMPONENT_DONE_ERROR;
-import static org.onap.sdc.utils.DistributionStatusEnum.COMPONENT_DONE_OK;
 import com.google.protobuf.ByteString;
 import io.grpc.ManagedChannel;
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.OutputStream;
-import java.nio.file.Files;
-import java.nio.file.Path;
-import java.nio.file.Paths;
-import java.util.Enumeration;
-import java.util.List;
-import java.util.regex.Pattern;
-import java.util.zip.ZipEntry;
-import java.util.zip.ZipFile;
 import org.apache.commons.io.FileUtils;
 import org.apache.tomcat.util.http.fileupload.IOUtils;
+import org.onap.ccsdk.cds.controllerblueprints.common.api.ActionIdentifiers;
+import org.onap.ccsdk.cds.controllerblueprints.common.api.CommonHeader;
 import org.onap.ccsdk.cds.controllerblueprints.common.api.Status;
 import org.onap.ccsdk.cds.controllerblueprints.management.api.BluePrintUploadInput;
 import org.onap.ccsdk.cds.controllerblueprints.management.api.FileChunk;
+import org.onap.ccsdk.cds.controllerblueprints.management.api.UploadAction;
 import org.onap.ccsdk.cds.sdclistener.client.SdcListenerAuthClientInterceptor;
 import org.onap.ccsdk.cds.sdclistener.dto.SdcListenerDto;
 import org.onap.ccsdk.cds.sdclistener.handler.BluePrintProcesssorHandler;
@@ -52,6 +38,22 @@
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.stereotype.Component;
 
+import java.io.*;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.util.Enumeration;
+import java.util.List;
+import java.util.UUID;
+import java.util.regex.Pattern;
+import java.util.zip.ZipEntry;
+import java.util.zip.ZipFile;
+
+import static java.lang.String.format;
+import static org.onap.ccsdk.cds.sdclistener.status.SdcListenerStatus.NotificationType.SDC_LISTENER_COMPONENT;
+import static org.onap.sdc.utils.DistributionStatusEnum.COMPONENT_DONE_ERROR;
+import static org.onap.sdc.utils.DistributionStatusEnum.COMPONENT_DONE_OK;
+
 @Component
 @ConfigurationProperties("listenerservice")
 public class ListenerServiceImpl implements ListenerService {
@@ -216,6 +218,13 @@
         FileChunk fileChunk = FileChunk.newBuilder().setChunk(ByteString.copyFrom(bytes)).build();
         FileUtil.deleteFile(file, path);
         return BluePrintUploadInput.newBuilder()
+                .setCommonHeader(CommonHeader.newBuilder()
+                        .setRequestId(UUID.randomUUID().toString())
+                        .setSubRequestId(UUID.randomUUID().toString())
+                        .setOriginatorId("SDC-LISTENER")
+                        .build())
+                .setActionIdentifiers(ActionIdentifiers.newBuilder()
+                        .setActionName(UploadAction.PUBLISH.toString()).build())
                 .setFileChunk(fileChunk)
                 .build();
     }
diff --git a/ms/sdclistener/application/src/test/java/org/onap/ccsdk/cds/sdclistener/handler/BluePrintProcessorHandlerTest.java b/ms/sdclistener/application/src/test/java/org/onap/ccsdk/cds/sdclistener/handler/BluePrintProcessorHandlerTest.java
index ee20f87..7a92c00 100644
--- a/ms/sdclistener/application/src/test/java/org/onap/ccsdk/cds/sdclistener/handler/BluePrintProcessorHandlerTest.java
+++ b/ms/sdclistener/application/src/test/java/org/onap/ccsdk/cds/sdclistener/handler/BluePrintProcessorHandlerTest.java
@@ -15,33 +15,39 @@
  */
 package org.onap.ccsdk.cds.sdclistener.handler;
 
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertTrue;
 import com.google.protobuf.ByteString;
 import io.grpc.ManagedChannel;
 import io.grpc.inprocess.InProcessChannelBuilder;
 import io.grpc.inprocess.InProcessServerBuilder;
 import io.grpc.stub.StreamObserver;
 import io.grpc.testing.GrpcCleanupRule;
-import java.io.File;
-import java.io.IOException;
-import java.nio.file.Paths;
 import org.apache.commons.io.FileUtils;
 import org.junit.Before;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.runner.RunWith;
-import org.onap.ccsdk.cds.sdclistener.client.SdcListenerAuthClientInterceptor;
+import org.onap.ccsdk.cds.controllerblueprints.common.api.ActionIdentifiers;
+import org.onap.ccsdk.cds.controllerblueprints.common.api.CommonHeader;
 import org.onap.ccsdk.cds.controllerblueprints.common.api.Status;
 import org.onap.ccsdk.cds.controllerblueprints.management.api.BluePrintManagementOutput;
 import org.onap.ccsdk.cds.controllerblueprints.management.api.BluePrintManagementServiceGrpc.BluePrintManagementServiceImplBase;
 import org.onap.ccsdk.cds.controllerblueprints.management.api.BluePrintUploadInput;
 import org.onap.ccsdk.cds.controllerblueprints.management.api.FileChunk;
+import org.onap.ccsdk.cds.controllerblueprints.management.api.UploadAction;
+import org.onap.ccsdk.cds.sdclistener.client.SdcListenerAuthClientInterceptor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.context.properties.EnableConfigurationProperties;
 import org.springframework.boot.test.context.SpringBootTest;
 import org.springframework.test.context.junit4.SpringRunner;
 
+import java.io.File;
+import java.io.IOException;
+import java.nio.file.Paths;
+import java.util.UUID;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
 @RunWith(SpringRunner.class)
 @EnableConfigurationProperties({BluePrintProcesssorHandler.class, SdcListenerAuthClientInterceptor.class})
 @SpringBootTest(classes = {BluePrintProcessorHandlerTest.class})
@@ -66,7 +72,7 @@
         final BluePrintManagementServiceImplBase serviceImplBase = new BluePrintManagementServiceImplBase() {
             @Override
             public void uploadBlueprint(BluePrintUploadInput request,
-                StreamObserver<BluePrintManagementOutput> responseObserver) {
+                                        StreamObserver<BluePrintManagementOutput> responseObserver) {
                 responseObserver.onNext(getBluePrintManagementOutput());
                 responseObserver.onCompleted();
             }
@@ -77,7 +83,7 @@
 
         // Create a server, add service, start, and register.
         grpcCleanup.register(
-            InProcessServerBuilder.forName(serverName).addService(serviceImplBase).directExecutor().build().start());
+                InProcessServerBuilder.forName(serverName).addService(serviceImplBase).directExecutor().build().start());
 
         // Create a client channel.
         channel = grpcCleanup.register(InProcessChannelBuilder.forName(serverName).directExecutor().build());
@@ -101,7 +107,16 @@
         byte[] bytes = FileUtils.readFileToByteArray(file);
         FileChunk fileChunk = FileChunk.newBuilder().setChunk(ByteString.copyFrom(bytes)).build();
 
-        return BluePrintUploadInput.newBuilder().setFileChunk(fileChunk).build();
+
+        return BluePrintUploadInput.newBuilder()
+                .setCommonHeader(CommonHeader.newBuilder()
+                        .setRequestId(UUID.randomUUID().toString())
+                        .setSubRequestId(UUID.randomUUID().toString())
+                        .setOriginatorId("SDC-LISTENER")
+                        .build())
+                .setActionIdentifiers(ActionIdentifiers.newBuilder()
+                        .setActionName(UploadAction.PUBLISH.toString()).build())
+                .setFileChunk(fileChunk).build();
     }
 
     private BluePrintManagementOutput getBluePrintManagementOutput() {
diff --git a/ms/sdclistener/parent/pom.xml b/ms/sdclistener/parent/pom.xml
index cfdfc9b..05bfdef 100755
--- a/ms/sdclistener/parent/pom.xml
+++ b/ms/sdclistener/parent/pom.xml
@@ -16,7 +16,8 @@
   ~  See the License for the specific language governing permissions and
   ~  limitations under the License.
   -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.onap.ccsdk.cds</groupId>
@@ -110,9 +111,15 @@
                 <version>${protobuff.java.utils.version}</version>
             </dependency>
             <dependency>
-                <groupId>org.onap.ccsdk.cds.components</groupId>
-                <artifactId>proto-definition</artifactId>
+                <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
+                <artifactId>blueprint-proto</artifactId>
                 <version>${project.version}</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>*</groupId>
+                        <artifactId>*</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
             <dependency>
                 <groupId>io.projectreactor</groupId>
diff --git a/pom.xml b/pom.xml
index ddeb8c8..5d58742 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,7 +35,6 @@
     <description>CCSDK Controller Design Studio</description>
 
     <modules>
-        <module>components</module>
         <module>cds-ui</module>
         <module>ms</module>
     </modules>