1
22
23 package com.liferay.portlet.tags.model;
24
25 import java.io.Serializable;
26
27 import java.util.Date;
28
29
34 public class TagsAssetDisplay implements Serializable {
35
36 public long getAssetId() {
37 return _assetId;
38 }
39
40 public void setAssetId(long assetId) {
41 _assetId = assetId;
42 }
43
44 public long getCompanyId() {
45 return _companyId;
46 }
47
48 public void setCompanyId(long companyId) {
49 _companyId = companyId;
50 }
51
52 public long getUserId() {
53 return _userId;
54 }
55
56 public void setUserId(long userId) {
57 _userId = userId;
58 }
59
60 public String getUserName() {
61 return _userName;
62 }
63
64 public void setUserName(String userName) {
65 _userName = userName;
66 }
67
68 public Date getCreateDate() {
69 return _createDate;
70 }
71
72 public void setCreateDate(Date createDate) {
73 _createDate = createDate;
74 }
75
76 public Date getModifiedDate() {
77 return _modifiedDate;
78 }
79
80 public void setModifiedDate(Date modifiedDate) {
81 _modifiedDate = modifiedDate;
82 }
83
84 public long getClassNameId() {
85 return _classNameId;
86 }
87
88 public void setClassNameId(long classNameId) {
89 _classNameId = classNameId;
90 }
91
92 public String getClassName() {
93 return _className;
94 }
95
96 public void setClassName(String className) {
97 _className = className;
98 }
99
100 public long getClassPK() {
101 return _classPK;
102 }
103
104 public void setClassPK(long classPK) {
105 _classPK = classPK;
106 }
107
108 public String getPortletId() {
109 return _portletId;
110 }
111
112 public void setPortletId(String portletId) {
113 _portletId = portletId;
114 }
115
116 public String getPortletTitle() {
117 return _portletTitle;
118 }
119
120 public void setPortletTitle(String portletTitle) {
121 _portletTitle = portletTitle;
122 }
123
124 public Date getStartDate() {
125 return _startDate;
126 }
127
128 public void setStartDate(Date startDate) {
129 _startDate = startDate;
130 }
131
132 public Date getEndDate() {
133 return _endDate;
134 }
135
136 public void setEndDate(Date endDate) {
137 _endDate = endDate;
138 }
139
140 public Date getPublishDate() {
141 return _publishDate;
142 }
143
144 public void setPublishDate(Date publishDate) {
145 _publishDate = publishDate;
146 }
147
148 public Date getExpirationDate() {
149 return _expirationDate;
150 }
151
152 public void setExpirationDate(Date expirationDate) {
153 _expirationDate = expirationDate;
154 }
155
156 public String getMimeType() {
157 return _mimeType;
158 }
159
160 public void setMimeType(String mimeType) {
161 _mimeType = mimeType;
162 }
163
164 public String getTitle() {
165 return _title;
166 }
167
168 public void setTitle(String title) {
169 _title = title;
170 }
171
172 public String getDescription() {
173 return _description;
174 }
175
176 public void setDescription(String description) {
177 _description = description;
178 }
179
180 public String getSummary() {
181 return _summary;
182 }
183
184 public void setSummary(String summary) {
185 _summary = summary;
186 }
187
188 public String getUrl() {
189 return _url;
190 }
191
192 public void setUrl(String url) {
193 _url = url;
194 }
195
196 public int getHeight() {
197 return _height;
198 }
199
200 public void setHeight(int height) {
201 _height = height;
202 }
203
204 public int getWidth() {
205 return _width;
206 }
207
208 public void setWidth(int width) {
209 _width = width;
210 }
211
212 public double getPriority() {
213 return _priority;
214 }
215
216 public void setPriority(double priority) {
217 _priority = priority;
218 }
219
220 public int getViewCount() {
221 return _viewCount;
222 }
223
224 public void setViewCount(int viewCount) {
225 _viewCount = viewCount;
226 }
227
228 public String getTagsEntries() {
229 return _tagsEntries;
230 }
231
232 public void setTagsEntries(String tagsEntries) {
233 _tagsEntries = tagsEntries;
234 }
235
236 private long _assetId;
237 private long _companyId;
238 private long _userId;
239 private String _userName;
240 private Date _createDate;
241 private Date _modifiedDate;
242 private long _classNameId;
243 private String _className;
244 private long _classPK;
245 private String _portletId;
246 private String _portletTitle;
247 private Date _startDate;
248 private Date _endDate;
249 private Date _publishDate;
250 private Date _expirationDate;
251 private String _mimeType;
252 private String _title;
253 private String _description;
254 private String _summary;
255 private String _url;
256 private int _height;
257 private int _width;
258 private double _priority;
259 private int _viewCount;
260 private String _tagsEntries;
261
262 }