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    /**
018     * <p>
019     * This class is a wrapper for {@link AssetEntry}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       AssetEntry
024     * @generated
025     */
026    public class AssetEntryWrapper implements AssetEntry {
027            public AssetEntryWrapper(AssetEntry assetEntry) {
028                    _assetEntry = assetEntry;
029            }
030    
031            public long getPrimaryKey() {
032                    return _assetEntry.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _assetEntry.setPrimaryKey(pk);
037            }
038    
039            public long getEntryId() {
040                    return _assetEntry.getEntryId();
041            }
042    
043            public void setEntryId(long entryId) {
044                    _assetEntry.setEntryId(entryId);
045            }
046    
047            public long getGroupId() {
048                    return _assetEntry.getGroupId();
049            }
050    
051            public void setGroupId(long groupId) {
052                    _assetEntry.setGroupId(groupId);
053            }
054    
055            public long getCompanyId() {
056                    return _assetEntry.getCompanyId();
057            }
058    
059            public void setCompanyId(long companyId) {
060                    _assetEntry.setCompanyId(companyId);
061            }
062    
063            public long getUserId() {
064                    return _assetEntry.getUserId();
065            }
066    
067            public void setUserId(long userId) {
068                    _assetEntry.setUserId(userId);
069            }
070    
071            public java.lang.String getUserUuid()
072                    throws com.liferay.portal.kernel.exception.SystemException {
073                    return _assetEntry.getUserUuid();
074            }
075    
076            public void setUserUuid(java.lang.String userUuid) {
077                    _assetEntry.setUserUuid(userUuid);
078            }
079    
080            public java.lang.String getUserName() {
081                    return _assetEntry.getUserName();
082            }
083    
084            public void setUserName(java.lang.String userName) {
085                    _assetEntry.setUserName(userName);
086            }
087    
088            public java.util.Date getCreateDate() {
089                    return _assetEntry.getCreateDate();
090            }
091    
092            public void setCreateDate(java.util.Date createDate) {
093                    _assetEntry.setCreateDate(createDate);
094            }
095    
096            public java.util.Date getModifiedDate() {
097                    return _assetEntry.getModifiedDate();
098            }
099    
100            public void setModifiedDate(java.util.Date modifiedDate) {
101                    _assetEntry.setModifiedDate(modifiedDate);
102            }
103    
104            public java.lang.String getClassName() {
105                    return _assetEntry.getClassName();
106            }
107    
108            public long getClassNameId() {
109                    return _assetEntry.getClassNameId();
110            }
111    
112            public void setClassNameId(long classNameId) {
113                    _assetEntry.setClassNameId(classNameId);
114            }
115    
116            public long getClassPK() {
117                    return _assetEntry.getClassPK();
118            }
119    
120            public void setClassPK(long classPK) {
121                    _assetEntry.setClassPK(classPK);
122            }
123    
124            public java.lang.String getClassUuid() {
125                    return _assetEntry.getClassUuid();
126            }
127    
128            public void setClassUuid(java.lang.String classUuid) {
129                    _assetEntry.setClassUuid(classUuid);
130            }
131    
132            public boolean getVisible() {
133                    return _assetEntry.getVisible();
134            }
135    
136            public boolean isVisible() {
137                    return _assetEntry.isVisible();
138            }
139    
140            public void setVisible(boolean visible) {
141                    _assetEntry.setVisible(visible);
142            }
143    
144            public java.util.Date getStartDate() {
145                    return _assetEntry.getStartDate();
146            }
147    
148            public void setStartDate(java.util.Date startDate) {
149                    _assetEntry.setStartDate(startDate);
150            }
151    
152            public java.util.Date getEndDate() {
153                    return _assetEntry.getEndDate();
154            }
155    
156            public void setEndDate(java.util.Date endDate) {
157                    _assetEntry.setEndDate(endDate);
158            }
159    
160            public java.util.Date getPublishDate() {
161                    return _assetEntry.getPublishDate();
162            }
163    
164            public void setPublishDate(java.util.Date publishDate) {
165                    _assetEntry.setPublishDate(publishDate);
166            }
167    
168            public java.util.Date getExpirationDate() {
169                    return _assetEntry.getExpirationDate();
170            }
171    
172            public void setExpirationDate(java.util.Date expirationDate) {
173                    _assetEntry.setExpirationDate(expirationDate);
174            }
175    
176            public java.lang.String getMimeType() {
177                    return _assetEntry.getMimeType();
178            }
179    
180            public void setMimeType(java.lang.String mimeType) {
181                    _assetEntry.setMimeType(mimeType);
182            }
183    
184            public java.lang.String getTitle() {
185                    return _assetEntry.getTitle();
186            }
187    
188            public void setTitle(java.lang.String title) {
189                    _assetEntry.setTitle(title);
190            }
191    
192            public java.lang.String getDescription() {
193                    return _assetEntry.getDescription();
194            }
195    
196            public void setDescription(java.lang.String description) {
197                    _assetEntry.setDescription(description);
198            }
199    
200            public java.lang.String getSummary() {
201                    return _assetEntry.getSummary();
202            }
203    
204            public void setSummary(java.lang.String summary) {
205                    _assetEntry.setSummary(summary);
206            }
207    
208            public java.lang.String getUrl() {
209                    return _assetEntry.getUrl();
210            }
211    
212            public void setUrl(java.lang.String url) {
213                    _assetEntry.setUrl(url);
214            }
215    
216            public int getHeight() {
217                    return _assetEntry.getHeight();
218            }
219    
220            public void setHeight(int height) {
221                    _assetEntry.setHeight(height);
222            }
223    
224            public int getWidth() {
225                    return _assetEntry.getWidth();
226            }
227    
228            public void setWidth(int width) {
229                    _assetEntry.setWidth(width);
230            }
231    
232            public double getPriority() {
233                    return _assetEntry.getPriority();
234            }
235    
236            public void setPriority(double priority) {
237                    _assetEntry.setPriority(priority);
238            }
239    
240            public int getViewCount() {
241                    return _assetEntry.getViewCount();
242            }
243    
244            public void setViewCount(int viewCount) {
245                    _assetEntry.setViewCount(viewCount);
246            }
247    
248            public com.liferay.portlet.asset.model.AssetEntry toEscapedModel() {
249                    return _assetEntry.toEscapedModel();
250            }
251    
252            public boolean isNew() {
253                    return _assetEntry.isNew();
254            }
255    
256            public void setNew(boolean n) {
257                    _assetEntry.setNew(n);
258            }
259    
260            public boolean isCachedModel() {
261                    return _assetEntry.isCachedModel();
262            }
263    
264            public void setCachedModel(boolean cachedModel) {
265                    _assetEntry.setCachedModel(cachedModel);
266            }
267    
268            public boolean isEscapedModel() {
269                    return _assetEntry.isEscapedModel();
270            }
271    
272            public void setEscapedModel(boolean escapedModel) {
273                    _assetEntry.setEscapedModel(escapedModel);
274            }
275    
276            public java.io.Serializable getPrimaryKeyObj() {
277                    return _assetEntry.getPrimaryKeyObj();
278            }
279    
280            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
281                    return _assetEntry.getExpandoBridge();
282            }
283    
284            public void setExpandoBridgeAttributes(
285                    com.liferay.portal.service.ServiceContext serviceContext) {
286                    _assetEntry.setExpandoBridgeAttributes(serviceContext);
287            }
288    
289            public java.lang.Object clone() {
290                    return _assetEntry.clone();
291            }
292    
293            public int compareTo(com.liferay.portlet.asset.model.AssetEntry assetEntry) {
294                    return _assetEntry.compareTo(assetEntry);
295            }
296    
297            public int hashCode() {
298                    return _assetEntry.hashCode();
299            }
300    
301            public java.lang.String toString() {
302                    return _assetEntry.toString();
303            }
304    
305            public java.lang.String toXmlString() {
306                    return _assetEntry.toXmlString();
307            }
308    
309            public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getCategories()
310                    throws com.liferay.portal.kernel.exception.SystemException {
311                    return _assetEntry.getCategories();
312            }
313    
314            public long[] getCategoryIds()
315                    throws com.liferay.portal.kernel.exception.SystemException {
316                    return _assetEntry.getCategoryIds();
317            }
318    
319            public double getSocialInformationEquity() {
320                    return _assetEntry.getSocialInformationEquity();
321            }
322    
323            public java.lang.String[] getTagNames()
324                    throws com.liferay.portal.kernel.exception.SystemException {
325                    return _assetEntry.getTagNames();
326            }
327    
328            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags()
329                    throws com.liferay.portal.kernel.exception.SystemException {
330                    return _assetEntry.getTags();
331            }
332    
333            public void updateSocialInformationEquity(double value) {
334                    _assetEntry.updateSocialInformationEquity(value);
335            }
336    
337            public AssetEntry getWrappedAssetEntry() {
338                    return _assetEntry;
339            }
340    
341            private AssetEntry _assetEntry;
342    }