001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.asset.model;
016    
017    import java.io.Serializable;
018    
019    import java.util.Date;
020    
021    /**
022     * @author Brian Wing Shun Chan
023     * @author Jorge Ferrer
024     */
025    public class AssetEntryDisplay implements Serializable {
026    
027            public long getEntryId() {
028                    return _entryId;
029            }
030    
031            public void setEntryId(long entryId) {
032                    _entryId = entryId;
033            }
034    
035            public long getCompanyId() {
036                    return _companyId;
037            }
038    
039            public void setCompanyId(long companyId) {
040                    _companyId = companyId;
041            }
042    
043            public long getUserId() {
044                    return _userId;
045            }
046    
047            public void setUserId(long userId) {
048                    _userId = userId;
049            }
050    
051            public String getUserName() {
052                    return _userName;
053            }
054    
055            public void setUserName(String userName) {
056                    _userName = userName;
057            }
058    
059            public Date getCreateDate() {
060                    return _createDate;
061            }
062    
063            public void setCreateDate(Date createDate) {
064                    _createDate = createDate;
065            }
066    
067            public Date getModifiedDate() {
068                    return _modifiedDate;
069            }
070    
071            public void setModifiedDate(Date modifiedDate) {
072                    _modifiedDate = modifiedDate;
073            }
074    
075            public long getClassNameId() {
076                    return _classNameId;
077            }
078    
079            public void setClassNameId(long classNameId) {
080                    _classNameId = classNameId;
081            }
082    
083            public String getClassName() {
084                    return _className;
085            }
086    
087            public void setClassName(String className) {
088                    _className = className;
089            }
090    
091            public long getClassPK() {
092                    return _classPK;
093            }
094    
095            public void setClassPK(long classPK) {
096                    _classPK = classPK;
097            }
098    
099            public String getPortletId() {
100                    return _portletId;
101            }
102    
103            public void setPortletId(String portletId) {
104                    _portletId = portletId;
105            }
106    
107            public String getPortletTitle() {
108                    return _portletTitle;
109            }
110    
111            public void setPortletTitle(String portletTitle) {
112                    _portletTitle = portletTitle;
113            }
114    
115            public Date getStartDate() {
116                    return _startDate;
117            }
118    
119            public void setStartDate(Date startDate) {
120                    _startDate = startDate;
121            }
122    
123            public Date getEndDate() {
124                    return _endDate;
125            }
126    
127            public void setEndDate(Date endDate) {
128                    _endDate = endDate;
129            }
130    
131            public Date getPublishDate() {
132                    return _publishDate;
133            }
134    
135            public void setPublishDate(Date publishDate) {
136                    _publishDate = publishDate;
137            }
138    
139            public Date getExpirationDate() {
140                    return _expirationDate;
141            }
142    
143            public void setExpirationDate(Date expirationDate) {
144                    _expirationDate = expirationDate;
145            }
146    
147            public String getMimeType() {
148                    return _mimeType;
149            }
150    
151            public void setMimeType(String mimeType) {
152                    _mimeType = mimeType;
153            }
154    
155            public String getTitle() {
156                    return _title;
157            }
158    
159            public void setTitle(String title) {
160                    _title = title;
161            }
162    
163            public String getDescription() {
164                    return _description;
165            }
166    
167            public void setDescription(String description) {
168                    _description = description;
169            }
170    
171            public String getSummary() {
172                    return _summary;
173            }
174    
175            public void setSummary(String summary) {
176                    _summary = summary;
177            }
178    
179            public String getUrl() {
180                    return _url;
181            }
182    
183            public void setUrl(String url) {
184                    _url = url;
185            }
186    
187            public int getHeight() {
188                    return _height;
189            }
190    
191            public void setHeight(int height) {
192                    _height = height;
193            }
194    
195            public int getWidth() {
196                    return _width;
197            }
198    
199            public void setWidth(int width) {
200                    _width = width;
201            }
202    
203            public double getPriority() {
204                    return _priority;
205            }
206    
207            public void setPriority(double priority) {
208                    _priority = priority;
209            }
210    
211            public int getViewCount() {
212                    return _viewCount;
213            }
214    
215            public void setViewCount(int viewCount) {
216                    _viewCount = viewCount;
217            }
218    
219            public long[] getCategoryIds() {
220                    return _categoryIds;
221            }
222    
223            public void setCategoryIds(long[] categoryIds) {
224                    _categoryIds = categoryIds;
225            }
226    
227            public String getTagNames() {
228                    return _tagNames;
229            }
230    
231            public void setTagNames(String tagNames) {
232                    _tagNames = tagNames;
233            }
234    
235            private long _entryId;
236            private long _companyId;
237            private long _userId;
238            private String _userName;
239            private Date _createDate;
240            private Date _modifiedDate;
241            private long _classNameId;
242            private String _className;
243            private long _classPK;
244            private String _portletId;
245            private String _portletTitle;
246            private Date _startDate;
247            private Date _endDate;
248            private Date _publishDate;
249            private Date _expirationDate;
250            private String _mimeType;
251            private String _title;
252            private String _description;
253            private String _summary;
254            private String _url;
255            private int _height;
256            private int _width;
257            private double _priority;
258            private int _viewCount;
259            private long[] _categoryIds;
260            private String _tagNames;
261    
262    }