Enabling Code Formatter
[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 org.onap.ccsdk.cds.blueprintsprocessor.designer.api.domain.ResourceDictionary
21 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants.DATA_TYPE_JSON
22 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants.DEFAULT_VERSION_NUMBER
23 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants.TOSCA_SPEC
24 import org.onap.ccsdk.cds.controllerblueprints.core.data.DataType
25 import org.onap.ccsdk.cds.controllerblueprints.core.data.PropertyDefinition
26 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment
27
28 class BootstrapRequest {
29
30     var loadModelType: Boolean = false
31     var loadResourceDictionary: Boolean = false
32     var loadCBA: Boolean = false
33 }
34
35 class WorkFlowsResponse {
36
37     lateinit var blueprintName: String
38     var version: String = DEFAULT_VERSION_NUMBER
39     var workflows: MutableSet<String> = mutableSetOf()
40 }
41
42 class WorkFlowSpecRequest {
43
44     lateinit var blueprintName: String
45     var version: String = DEFAULT_VERSION_NUMBER
46     var returnContent: String = DATA_TYPE_JSON
47     lateinit var workflowName: String
48     var specType: String = TOSCA_SPEC
49 }
50
51 class WorkFlowSpecResponse {
52
53     lateinit var blueprintName: String
54     var version: String = DEFAULT_VERSION_NUMBER
55     lateinit var workFlowData: WorkFlowData
56     var dataTypes: MutableMap<String, DataType>? = mutableMapOf()
57 }
58
59 class WorkFlowData {
60
61     lateinit var workFlowName: String
62     var inputs: MutableMap<String, PropertyDefinition>? = null
63     var outputs: MutableMap<String, PropertyDefinition>? = null
64 }
65
66 /**
67  * ArtifactRequest.java Purpose: Provide Configuration Generator ArtifactRequest Model
68  *
69  * @author Brinda Santh
70  * @version 1.0
71  */
72 class AutoMapResponse {
73
74     var resourceAssignments: List<ResourceAssignment>? = null
75     var dataDictionaries: List<ResourceDictionary>? = null
76 }