Move jsonRepresentation
[clamp.git] / src / main / java / org / onap / clamp / clds / model / CldsDictionaryItem.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 package org.onap.clamp.clds.model;
25
26 import com.google.gson.annotations.Expose;
27
28 /**
29  * Represents a CLDS Dictionary Item.
30  */
31 public class CldsDictionaryItem {
32
33     @Expose
34     private String dictElementId;
35     @Expose
36     private String dictionaryId;
37     @Expose
38     private String dictElementName;
39     @Expose
40     private String dictElementShortName;
41     @Expose
42     private String dictElementDesc;
43     @Expose
44     private String dictElementType;
45     @Expose
46     private String createdBy;
47     @Expose
48     private String updatedBy;
49     @Expose
50     private String lastUpdatedDate;
51
52     /**
53      * Get the dictionary element id.
54      *
55      * @return the dictElementId
56      */
57     public String getDictElementId() {
58         return dictElementId;
59     }
60
61     /**
62      * Set the dictionary element id.
63      *
64      * @param dictElementId the dictElementId to set
65      */
66     public void setDictElementId(String dictElementId) {
67         this.dictElementId = dictElementId;
68     }
69
70     /**
71      * Get the dictionary id.
72      *
73      * @return the dictionaryId
74      */
75     public String getDictionaryId() {
76         return dictionaryId;
77     }
78
79     /**
80      * Set the dictionary id.
81      *
82      * @param dictionaryId the dictionaryId to set
83      */
84     public void setDictionaryId(String dictionaryId) {
85         this.dictionaryId = dictionaryId;
86     }
87
88     /**
89      * Get the dictionary name.
90      *
91      * @return the dictElementName
92      */
93     public String getDictElementName() {
94         return dictElementName;
95     }
96
97     /**
98      * Set the dictionary name.
99      *
100      * @param dictElementName the dictElementName to set
101      */
102     public void setDictElementName(String dictElementName) {
103         this.dictElementName = dictElementName;
104     }
105
106     /**
107      * Get the dictionary element short name.
108      *
109      * @return the dictElementShortName
110      */
111     public String getDictElementShortName() {
112         return dictElementShortName;
113     }
114
115     /**
116      * Set the dictionary element short name.
117      *
118      * @param dictElementShortName the dictElementShortName to set
119      */
120     public void setDictElementShortName(String dictElementShortName) {
121         this.dictElementShortName = dictElementShortName;
122     }
123
124     /**
125      * Get the dictionary element description.
126      *
127      * @return the dictElementDesc
128      */
129     public String getDictElementDesc() {
130         return dictElementDesc;
131     }
132
133     /**
134      * Set the dictionary element description.
135      *
136      * @param dictElementDesc the dictElementDesc to set
137      */
138     public void setDictElementDesc(String dictElementDesc) {
139         this.dictElementDesc = dictElementDesc;
140     }
141
142     /**
143      * Get the dictionary element type.
144      *
145      * @return the dictElementType
146      */
147     public String getDictElementType() {
148         return dictElementType;
149     }
150
151     /**
152      * Set the dictionary element type.
153      *
154      * @param dictElementType the dictElementType to set
155      */
156     public void setDictElementType(String dictElementType) {
157         this.dictElementType = dictElementType;
158     }
159
160     /**
161      * Get the createdBy info.
162      *
163      * @return the createdBy
164      */
165     public String getCreatedBy() {
166         return createdBy;
167     }
168
169     /**
170      * Set the createdBy info.
171      *
172      * @param createdBy the createdBy to set
173      */
174     public void setCreatedBy(String createdBy) {
175         this.createdBy = createdBy;
176     }
177
178     /**
179      * Get the updatedBy info.
180      *
181      * @return the updatedBy
182      */
183     public String getUpdatedBy() {
184         return updatedBy;
185     }
186
187     /**
188      * Set the updatedBy info.
189      *
190      * @param updatedby the updatedBy to set
191      */
192     public void setUpdatedBy(String updatedby) {
193         updatedBy = updatedby;
194     }
195
196     /**
197      * Get the last updated date.
198      *
199      * @return the lastUpdatedDate
200      */
201     public String getLastUpdatedDate() {
202         return lastUpdatedDate;
203     }
204
205     /**
206      * Set the last updated date.
207      *
208      * @param lastUpdatedDate the lastUpdatedDate to set
209      */
210     public void setLastUpdatedDate(String lastUpdatedDate) {
211         this.lastUpdatedDate = lastUpdatedDate;
212     }
213
214 }