a2f1e23e780f38cd65f5ba6b863d0f073595a1ea
[ccsdk/cds.git] /
1 /*
2  *  Copyright © 2018 IBM.
3  *  Modifications Copyright © 2017-2018 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.controllerblueprints.resource.dict
19
20 import com.fasterxml.jackson.annotation.JsonFormat
21 import com.fasterxml.jackson.annotation.JsonProperty
22 import org.onap.ccsdk.cds.controllerblueprints.core.data.NodeTemplate
23 import org.onap.ccsdk.cds.controllerblueprints.core.data.PropertyDefinition
24 import java.io.Serializable
25 import java.util.*
26
27 open class ResourceDefinition {
28
29     @JsonProperty(value = "name", required = true)
30     lateinit var name: String
31
32     @JsonProperty(value = "property", required = true)
33     lateinit var property: PropertyDefinition
34
35     var tags: String? = null
36
37     @JsonProperty(value = "updated-by")
38     lateinit var updatedBy: String
39
40     @JsonProperty(value = "sources", required = true)
41     lateinit var sources: MutableMap<String, NodeTemplate>
42 }
43
44 open class ResourceAssignment {
45
46     @JsonProperty(value = "name", required = true)
47     lateinit var name: String
48
49     @JsonProperty(value = "property")
50     var property: PropertyDefinition? = null
51
52     @JsonProperty("input-param")
53     var inputParameter: Boolean = false
54
55     @JsonProperty("dictionary-name")
56     var dictionaryName: String? = null
57
58     @JsonProperty("dictionary-source")
59     var dictionarySource: String? = null
60
61     @JsonProperty("dependencies")
62     var dependencies: MutableList<String>? = null
63
64     @JsonProperty("version")
65     var version: Int = 0
66
67     @JsonProperty("status")
68     var status: String? = null
69
70     @JsonProperty("message")
71     var message: String? = null
72
73     @JsonProperty("updated-date")
74     @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
75     var updatedDate: Date? = null
76
77     @JsonProperty("updated-by")
78     var updatedBy: String? = null
79
80     override fun toString(): String {
81         return StringBuilder()
82             .append("[")
83             .append("name=", name)
84             .append(", status=", status)
85             .append(", property=", property?.value ?: "")
86             .append(", dictionaryName=", dictionaryName)
87             .append(", dictionarySource=", dictionarySource)
88             .append("]")
89             .toString()
90     }
91 }
92
93 /**
94  * Interface for Source Definitions (ex Input Source,
95  * Default Source, Database Source, Rest Sources, etc)
96  */
97 interface ResourceSource : Serializable
98
99
100 open class ResourceSourceMapping {
101     lateinit var resourceSourceMappings: MutableMap<String, String>
102 }