Refactoring BP Code with ErrorCatalog
[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     var loadModelType: Boolean = false
30     var loadResourceDictionary: Boolean = false
31     var loadCBA: Boolean = false
32 }
33
34 class WorkFlowsResponse {
35     lateinit var blueprintName: String
36     var version: String = DEFAULT_VERSION_NUMBER
37     var workflows: MutableSet<String> = mutableSetOf()
38 }
39
40 class WorkFlowSpecRequest {
41     lateinit var blueprintName: String
42     var version: String = DEFAULT_VERSION_NUMBER
43     var returnContent: String = DATA_TYPE_JSON
44     lateinit var workflowName: String
45     var specType: String = TOSCA_SPEC
46 }
47
48 class WorkFlowSpecResponse {
49     lateinit var blueprintName: String
50     var version: String = DEFAULT_VERSION_NUMBER
51     lateinit var workFlowData: WorkFlowData
52     var dataTypes: MutableMap<String, DataType>? = mutableMapOf()
53 }
54
55 class WorkFlowData {
56     lateinit var workFlowName: String
57     var inputs: MutableMap<String, PropertyDefinition>? = null
58     var outputs: MutableMap<String, PropertyDefinition>? = null
59 }
60
61 /**
62  * ArtifactRequest.java Purpose: Provide Configuration Generator ArtifactRequest Model
63  *
64  * @author Brinda Santh
65  * @version 1.0
66  */
67 class AutoMapResponse {
68
69     var resourceAssignments: List<ResourceAssignment>? = null
70     var dataDictionaries: List<ResourceDictionary>? = null
71 }