Bootstrap Rest and GRPC API
[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 com.fasterxml.jackson.annotation.JsonFormat
21 import com.fasterxml.jackson.annotation.JsonInclude
22 import com.fasterxml.jackson.annotation.JsonTypeInfo
23 import com.fasterxml.jackson.annotation.JsonTypeName
24 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.domain.ResourceDictionary
25 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment
26 import java.io.Serializable
27 import java.util.*
28
29
30 class BootstrapRequest {
31     var loadModelType: Boolean = false
32     var loadResourceDictionary: Boolean = false
33     var loadCBA: Boolean = false
34 }
35
36 /**
37  * ArtifactRequest.java Purpose: Provide Configuration Generator ArtifactRequest Model
38  *
39  * @author Brinda Santh
40  * @version 1.0
41  */
42 class AutoMapResponse {
43     var resourceAssignments: List<ResourceAssignment>? = null
44     var dataDictionaries: List<ResourceDictionary>? = null
45 }
46
47
48 @JsonInclude(JsonInclude.Include.NON_NULL)
49 @JsonTypeName("errorMessage")
50 @JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = JsonTypeInfo.Id.NAME)
51 class ErrorMessage(var message: String?, var code: Int?, var debugMessage: String?) : Serializable {
52     @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
53     var timestamp = Date()
54 }