Merge "logstash input"
[clamp.git] / src / main / java / org / onap / clamp / clds / model / CldsToscaModelRevision.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23
24 /**
25  * Represents a CLDS Tosca model revision
26  *
27  */
28 package org.onap.clamp.clds.model;
29
30 public class CldsToscaModelRevision {
31
32     private String revisionId;
33     private String toscaModelYaml;
34     private double version;
35     private String toscaModelJson;
36     private String userId;
37     private String createdDate;
38     private String lastUpdatedDate;
39
40     /**
41      * @return the revisionId
42      */
43     public String getRevisionId() {
44         return revisionId;
45     }
46
47     /**
48      * @param revisionId
49      *        the revisionId to set
50      */
51     public void setRevisionId(String revisionId) {
52         this.revisionId = revisionId;
53     }
54
55     /**
56      * @return the toscaModelYaml
57      */
58     public String getToscaModelYaml() {
59         return toscaModelYaml;
60     }
61
62     /**
63      * @param toscaModelYaml
64      *        the toscaModelYaml to set
65      */
66     public void setToscaModelYaml(String toscaModelYaml) {
67         this.toscaModelYaml = toscaModelYaml;
68     }
69
70     /**
71      * @return the version
72      */
73     public double getVersion() {
74         return version;
75     }
76
77     /**
78      * @param version
79      *        the version to set
80      */
81     public void setVersion(double version) {
82         this.version = version;
83     }
84
85     /**
86      * @return the toscaModelJson
87      */
88     public String getToscaModelJson() {
89         return toscaModelJson;
90     }
91
92     /**
93      * @param toscaModelJson
94      *        the toscaModelJson to set
95      */
96     public void setToscaModelJson(String toscaModelJson) {
97         this.toscaModelJson = toscaModelJson;
98     }
99
100     /**
101      * @return the userId
102      */
103     public String getUserId() {
104         return userId;
105     }
106
107     /**
108      * @param userId
109      *        the userId to set
110      */
111     public void setUserId(String userId) {
112         this.userId = userId;
113     }
114
115     /**
116      * @return the createdDate
117      */
118     public String getCreatedDate() {
119         return createdDate;
120     }
121
122     /**
123      * @param createdDate
124      *        the createdDate to set
125      */
126     public void setCreatedDate(String createdDate) {
127         this.createdDate = createdDate;
128     }
129
130     /**
131      * @return the lastUpdatedDate
132      */
133     public String getLastUpdatedDate() {
134         return lastUpdatedDate;
135     }
136
137     /**
138      * @param lastUpdatedDate
139      *        the lastUpdatedDate to set
140      */
141     public void setLastUpdatedDate(String lastUpdatedDate) {
142         this.lastUpdatedDate = lastUpdatedDate;
143     }
144 }