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