Share RR context within node template
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / resource-resolution / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / resource / resolution / db / ResourceResolution.kt
1 /*
2  * Copyright © 2019 Bell Canada
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.db
18
19 import com.fasterxml.jackson.annotation.JsonFormat
20 import io.swagger.annotations.ApiModelProperty
21 import org.hibernate.annotations.Proxy
22 import org.springframework.data.annotation.LastModifiedDate
23 import org.springframework.data.jpa.domain.support.AuditingEntityListener
24 import java.io.Serializable
25 import java.util.*
26 import javax.persistence.Column
27 import javax.persistence.Entity
28 import javax.persistence.EntityListeners
29 import javax.persistence.Id
30 import javax.persistence.Lob
31 import javax.persistence.Table
32 import javax.persistence.Temporal
33 import javax.persistence.TemporalType
34
35 @EntityListeners(AuditingEntityListener::class)
36 @Entity
37 @Table(name = "RESOURCE_RESOLUTION")
38 @Proxy(lazy = false)
39 class ResourceResolution : Serializable {
40
41     @Id
42     @Column(name = "resource_resolution_id")
43     var id: String? = null
44
45     @get:ApiModelProperty(value = "Resolution Key uniquely identifying the resolution of a given artifact within a CBA.",
46         required = true)
47     @Column(name = "resolution_key", nullable = false)
48     var resolutionKey: String? = null
49
50     @get:ApiModelProperty(value = "Resolution type.", required = true, example = "ServiceInstance, VfModule, VNF")
51     @Column(name = "resource_type", nullable = false)
52     var resourceType: String? = null
53
54     @get:ApiModelProperty(value = "ID associated with the resolution type in the inventory system.", required = true)
55     @Column(name = "resource_id", nullable = false)
56     var resourceId: String? = null
57
58     @get:ApiModelProperty(value = "Name of the CBA.", required = true)
59     @Column(name = "blueprint_name", nullable = false)
60     var blueprintName: String? = null
61
62     @get:ApiModelProperty(value = "Version of the CBA.", required = true)
63     @Column(name = "blueprint_version", nullable = false)
64     var blueprintVersion: String? = null
65
66     @get:ApiModelProperty(value = "Artifact name for which to retrieve a resolved resource.", required = true)
67     @Column(name = "artifact_name", nullable = false)
68     var artifactName: String? = null
69
70     @get:ApiModelProperty(value = "Whether success of failure.", required = true)
71     @Column(name = "status", nullable = false)
72     var status: String? = null
73
74     @get:ApiModelProperty(value = "Name of the resource.", required = true)
75     @Column(name = "name", nullable = false)
76     var name: String? = null
77
78     @get:ApiModelProperty(value = "Name of the data dictionary used for the resolution.", required = true)
79     @Column(name = "dictionary_name", nullable = false)
80     var dictionaryName: String? = null
81
82     @get:ApiModelProperty(value = "Source associated with the data dictionary used for the resolution.", required = true)
83     @Column(name = "dictionary_status", nullable = false)
84     var dictionarySource: String? = null
85
86     @get:ApiModelProperty(value = "Version of the data dictionary used for the resolution.", required = true)
87     @Column(name = "dictionary_version", nullable = false)
88     var dictionaryVersion: Int = 0
89
90     @get:ApiModelProperty(value = "Value of the resolution.", required = true)
91     @Lob
92     @Column(name = "value", nullable = false)
93     var value: String? = null
94
95     @get:ApiModelProperty(value = "Creation date of the resolution.", required = true)
96     @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
97     @LastModifiedDate
98     @Temporal(TemporalType.TIMESTAMP)
99     @Column(name = "creation_date")
100     var createdDate = Date()
101
102     companion object {
103         private const val serialVersionUID = 1L
104     }
105 }