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