1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.tags.model;
24  
25  import java.io.Serializable;
26  
27  import java.util.Date;
28  
29  /**
30   * <a href="TagsAssetDisplay.java.html"><b><i>View Source</i></b></a>
31   *
32   * @author Brian Wing Shun Chan
33   *
34   */
35  public class TagsAssetDisplay implements Serializable {
36  
37      public long getAssetId() {
38          return _assetId;
39      }
40  
41      public void setAssetId(long assetId) {
42          _assetId = assetId;
43      }
44  
45      public long getCompanyId() {
46          return _companyId;
47      }
48  
49      public void setCompanyId(long companyId) {
50          _companyId = companyId;
51      }
52  
53      public long getUserId() {
54          return _userId;
55      }
56  
57      public void setUserId(long userId) {
58          _userId = userId;
59      }
60  
61      public String getUserName() {
62          return _userName;
63      }
64  
65      public void setUserName(String userName) {
66          _userName = userName;
67      }
68  
69      public Date getCreateDate() {
70          return _createDate;
71      }
72  
73      public void setCreateDate(Date createDate) {
74          _createDate = createDate;
75      }
76  
77      public Date getModifiedDate() {
78          return _modifiedDate;
79      }
80  
81      public void setModifiedDate(Date modifiedDate) {
82          _modifiedDate = modifiedDate;
83      }
84  
85      public long getClassNameId() {
86          return _classNameId;
87      }
88  
89      public void setClassNameId(long classNameId) {
90          _classNameId = classNameId;
91      }
92  
93      public String getClassName() {
94          return _className;
95      }
96  
97      public void setClassName(String className) {
98          _className = className;
99      }
100 
101     public long getClassPK() {
102         return _classPK;
103     }
104 
105     public void setClassPK(long classPK) {
106         _classPK = classPK;
107     }
108 
109     public String getPortletId() {
110         return _portletId;
111     }
112 
113     public void setPortletId(String portletId) {
114         _portletId = portletId;
115     }
116 
117     public String getPortletTitle() {
118         return _portletTitle;
119     }
120 
121     public void setPortletTitle(String portletTitle) {
122         _portletTitle = portletTitle;
123     }
124 
125     public Date getStartDate() {
126         return _startDate;
127     }
128 
129     public void setStartDate(Date startDate) {
130         _startDate = startDate;
131     }
132 
133     public Date getEndDate() {
134         return _endDate;
135     }
136 
137     public void setEndDate(Date endDate) {
138         _endDate = endDate;
139     }
140 
141     public Date getPublishDate() {
142         return _publishDate;
143     }
144 
145     public void setPublishDate(Date publishDate) {
146         _publishDate = publishDate;
147     }
148 
149     public Date getExpirationDate() {
150         return _expirationDate;
151     }
152 
153     public void setExpirationDate(Date expirationDate) {
154         _expirationDate = expirationDate;
155     }
156 
157     public String getMimeType() {
158         return _mimeType;
159     }
160 
161     public void setMimeType(String mimeType) {
162         _mimeType = mimeType;
163     }
164 
165     public String getTitle() {
166         return _title;
167     }
168 
169     public void setTitle(String title) {
170         _title = title;
171     }
172 
173     public String getDescription() {
174         return _description;
175     }
176 
177     public void setDescription(String description) {
178         _description = description;
179     }
180 
181     public String getSummary() {
182         return _summary;
183     }
184 
185     public void setSummary(String summary) {
186         _summary = summary;
187     }
188 
189     public String getUrl() {
190         return _url;
191     }
192 
193     public void setUrl(String url) {
194         _url = url;
195     }
196 
197     public int getHeight() {
198         return _height;
199     }
200 
201     public void setHeight(int height) {
202         _height = height;
203     }
204 
205     public int getWidth() {
206         return _width;
207     }
208 
209     public void setWidth(int width) {
210         _width = width;
211     }
212 
213     public double getPriority() {
214         return _priority;
215     }
216 
217     public void setPriority(double priority) {
218         _priority = priority;
219     }
220 
221     public int getViewCount() {
222         return _viewCount;
223     }
224 
225     public void setViewCount(int viewCount) {
226         _viewCount = viewCount;
227     }
228 
229     public String getTagsEntries() {
230         return _tagsEntries;
231     }
232 
233     public void setTagsEntries(String tagsEntries) {
234         _tagsEntries = tagsEntries;
235     }
236 
237     private long _assetId;
238     private long _companyId;
239     private long _userId;
240     private String _userName;
241     private Date _createDate;
242     private Date _modifiedDate;
243     private long _classNameId;
244     private String _className;
245     private long _classPK;
246     private String _portletId;
247     private String _portletTitle;
248     private Date _startDate;
249     private Date _endDate;
250     private Date _publishDate;
251     private Date _expirationDate;
252     private String _mimeType;
253     private String _title;
254     private String _description;
255     private String _summary;
256     private String _url;
257     private int _height;
258     private int _width;
259     private double _priority;
260     private int _viewCount;
261     private String _tagsEntries;
262 
263 }