Enabling Code Formatter
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / designer-api / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / designer / api / domain / ResourceDictionary.kt
1 /*
2  *  Copyright © 2019 IBM.
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.designer.api.domain
18
19 import com.fasterxml.jackson.annotation.JsonFormat
20 import io.swagger.annotations.ApiModelProperty
21 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceDefinition
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.Date
26 import javax.persistence.Column
27 import javax.persistence.Convert
28 import javax.persistence.Entity
29 import javax.persistence.EntityListeners
30 import javax.persistence.Id
31 import javax.persistence.Lob
32 import javax.persistence.Table
33 import javax.persistence.Temporal
34 import javax.persistence.TemporalType
35
36 /**
37  * Provide ResourceDictionary Entity
38  *
39  * @author Brinda Santh
40  * @version 1.0
41  */
42 @EntityListeners(AuditingEntityListener::class)
43 @Entity
44 @Table(name = "RESOURCE_DICTIONARY")
45 class ResourceDictionary : Serializable {
46
47     @Id
48     @Column(name = "name", nullable = false)
49     @ApiModelProperty(required = true)
50     lateinit var name: String
51
52     @Column(name = "data_type", nullable = false)
53     @ApiModelProperty(required = true)
54     lateinit var dataType: String
55
56     @Column(name = "entry_schema")
57     var entrySchema: String? = null
58
59     @Column(name = "resource_dictionary_group")
60     @ApiModelProperty(required = true)
61     var resourceDictionaryGroup: String? = null
62
63     @Lob
64     @Convert(converter = JpaResourceDefinitionConverter::class)
65     @Column(name = "definition", nullable = false)
66     @ApiModelProperty(required = true)
67     lateinit var definition: ResourceDefinition
68
69     @Lob
70     @Column(name = "description", nullable = false)
71     @ApiModelProperty(required = true)
72     lateinit var description: String
73
74     @Lob
75     @Column(name = "tags", nullable = false)
76     @ApiModelProperty(required = true)
77     lateinit var tags: String
78
79     @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
80     @LastModifiedDate
81     @Temporal(TemporalType.TIMESTAMP)
82     @Column(name = "creation_date")
83     var creationDate: Date? = null
84
85     @Column(name = "updated_by", nullable = false)
86     @ApiModelProperty(required = true)
87     lateinit var updatedBy: String
88
89     override fun toString(): String {
90         return "[" + ", name = " + name +
91             ", dataType = " + dataType +
92             ", entrySchema = " + entrySchema +
93             ", resourceDictionaryGroup = " + resourceDictionaryGroup +
94             ", definition =" + definition +
95             ", description = " + description +
96             ", updatedBy = " + updatedBy +
97             ", tags = " + tags +
98             ", creationDate = " + creationDate +
99             "]"
100     }
101
102     companion object {
103
104         private const val serialVersionUID = 1L
105     }
106 }