d0cb673152de9f7aef4284d809d6fb0cc7a35d3b
[ccsdk/cds.git] /
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.Date
28
29 class BootstrapRequest {
30     var loadModelType: Boolean = false
31     var loadResourceDictionary: Boolean = false
32     var loadCBA: Boolean = false
33 }
34
35 /**
36  * ArtifactRequest.java Purpose: Provide Configuration Generator ArtifactRequest Model
37  *
38  * @author Brinda Santh
39  * @version 1.0
40  */
41 class AutoMapResponse {
42
43     var resourceAssignments: List<ResourceAssignment>? = null
44     var dataDictionaries: List<ResourceDictionary>? = null
45 }
46
47 @JsonInclude(JsonInclude.Include.NON_NULL)
48 @JsonTypeName("errorMessage")
49 @JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = JsonTypeInfo.Id.NAME)
50 class ErrorMessage(var message: String?, var code: Int?, var debugMessage: String?) : Serializable {
51
52     @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
53     var timestamp = Date()
54 }