001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
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            /**
032            * Gets the primary key of this asset entry.
033            *
034            * @return the primary key of this asset entry
035            */
036            public long getPrimaryKey() {
037                    return _assetEntry.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this asset entry
042            *
043            * @param pk the primary key of this asset entry
044            */
045            public void setPrimaryKey(long pk) {
046                    _assetEntry.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the entry id of this asset entry.
051            *
052            * @return the entry id of this asset entry
053            */
054            public long getEntryId() {
055                    return _assetEntry.getEntryId();
056            }
057    
058            /**
059            * Sets the entry id of this asset entry.
060            *
061            * @param entryId the entry id of this asset entry
062            */
063            public void setEntryId(long entryId) {
064                    _assetEntry.setEntryId(entryId);
065            }
066    
067            /**
068            * Gets the group id of this asset entry.
069            *
070            * @return the group id of this asset entry
071            */
072            public long getGroupId() {
073                    return _assetEntry.getGroupId();
074            }
075    
076            /**
077            * Sets the group id of this asset entry.
078            *
079            * @param groupId the group id of this asset entry
080            */
081            public void setGroupId(long groupId) {
082                    _assetEntry.setGroupId(groupId);
083            }
084    
085            /**
086            * Gets the company id of this asset entry.
087            *
088            * @return the company id of this asset entry
089            */
090            public long getCompanyId() {
091                    return _assetEntry.getCompanyId();
092            }
093    
094            /**
095            * Sets the company id of this asset entry.
096            *
097            * @param companyId the company id of this asset entry
098            */
099            public void setCompanyId(long companyId) {
100                    _assetEntry.setCompanyId(companyId);
101            }
102    
103            /**
104            * Gets the user id of this asset entry.
105            *
106            * @return the user id of this asset entry
107            */
108            public long getUserId() {
109                    return _assetEntry.getUserId();
110            }
111    
112            /**
113            * Sets the user id of this asset entry.
114            *
115            * @param userId the user id of this asset entry
116            */
117            public void setUserId(long userId) {
118                    _assetEntry.setUserId(userId);
119            }
120    
121            /**
122            * Gets the user uuid of this asset entry.
123            *
124            * @return the user uuid of this asset entry
125            * @throws SystemException if a system exception occurred
126            */
127            public java.lang.String getUserUuid()
128                    throws com.liferay.portal.kernel.exception.SystemException {
129                    return _assetEntry.getUserUuid();
130            }
131    
132            /**
133            * Sets the user uuid of this asset entry.
134            *
135            * @param userUuid the user uuid of this asset entry
136            */
137            public void setUserUuid(java.lang.String userUuid) {
138                    _assetEntry.setUserUuid(userUuid);
139            }
140    
141            /**
142            * Gets the user name of this asset entry.
143            *
144            * @return the user name of this asset entry
145            */
146            public java.lang.String getUserName() {
147                    return _assetEntry.getUserName();
148            }
149    
150            /**
151            * Sets the user name of this asset entry.
152            *
153            * @param userName the user name of this asset entry
154            */
155            public void setUserName(java.lang.String userName) {
156                    _assetEntry.setUserName(userName);
157            }
158    
159            /**
160            * Gets the create date of this asset entry.
161            *
162            * @return the create date of this asset entry
163            */
164            public java.util.Date getCreateDate() {
165                    return _assetEntry.getCreateDate();
166            }
167    
168            /**
169            * Sets the create date of this asset entry.
170            *
171            * @param createDate the create date of this asset entry
172            */
173            public void setCreateDate(java.util.Date createDate) {
174                    _assetEntry.setCreateDate(createDate);
175            }
176    
177            /**
178            * Gets the modified date of this asset entry.
179            *
180            * @return the modified date of this asset entry
181            */
182            public java.util.Date getModifiedDate() {
183                    return _assetEntry.getModifiedDate();
184            }
185    
186            /**
187            * Sets the modified date of this asset entry.
188            *
189            * @param modifiedDate the modified date of this asset entry
190            */
191            public void setModifiedDate(java.util.Date modifiedDate) {
192                    _assetEntry.setModifiedDate(modifiedDate);
193            }
194    
195            /**
196            * Gets the class name of the model instance this asset entry is polymorphically associated with.
197            *
198            * @return the class name of the model instance this asset entry is polymorphically associated with
199            */
200            public java.lang.String getClassName() {
201                    return _assetEntry.getClassName();
202            }
203    
204            /**
205            * Gets the class name id of this asset entry.
206            *
207            * @return the class name id of this asset entry
208            */
209            public long getClassNameId() {
210                    return _assetEntry.getClassNameId();
211            }
212    
213            /**
214            * Sets the class name id of this asset entry.
215            *
216            * @param classNameId the class name id of this asset entry
217            */
218            public void setClassNameId(long classNameId) {
219                    _assetEntry.setClassNameId(classNameId);
220            }
221    
222            /**
223            * Gets the class p k of this asset entry.
224            *
225            * @return the class p k of this asset entry
226            */
227            public long getClassPK() {
228                    return _assetEntry.getClassPK();
229            }
230    
231            /**
232            * Sets the class p k of this asset entry.
233            *
234            * @param classPK the class p k of this asset entry
235            */
236            public void setClassPK(long classPK) {
237                    _assetEntry.setClassPK(classPK);
238            }
239    
240            /**
241            * Gets the class uuid of this asset entry.
242            *
243            * @return the class uuid of this asset entry
244            */
245            public java.lang.String getClassUuid() {
246                    return _assetEntry.getClassUuid();
247            }
248    
249            /**
250            * Sets the class uuid of this asset entry.
251            *
252            * @param classUuid the class uuid of this asset entry
253            */
254            public void setClassUuid(java.lang.String classUuid) {
255                    _assetEntry.setClassUuid(classUuid);
256            }
257    
258            /**
259            * Gets the visible of this asset entry.
260            *
261            * @return the visible of this asset entry
262            */
263            public boolean getVisible() {
264                    return _assetEntry.getVisible();
265            }
266    
267            /**
268            * Determines whether this asset entry is visible.
269            *
270            * @return whether this asset entry is visible
271            */
272            public boolean isVisible() {
273                    return _assetEntry.isVisible();
274            }
275    
276            /**
277            * Sets whether this {$entity.humanName} is visible.
278            *
279            * @param visible the visible of this asset entry
280            */
281            public void setVisible(boolean visible) {
282                    _assetEntry.setVisible(visible);
283            }
284    
285            /**
286            * Gets the start date of this asset entry.
287            *
288            * @return the start date of this asset entry
289            */
290            public java.util.Date getStartDate() {
291                    return _assetEntry.getStartDate();
292            }
293    
294            /**
295            * Sets the start date of this asset entry.
296            *
297            * @param startDate the start date of this asset entry
298            */
299            public void setStartDate(java.util.Date startDate) {
300                    _assetEntry.setStartDate(startDate);
301            }
302    
303            /**
304            * Gets the end date of this asset entry.
305            *
306            * @return the end date of this asset entry
307            */
308            public java.util.Date getEndDate() {
309                    return _assetEntry.getEndDate();
310            }
311    
312            /**
313            * Sets the end date of this asset entry.
314            *
315            * @param endDate the end date of this asset entry
316            */
317            public void setEndDate(java.util.Date endDate) {
318                    _assetEntry.setEndDate(endDate);
319            }
320    
321            /**
322            * Gets the publish date of this asset entry.
323            *
324            * @return the publish date of this asset entry
325            */
326            public java.util.Date getPublishDate() {
327                    return _assetEntry.getPublishDate();
328            }
329    
330            /**
331            * Sets the publish date of this asset entry.
332            *
333            * @param publishDate the publish date of this asset entry
334            */
335            public void setPublishDate(java.util.Date publishDate) {
336                    _assetEntry.setPublishDate(publishDate);
337            }
338    
339            /**
340            * Gets the expiration date of this asset entry.
341            *
342            * @return the expiration date of this asset entry
343            */
344            public java.util.Date getExpirationDate() {
345                    return _assetEntry.getExpirationDate();
346            }
347    
348            /**
349            * Sets the expiration date of this asset entry.
350            *
351            * @param expirationDate the expiration date of this asset entry
352            */
353            public void setExpirationDate(java.util.Date expirationDate) {
354                    _assetEntry.setExpirationDate(expirationDate);
355            }
356    
357            /**
358            * Gets the mime type of this asset entry.
359            *
360            * @return the mime type of this asset entry
361            */
362            public java.lang.String getMimeType() {
363                    return _assetEntry.getMimeType();
364            }
365    
366            /**
367            * Sets the mime type of this asset entry.
368            *
369            * @param mimeType the mime type of this asset entry
370            */
371            public void setMimeType(java.lang.String mimeType) {
372                    _assetEntry.setMimeType(mimeType);
373            }
374    
375            /**
376            * Gets the title of this asset entry.
377            *
378            * @return the title of this asset entry
379            */
380            public java.lang.String getTitle() {
381                    return _assetEntry.getTitle();
382            }
383    
384            /**
385            * Sets the title of this asset entry.
386            *
387            * @param title the title of this asset entry
388            */
389            public void setTitle(java.lang.String title) {
390                    _assetEntry.setTitle(title);
391            }
392    
393            /**
394            * Gets the description of this asset entry.
395            *
396            * @return the description of this asset entry
397            */
398            public java.lang.String getDescription() {
399                    return _assetEntry.getDescription();
400            }
401    
402            /**
403            * Sets the description of this asset entry.
404            *
405            * @param description the description of this asset entry
406            */
407            public void setDescription(java.lang.String description) {
408                    _assetEntry.setDescription(description);
409            }
410    
411            /**
412            * Gets the summary of this asset entry.
413            *
414            * @return the summary of this asset entry
415            */
416            public java.lang.String getSummary() {
417                    return _assetEntry.getSummary();
418            }
419    
420            /**
421            * Sets the summary of this asset entry.
422            *
423            * @param summary the summary of this asset entry
424            */
425            public void setSummary(java.lang.String summary) {
426                    _assetEntry.setSummary(summary);
427            }
428    
429            /**
430            * Gets the url of this asset entry.
431            *
432            * @return the url of this asset entry
433            */
434            public java.lang.String getUrl() {
435                    return _assetEntry.getUrl();
436            }
437    
438            /**
439            * Sets the url of this asset entry.
440            *
441            * @param url the url of this asset entry
442            */
443            public void setUrl(java.lang.String url) {
444                    _assetEntry.setUrl(url);
445            }
446    
447            /**
448            * Gets the height of this asset entry.
449            *
450            * @return the height of this asset entry
451            */
452            public int getHeight() {
453                    return _assetEntry.getHeight();
454            }
455    
456            /**
457            * Sets the height of this asset entry.
458            *
459            * @param height the height of this asset entry
460            */
461            public void setHeight(int height) {
462                    _assetEntry.setHeight(height);
463            }
464    
465            /**
466            * Gets the width of this asset entry.
467            *
468            * @return the width of this asset entry
469            */
470            public int getWidth() {
471                    return _assetEntry.getWidth();
472            }
473    
474            /**
475            * Sets the width of this asset entry.
476            *
477            * @param width the width of this asset entry
478            */
479            public void setWidth(int width) {
480                    _assetEntry.setWidth(width);
481            }
482    
483            /**
484            * Gets the priority of this asset entry.
485            *
486            * @return the priority of this asset entry
487            */
488            public double getPriority() {
489                    return _assetEntry.getPriority();
490            }
491    
492            /**
493            * Sets the priority of this asset entry.
494            *
495            * @param priority the priority of this asset entry
496            */
497            public void setPriority(double priority) {
498                    _assetEntry.setPriority(priority);
499            }
500    
501            /**
502            * Gets the view count of this asset entry.
503            *
504            * @return the view count of this asset entry
505            */
506            public int getViewCount() {
507                    return _assetEntry.getViewCount();
508            }
509    
510            /**
511            * Sets the view count of this asset entry.
512            *
513            * @param viewCount the view count of this asset entry
514            */
515            public void setViewCount(int viewCount) {
516                    _assetEntry.setViewCount(viewCount);
517            }
518    
519            public boolean isNew() {
520                    return _assetEntry.isNew();
521            }
522    
523            public void setNew(boolean n) {
524                    _assetEntry.setNew(n);
525            }
526    
527            public boolean isCachedModel() {
528                    return _assetEntry.isCachedModel();
529            }
530    
531            public void setCachedModel(boolean cachedModel) {
532                    _assetEntry.setCachedModel(cachedModel);
533            }
534    
535            public boolean isEscapedModel() {
536                    return _assetEntry.isEscapedModel();
537            }
538    
539            public void setEscapedModel(boolean escapedModel) {
540                    _assetEntry.setEscapedModel(escapedModel);
541            }
542    
543            public java.io.Serializable getPrimaryKeyObj() {
544                    return _assetEntry.getPrimaryKeyObj();
545            }
546    
547            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
548                    return _assetEntry.getExpandoBridge();
549            }
550    
551            public void setExpandoBridgeAttributes(
552                    com.liferay.portal.service.ServiceContext serviceContext) {
553                    _assetEntry.setExpandoBridgeAttributes(serviceContext);
554            }
555    
556            public java.lang.Object clone() {
557                    return _assetEntry.clone();
558            }
559    
560            public int compareTo(com.liferay.portlet.asset.model.AssetEntry assetEntry) {
561                    return _assetEntry.compareTo(assetEntry);
562            }
563    
564            public int hashCode() {
565                    return _assetEntry.hashCode();
566            }
567    
568            public com.liferay.portlet.asset.model.AssetEntry toEscapedModel() {
569                    return _assetEntry.toEscapedModel();
570            }
571    
572            public java.lang.String toString() {
573                    return _assetEntry.toString();
574            }
575    
576            public java.lang.String toXmlString() {
577                    return _assetEntry.toXmlString();
578            }
579    
580            public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getCategories()
581                    throws com.liferay.portal.kernel.exception.SystemException {
582                    return _assetEntry.getCategories();
583            }
584    
585            public long[] getCategoryIds()
586                    throws com.liferay.portal.kernel.exception.SystemException {
587                    return _assetEntry.getCategoryIds();
588            }
589    
590            public double getSocialInformationEquity() {
591                    return _assetEntry.getSocialInformationEquity();
592            }
593    
594            public java.lang.String[] getTagNames()
595                    throws com.liferay.portal.kernel.exception.SystemException {
596                    return _assetEntry.getTagNames();
597            }
598    
599            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags()
600                    throws com.liferay.portal.kernel.exception.SystemException {
601                    return _assetEntry.getTags();
602            }
603    
604            public void updateSocialInformationEquity(double value) {
605                    _assetEntry.updateSocialInformationEquity(value);
606            }
607    
608            public AssetEntry getWrappedAssetEntry() {
609                    return _assetEntry;
610            }
611    
612            private AssetEntry _assetEntry;
613    }