From 032ce4ec7c3d7ac138555dfe980ca53ebbf39f01 Mon Sep 17 00:00:00 2001 From: "Singal, Kapil (ks220y)" Date: Thu, 30 Jan 2020 11:23:57 -0500 Subject: Removing blueprints-processor Blueprints-Processor is deprecated, use CCSDK/CDS instead Change-Id: I0abc96061c3c5edc6c5d02bcd6f35e18e31882a7 Issue-ID: CCSDK-2051 Signed-off-by: Singal, Kapil (ks220y) --- .../test/resources/mapping/input/dt-location.json | 15 ---------- .../resources/mapping/input/input-complex.json | 24 --------------- .../test/resources/mapping/input/input-simple.json | 35 ---------------------- .../input/resource-assignments-complex.json | 13 -------- .../mapping/input/resource-assignments-simple.json | 32 -------------------- .../resources/mapping/input/sample-location.json | 4 --- 6 files changed, 123 deletions(-) delete mode 100644 blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/dt-location.json delete mode 100644 blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/input-complex.json delete mode 100644 blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/input-simple.json delete mode 100644 blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/resource-assignments-complex.json delete mode 100644 blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/resource-assignments-simple.json delete mode 100644 blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/sample-location.json (limited to 'blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input') diff --git a/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/dt-location.json b/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/dt-location.json deleted file mode 100644 index 52e0a7967..000000000 --- a/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/dt-location.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "1.0.0", - "description": "test Data Type", - "properties": { - "country": { - "required": true, - "type": "string" - }, - "state": { - "required": false, - "type": "string" - } - }, - "derived_from": "tosca.datatypes.Root" -} diff --git a/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/input-complex.json b/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/input-complex.json deleted file mode 100644 index 7eabe440a..000000000 --- a/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/input-complex.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "location": { - "name": "location", - "property": { - "type": "dt-location" - }, - "sources": { - "default": { - "type": "source-input" - } - } - }, - "profile_name": { - "name": "profile_name", - "property": { - "type": "string" - }, - "sources": { - "default": { - "type": "source-input" - } - } - } -} diff --git a/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/input-simple.json b/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/input-simple.json deleted file mode 100644 index 7b663f36a..000000000 --- a/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/input-simple.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "country": { - "name": "country", - "property": { - "type": "string" - }, - "sources": { - "default": { - "type": "source-input" - } - } - }, - "port": { - "name": "port", - "property": { - "type": "integer" - }, - "sources": { - "default": { - "type": "source-input" - } - } - }, - "voip-enabled": { - "name": "voip-enabled", - "property": { - "type": "boolean" - }, - "sources": { - "default": { - "type": "source-input" - } - } - } -} diff --git a/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/resource-assignments-complex.json b/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/resource-assignments-complex.json deleted file mode 100644 index 9e17841b4..000000000 --- a/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/resource-assignments-complex.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "name": "location", - "input-param": true, - "property": { - "type": "dt-location", - "required": true - }, - "dictionary-name": "location", - "dictionary-source": "input", - "dependencies": [] - } -] diff --git a/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/resource-assignments-simple.json b/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/resource-assignments-simple.json deleted file mode 100644 index e3b2bcc06..000000000 --- a/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/resource-assignments-simple.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "name": "country", - "input-param": true, - "property": { - "type": "string", - "default": "US" - }, - "dictionary-source": "input", - "dependencies": [] - }, - { - "name": "port", - "input-param": true, - "property": { - "type": "integer", - "default": 830 - }, - "dictionary-source": "input", - "dependencies": [] - }, - { - "name": "voip-enabled", - "input-param": true, - "property": { - "type": "boolean", - "default": true - }, - "dictionary-source": "input", - "dependencies": [] - } -] diff --git a/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/sample-location.json b/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/sample-location.json deleted file mode 100644 index 2f3f1c102..000000000 --- a/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/input/sample-location.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "country": "US", - "state": "NJ" -} -- cgit 1.2.3-korg