781cafd97c11eba7aebdac14f6395a48b572dae4
[ccsdk/cds.git] /
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.*
27
28 @EntityListeners(AuditingEntityListener::class)
29 @Entity
30 @Table(name = "RESOURCE_RESOLUTION")
31 @Proxy(lazy = false)
32 class ResourceResolution : Serializable {
33
34     @get:ApiModelProperty(value = "Name of the CBA.", required = true)
35     @Column(name = "blueprint_name", nullable = false)
36     var blueprintName: String? = null
37
38     @get:ApiModelProperty(value = "Version of the CBA.", required = true)
39     @Column(name = "blueprint_version", nullable = false)
40     var blueprintVersion: String? = null
41
42     @get:ApiModelProperty(value = "Artifact name for which to retrieve a resolved resource.", required = true)
43     @Column(name = "artifact_name", nullable = false)
44     var artifactName: String? = null
45
46     @get:ApiModelProperty(value = "Name of the resource.", required = true)
47     @Column(name = "name", nullable = false)
48     var name: String? = null
49
50     @get:ApiModelProperty(value = "Value of the resolution.", required = true)
51     @Lob
52     @Column(name = "value", nullable = false)
53     var value: String? = null
54
55     @get:ApiModelProperty(value = "Whether success of failure.", required = true)
56     @Column(name = "status", nullable = false)
57     var status: String? = null
58
59     @get:ApiModelProperty(value = "Resolution Key uniquely identifying the resolution of a given artifact within a CBA.",
60         required = true)
61     @Column(name = "resolution_key", nullable = false)
62     var resolutionKey: String? = null
63
64     @get:ApiModelProperty(value = "Resolution type.", required = true, example = "ServiceInstance, VfModule, VNF")
65     @Column(name = "resource_type", nullable = false)
66     var resourceType: String? = null
67
68     @get:ApiModelProperty(value = "ID associated with the resolution type in the inventory system.", required = true)
69     @Column(name = "resource_id", nullable = false)
70     var resourceId: String? = null
71
72     @get:ApiModelProperty(value = "If resolution occurred multiple time, this field provides the index.",
73         required = true)
74     @Column(name = "occurrence", nullable = false)
75     var occurrence: Int = 0
76
77     @get:ApiModelProperty(value = "Name of the data dictionary used for the resolution.", required = true)
78     @Column(name = "dictionary_name", nullable = false)
79     var dictionaryName: String? = null
80
81     @get:ApiModelProperty(value = "Source associated with the data dictionary used for the resolution.",
82         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     @Id
91     @Column(name = "resource_resolution_id")
92     var id: String? = null
93
94     @get:ApiModelProperty(value = "Creation date of the resolution.", required = true)
95     @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
96     @LastModifiedDate
97     @Temporal(TemporalType.TIMESTAMP)
98     @Column(name = "creation_date")
99     var createdDate = Date()
100
101     companion object {
102         private const val serialVersionUID = 1L
103     }
104 }