Renaming Files having BluePrint to have Blueprint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / designer-api / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / designer / api / DesignerApiData.kt
1 /*
2  *  Copyright © 2019 IBM.
3  *  Modifications Copyright © 2018-2019 AT&T Intellectual Property.
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  */
17
18 package org.onap.ccsdk.cds.blueprintsprocessor.designer.api
19
20 import io.swagger.annotations.ApiModel
21 import io.swagger.annotations.ApiModelProperty
22 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.domain.ResourceDictionary
23 import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintConstants.DATA_TYPE_JSON
24 import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintConstants.DEFAULT_VERSION_NUMBER
25 import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintConstants.TOSCA_SPEC
26 import org.onap.ccsdk.cds.controllerblueprints.core.data.DataType
27 import org.onap.ccsdk.cds.controllerblueprints.core.data.PropertyDefinition
28 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment
29
30 class BootstrapRequest {
31
32     @ApiModelProperty(value = "Specifies if default model types should be loaded", example = "true", required = true)
33     var loadModelType: Boolean = false
34     @ApiModelProperty(value = "Specifies if default data dictionaries should be loaded", example = "true", required = true)
35     var loadResourceDictionary: Boolean = false
36     @ApiModelProperty(value = "Specifies if default blueprint models should be loaded", example = "true", required = true)
37     var loadCBA: Boolean = false
38 }
39
40 class WorkFlowsResponse {
41
42     lateinit var blueprintName: String
43     var version: String = DEFAULT_VERSION_NUMBER
44     var workflows: MutableSet<String> = mutableSetOf()
45 }
46
47 @ApiModel
48 class WorkFlowSpecRequest {
49
50     @ApiModelProperty(value = "Name of the BLueprint", example = "\"pnf_netconf\"", required = true)
51     lateinit var blueprintName: String
52     var version: String = DEFAULT_VERSION_NUMBER
53     var returnContent: String = DATA_TYPE_JSON
54     @ApiModelProperty(value = "Name of the Workflow", example = "\"config-assign\"", required = true)
55     lateinit var workflowName: String
56     var specType: String = TOSCA_SPEC
57 }
58
59 class WorkFlowSpecResponse {
60
61     lateinit var blueprintName: String
62     var version: String = DEFAULT_VERSION_NUMBER
63     lateinit var workFlowData: WorkFlowData
64     var dataTypes: MutableMap<String, DataType>? = mutableMapOf()
65 }
66
67 class WorkFlowData {
68
69     lateinit var workFlowName: String
70     var inputs: MutableMap<String, PropertyDefinition>? = null
71     var outputs: MutableMap<String, PropertyDefinition>? = null
72 }
73
74 /**
75  * ArtifactRequest.java Purpose: Provide Configuration Generator ArtifactRequest Model
76  *
77  * @author Brinda Santh
78  * @version 1.0
79  */
80 class AutoMapResponse {
81
82     var resourceAssignments: List<ResourceAssignment>? = null
83     var dataDictionaries: List<ResourceDictionary>? = null
84 }