1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.asset.model;
16  
17  import java.io.Serializable;
18  
19  import java.util.Date;
20  
21  /**
22   * <a href="AssetEntryDisplay.java.html"><b><i>View Source</i></b></a>
23   *
24   * @author Brian Wing Shun Chan
25   * @author Jorge Ferrer
26   */
27  public class AssetEntryDisplay implements Serializable {
28  
29      public long getEntryId() {
30          return _entryId;
31      }
32  
33      public void setEntryId(long entryId) {
34          _entryId = entryId;
35      }
36  
37      public long getCompanyId() {
38          return _companyId;
39      }
40  
41      public void setCompanyId(long companyId) {
42          _companyId = companyId;
43      }
44  
45      public long getUserId() {
46          return _userId;
47      }
48  
49      public void setUserId(long userId) {
50          _userId = userId;
51      }
52  
53      public String getUserName() {
54          return _userName;
55      }
56  
57      public void setUserName(String userName) {
58          _userName = userName;
59      }
60  
61      public Date getCreateDate() {
62          return _createDate;
63      }
64  
65      public void setCreateDate(Date createDate) {
66          _createDate = createDate;
67      }
68  
69      public Date getModifiedDate() {
70          return _modifiedDate;
71      }
72  
73      public void setModifiedDate(Date modifiedDate) {
74          _modifiedDate = modifiedDate;
75      }
76  
77      public long getClassNameId() {
78          return _classNameId;
79      }
80  
81      public void setClassNameId(long classNameId) {
82          _classNameId = classNameId;
83      }
84  
85      public String getClassName() {
86          return _className;
87      }
88  
89      public void setClassName(String className) {
90          _className = className;
91      }
92  
93      public long getClassPK() {
94          return _classPK;
95      }
96  
97      public void setClassPK(long classPK) {
98          _classPK = classPK;
99      }
100 
101     public String getPortletId() {
102         return _portletId;
103     }
104 
105     public void setPortletId(String portletId) {
106         _portletId = portletId;
107     }
108 
109     public String getPortletTitle() {
110         return _portletTitle;
111     }
112 
113     public void setPortletTitle(String portletTitle) {
114         _portletTitle = portletTitle;
115     }
116 
117     public Date getStartDate() {
118         return _startDate;
119     }
120 
121     public void setStartDate(Date startDate) {
122         _startDate = startDate;
123     }
124 
125     public Date getEndDate() {
126         return _endDate;
127     }
128 
129     public void setEndDate(Date endDate) {
130         _endDate = endDate;
131     }
132 
133     public Date getPublishDate() {
134         return _publishDate;
135     }
136 
137     public void setPublishDate(Date publishDate) {
138         _publishDate = publishDate;
139     }
140 
141     public Date getExpirationDate() {
142         return _expirationDate;
143     }
144 
145     public void setExpirationDate(Date expirationDate) {
146         _expirationDate = expirationDate;
147     }
148 
149     public String getMimeType() {
150         return _mimeType;
151     }
152 
153     public void setMimeType(String mimeType) {
154         _mimeType = mimeType;
155     }
156 
157     public String getTitle() {
158         return _title;
159     }
160 
161     public void setTitle(String title) {
162         _title = title;
163     }
164 
165     public String getDescription() {
166         return _description;
167     }
168 
169     public void setDescription(String description) {
170         _description = description;
171     }
172 
173     public String getSummary() {
174         return _summary;
175     }
176 
177     public void setSummary(String summary) {
178         _summary = summary;
179     }
180 
181     public String getUrl() {
182         return _url;
183     }
184 
185     public void setUrl(String url) {
186         _url = url;
187     }
188 
189     public int getHeight() {
190         return _height;
191     }
192 
193     public void setHeight(int height) {
194         _height = height;
195     }
196 
197     public int getWidth() {
198         return _width;
199     }
200 
201     public void setWidth(int width) {
202         _width = width;
203     }
204 
205     public double getPriority() {
206         return _priority;
207     }
208 
209     public void setPriority(double priority) {
210         _priority = priority;
211     }
212 
213     public int getViewCount() {
214         return _viewCount;
215     }
216 
217     public void setViewCount(int viewCount) {
218         _viewCount = viewCount;
219     }
220 
221     public long[] getCategoryIds() {
222         return _categoryIds;
223     }
224 
225     public void setCategoryIds(long[] categoryIds) {
226         _categoryIds = categoryIds;
227     }
228 
229     public String getTagNames() {
230         return _tagNames;
231     }
232 
233     public void setTagNames(String tagNames) {
234         _tagNames = tagNames;
235     }
236 
237     private long _entryId;
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 long[] _categoryIds;
262     private String _tagNames;
263 
264 }