Merge "Replaced with Diamond symbol"
[so.git] / mso-catalog-db / src / main / java / org / openecomp / mso / db / catalog / beans / HeatFiles.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.db.catalog.beans;
22
23 import java.io.Serializable;
24 import java.sql.Timestamp;
25 import java.text.DateFormat;
26
27 import org.openecomp.mso.db.catalog.utils.MavenLikeVersioning;
28
29 public class HeatFiles extends MavenLikeVersioning implements Serializable {
30         
31         private static final long serialVersionUID = 768026109321305392L;
32
33         private String artifactUuid;
34         private String description = null;
35         private String fileName;
36         private String fileBody;
37         private Timestamp created;
38         private String version;
39         private String artifactChecksum;
40
41         public HeatFiles() {}
42
43         public String getArtifactUuid() {
44                 return this.artifactUuid;
45         }
46         public void setArtifactUuid(String artifactUuid) {
47                 this.artifactUuid = artifactUuid;
48         }
49
50         public String getDescription() {
51                 return this.description;
52         }
53         public void setDescription(String description) {
54                 this.description = description;
55         }
56
57         public String getFileName() {
58                 return this.fileName;
59         }
60         public void setFileName(String fileName) {
61                 this.fileName = fileName;
62         }
63
64         public String getFileBody() {
65                 return this.fileBody;
66         }
67         public void setFileBody(String fileBody) {
68                 this.fileBody = fileBody;
69         }
70
71         public Timestamp getCreated() {
72                 return created;
73         }
74
75         public void setCreated(Timestamp created) {
76                 this.created = created;
77         }
78
79         public String getAsdcUuid() {
80                 return this.artifactUuid;
81         }
82         public void setAsdcUuid(String artifactUuid) {
83                 this.artifactUuid = artifactUuid;
84         }
85
86         @Override
87         public String getVersion() {
88                 return version;
89         }
90
91         @Override
92         public void setVersion(String version) {
93                 this.version = version;
94         }
95
96         public String getArtifactChecksum() {
97                 return artifactChecksum;
98         }
99         public void setArtifactChecksum(String artifactChecksum) {
100                 this.artifactChecksum = artifactChecksum;
101         }
102
103         @Override
104         public String toString () {
105                 StringBuilder sb = new StringBuilder();
106                 sb.append ("artifactUuid=" + this.artifactUuid);
107                 if (this.description == null) {
108                         sb.append(", description=null");
109                 } else {
110                         sb.append(", description=" + this.description);
111                 }
112                 if (this.fileName == null) {
113                         sb.append(", fileName=null");
114                 } else {
115                         sb.append(",fileName=" + this.fileName);
116                 }
117                 if (this.fileBody == null) {
118                         sb.append(", fileBody=null");
119                 } else {
120                         sb.append(",fileBody=" + this.fileBody);
121                 }
122                 sb.append(", artifactChecksum=" + this.artifactChecksum);
123                 if (created != null) {
124                 sb.append (",created=");
125                 sb.append (DateFormat.getInstance().format(created));
126             }
127                 return sb.toString();
128         }
129 }