summaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/modules/blueprints/blueprint-core
diff options
context:
space:
mode:
authorjananib <janani.b@huawei.com>2020-08-12 22:47:11 +0530
committerjananib <janani.b@huawei.com>2020-08-12 22:47:11 +0530
commit8652382567ec5bb8e0527469f2c6334d44584df6 (patch)
treed6c72d98990d0aba0d51e69ad6471626b83279c6 /ms/blueprintsprocessor/modules/blueprints/blueprint-core
parent6ceb4fb11b426e68e965e008761c26cee484e770 (diff)
Append input param true in workflow-spec
Workflow spec Change-Id: Iac833abcc3d1079fbe8d12a354fd7ceff1aa758e Issue-ID: CCSDK-422 Signed-off-by: jananib <janani.b@huawei.com>
Diffstat (limited to 'ms/blueprintsprocessor/modules/blueprints/blueprint-core')
-rw-r--r--ms/blueprintsprocessor/modules/blueprints/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/data/BluePrintModel.kt2
1 files changed, 2 insertions, 0 deletions
diff --git a/ms/blueprintsprocessor/modules/blueprints/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/data/BluePrintModel.kt b/ms/blueprintsprocessor/modules/blueprints/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/data/BluePrintModel.kt
index 24901257e..8968ce3ef 100644
--- a/ms/blueprintsprocessor/modules/blueprints/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/data/BluePrintModel.kt
+++ b/ms/blueprintsprocessor/modules/blueprints/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/data/BluePrintModel.kt
@@ -162,6 +162,8 @@ class PropertyDefinition {
var description: String? = null
var required: Boolean? = null
lateinit var type: String
+ @get:JsonProperty("input-param")
+ var inputparam: Boolean? = null
@get:JsonProperty("default")
var defaultValue: JsonNode? = null
var status: String? = null