2 * Copyright © 2018 IBM.
3 * Modifications Copyright © 2017-2018 AT&T Intellectual Property.
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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 package org.onap.ccsdk.cds.controllerblueprints.resource.dict
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
27 open class ResourceDefinition {
29 @JsonProperty(value = "name", required = true)
30 lateinit var name: String
32 @JsonProperty(value = "property", required = true)
33 lateinit var property: PropertyDefinition
35 var tags: String? = null
37 /** The default group for Resource Definition is "default" */
38 @JsonProperty(value = "group", required = true)
39 var group: String = "default"
41 @JsonProperty(value = "updated-by")
42 lateinit var updatedBy: String
44 @JsonProperty(value = "sources", required = true)
45 lateinit var sources: MutableMap<String, NodeTemplate>
48 open class ResourceAssignment {
50 @JsonProperty(value = "name", required = true)
51 lateinit var name: String
53 @JsonProperty(value = "property")
54 var property: PropertyDefinition? = null
56 @JsonProperty("input-param")
57 var inputParameter: Boolean = false
59 @JsonProperty("dictionary-name")
60 var dictionaryName: String? = null
62 @JsonProperty("dictionary-source")
63 var dictionarySource: String? = null
65 /** Modified Source definition, Capability Source will use for script reference changes,
66 * Rest Source will use for extra headers etc **/
67 @JsonProperty("dictionary-source-definition")
68 var dictionarySourceDefinition: NodeTemplate? = null
70 /** Duplicate field : Shall be used directly from Dictionary Source definition dependencies. **/
71 @JsonProperty("dependencies")
72 var dependencies: MutableList<String>? = null
74 @JsonProperty("version")
77 @JsonProperty("status")
78 var status: String? = null
80 @JsonProperty("message")
81 var message: String? = null
83 @JsonProperty("updated-date")
84 @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
85 var updatedDate: Date? = null
87 @JsonProperty("updated-by")
88 var updatedBy: String? = null
90 override fun toString(): String {
95 required = ${property?.required}
96 dependencies = $dependencies
97 dictionaryName = $dictionaryName
98 dictionarySource = $dictionarySource
105 * Interface for Source Definitions (ex Input Source,
106 * Default Source, Database Source, Rest Sources, etc)
108 interface ResourceSource : Serializable
110 open class ResourceSourceMapping {
111 lateinit var resourceSourceMappings: MutableMap<String, String>