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.journal.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link JournalFeed}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       JournalFeed
024     * @generated
025     */
026    public class JournalFeedWrapper implements JournalFeed {
027            public JournalFeedWrapper(JournalFeed journalFeed) {
028                    _journalFeed = journalFeed;
029            }
030    
031            /**
032            * Gets the primary key of this journal feed.
033            *
034            * @return the primary key of this journal feed
035            */
036            public long getPrimaryKey() {
037                    return _journalFeed.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this journal feed
042            *
043            * @param pk the primary key of this journal feed
044            */
045            public void setPrimaryKey(long pk) {
046                    _journalFeed.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the uuid of this journal feed.
051            *
052            * @return the uuid of this journal feed
053            */
054            public java.lang.String getUuid() {
055                    return _journalFeed.getUuid();
056            }
057    
058            /**
059            * Sets the uuid of this journal feed.
060            *
061            * @param uuid the uuid of this journal feed
062            */
063            public void setUuid(java.lang.String uuid) {
064                    _journalFeed.setUuid(uuid);
065            }
066    
067            /**
068            * Gets the id of this journal feed.
069            *
070            * @return the id of this journal feed
071            */
072            public long getId() {
073                    return _journalFeed.getId();
074            }
075    
076            /**
077            * Sets the id of this journal feed.
078            *
079            * @param id the id of this journal feed
080            */
081            public void setId(long id) {
082                    _journalFeed.setId(id);
083            }
084    
085            /**
086            * Gets the group id of this journal feed.
087            *
088            * @return the group id of this journal feed
089            */
090            public long getGroupId() {
091                    return _journalFeed.getGroupId();
092            }
093    
094            /**
095            * Sets the group id of this journal feed.
096            *
097            * @param groupId the group id of this journal feed
098            */
099            public void setGroupId(long groupId) {
100                    _journalFeed.setGroupId(groupId);
101            }
102    
103            /**
104            * Gets the company id of this journal feed.
105            *
106            * @return the company id of this journal feed
107            */
108            public long getCompanyId() {
109                    return _journalFeed.getCompanyId();
110            }
111    
112            /**
113            * Sets the company id of this journal feed.
114            *
115            * @param companyId the company id of this journal feed
116            */
117            public void setCompanyId(long companyId) {
118                    _journalFeed.setCompanyId(companyId);
119            }
120    
121            /**
122            * Gets the user id of this journal feed.
123            *
124            * @return the user id of this journal feed
125            */
126            public long getUserId() {
127                    return _journalFeed.getUserId();
128            }
129    
130            /**
131            * Sets the user id of this journal feed.
132            *
133            * @param userId the user id of this journal feed
134            */
135            public void setUserId(long userId) {
136                    _journalFeed.setUserId(userId);
137            }
138    
139            /**
140            * Gets the user uuid of this journal feed.
141            *
142            * @return the user uuid of this journal feed
143            * @throws SystemException if a system exception occurred
144            */
145            public java.lang.String getUserUuid()
146                    throws com.liferay.portal.kernel.exception.SystemException {
147                    return _journalFeed.getUserUuid();
148            }
149    
150            /**
151            * Sets the user uuid of this journal feed.
152            *
153            * @param userUuid the user uuid of this journal feed
154            */
155            public void setUserUuid(java.lang.String userUuid) {
156                    _journalFeed.setUserUuid(userUuid);
157            }
158    
159            /**
160            * Gets the user name of this journal feed.
161            *
162            * @return the user name of this journal feed
163            */
164            public java.lang.String getUserName() {
165                    return _journalFeed.getUserName();
166            }
167    
168            /**
169            * Sets the user name of this journal feed.
170            *
171            * @param userName the user name of this journal feed
172            */
173            public void setUserName(java.lang.String userName) {
174                    _journalFeed.setUserName(userName);
175            }
176    
177            /**
178            * Gets the create date of this journal feed.
179            *
180            * @return the create date of this journal feed
181            */
182            public java.util.Date getCreateDate() {
183                    return _journalFeed.getCreateDate();
184            }
185    
186            /**
187            * Sets the create date of this journal feed.
188            *
189            * @param createDate the create date of this journal feed
190            */
191            public void setCreateDate(java.util.Date createDate) {
192                    _journalFeed.setCreateDate(createDate);
193            }
194    
195            /**
196            * Gets the modified date of this journal feed.
197            *
198            * @return the modified date of this journal feed
199            */
200            public java.util.Date getModifiedDate() {
201                    return _journalFeed.getModifiedDate();
202            }
203    
204            /**
205            * Sets the modified date of this journal feed.
206            *
207            * @param modifiedDate the modified date of this journal feed
208            */
209            public void setModifiedDate(java.util.Date modifiedDate) {
210                    _journalFeed.setModifiedDate(modifiedDate);
211            }
212    
213            /**
214            * Gets the feed id of this journal feed.
215            *
216            * @return the feed id of this journal feed
217            */
218            public java.lang.String getFeedId() {
219                    return _journalFeed.getFeedId();
220            }
221    
222            /**
223            * Sets the feed id of this journal feed.
224            *
225            * @param feedId the feed id of this journal feed
226            */
227            public void setFeedId(java.lang.String feedId) {
228                    _journalFeed.setFeedId(feedId);
229            }
230    
231            /**
232            * Gets the name of this journal feed.
233            *
234            * @return the name of this journal feed
235            */
236            public java.lang.String getName() {
237                    return _journalFeed.getName();
238            }
239    
240            /**
241            * Sets the name of this journal feed.
242            *
243            * @param name the name of this journal feed
244            */
245            public void setName(java.lang.String name) {
246                    _journalFeed.setName(name);
247            }
248    
249            /**
250            * Gets the description of this journal feed.
251            *
252            * @return the description of this journal feed
253            */
254            public java.lang.String getDescription() {
255                    return _journalFeed.getDescription();
256            }
257    
258            /**
259            * Sets the description of this journal feed.
260            *
261            * @param description the description of this journal feed
262            */
263            public void setDescription(java.lang.String description) {
264                    _journalFeed.setDescription(description);
265            }
266    
267            /**
268            * Gets the type of this journal feed.
269            *
270            * @return the type of this journal feed
271            */
272            public java.lang.String getType() {
273                    return _journalFeed.getType();
274            }
275    
276            /**
277            * Sets the type of this journal feed.
278            *
279            * @param type the type of this journal feed
280            */
281            public void setType(java.lang.String type) {
282                    _journalFeed.setType(type);
283            }
284    
285            /**
286            * Gets the structure id of this journal feed.
287            *
288            * @return the structure id of this journal feed
289            */
290            public java.lang.String getStructureId() {
291                    return _journalFeed.getStructureId();
292            }
293    
294            /**
295            * Sets the structure id of this journal feed.
296            *
297            * @param structureId the structure id of this journal feed
298            */
299            public void setStructureId(java.lang.String structureId) {
300                    _journalFeed.setStructureId(structureId);
301            }
302    
303            /**
304            * Gets the template id of this journal feed.
305            *
306            * @return the template id of this journal feed
307            */
308            public java.lang.String getTemplateId() {
309                    return _journalFeed.getTemplateId();
310            }
311    
312            /**
313            * Sets the template id of this journal feed.
314            *
315            * @param templateId the template id of this journal feed
316            */
317            public void setTemplateId(java.lang.String templateId) {
318                    _journalFeed.setTemplateId(templateId);
319            }
320    
321            /**
322            * Gets the renderer template id of this journal feed.
323            *
324            * @return the renderer template id of this journal feed
325            */
326            public java.lang.String getRendererTemplateId() {
327                    return _journalFeed.getRendererTemplateId();
328            }
329    
330            /**
331            * Sets the renderer template id of this journal feed.
332            *
333            * @param rendererTemplateId the renderer template id of this journal feed
334            */
335            public void setRendererTemplateId(java.lang.String rendererTemplateId) {
336                    _journalFeed.setRendererTemplateId(rendererTemplateId);
337            }
338    
339            /**
340            * Gets the delta of this journal feed.
341            *
342            * @return the delta of this journal feed
343            */
344            public int getDelta() {
345                    return _journalFeed.getDelta();
346            }
347    
348            /**
349            * Sets the delta of this journal feed.
350            *
351            * @param delta the delta of this journal feed
352            */
353            public void setDelta(int delta) {
354                    _journalFeed.setDelta(delta);
355            }
356    
357            /**
358            * Gets the order by col of this journal feed.
359            *
360            * @return the order by col of this journal feed
361            */
362            public java.lang.String getOrderByCol() {
363                    return _journalFeed.getOrderByCol();
364            }
365    
366            /**
367            * Sets the order by col of this journal feed.
368            *
369            * @param orderByCol the order by col of this journal feed
370            */
371            public void setOrderByCol(java.lang.String orderByCol) {
372                    _journalFeed.setOrderByCol(orderByCol);
373            }
374    
375            /**
376            * Gets the order by type of this journal feed.
377            *
378            * @return the order by type of this journal feed
379            */
380            public java.lang.String getOrderByType() {
381                    return _journalFeed.getOrderByType();
382            }
383    
384            /**
385            * Sets the order by type of this journal feed.
386            *
387            * @param orderByType the order by type of this journal feed
388            */
389            public void setOrderByType(java.lang.String orderByType) {
390                    _journalFeed.setOrderByType(orderByType);
391            }
392    
393            /**
394            * Gets the target layout friendly url of this journal feed.
395            *
396            * @return the target layout friendly url of this journal feed
397            */
398            public java.lang.String getTargetLayoutFriendlyUrl() {
399                    return _journalFeed.getTargetLayoutFriendlyUrl();
400            }
401    
402            /**
403            * Sets the target layout friendly url of this journal feed.
404            *
405            * @param targetLayoutFriendlyUrl the target layout friendly url of this journal feed
406            */
407            public void setTargetLayoutFriendlyUrl(
408                    java.lang.String targetLayoutFriendlyUrl) {
409                    _journalFeed.setTargetLayoutFriendlyUrl(targetLayoutFriendlyUrl);
410            }
411    
412            /**
413            * Gets the target portlet id of this journal feed.
414            *
415            * @return the target portlet id of this journal feed
416            */
417            public java.lang.String getTargetPortletId() {
418                    return _journalFeed.getTargetPortletId();
419            }
420    
421            /**
422            * Sets the target portlet id of this journal feed.
423            *
424            * @param targetPortletId the target portlet id of this journal feed
425            */
426            public void setTargetPortletId(java.lang.String targetPortletId) {
427                    _journalFeed.setTargetPortletId(targetPortletId);
428            }
429    
430            /**
431            * Gets the content field of this journal feed.
432            *
433            * @return the content field of this journal feed
434            */
435            public java.lang.String getContentField() {
436                    return _journalFeed.getContentField();
437            }
438    
439            /**
440            * Sets the content field of this journal feed.
441            *
442            * @param contentField the content field of this journal feed
443            */
444            public void setContentField(java.lang.String contentField) {
445                    _journalFeed.setContentField(contentField);
446            }
447    
448            /**
449            * Gets the feed type of this journal feed.
450            *
451            * @return the feed type of this journal feed
452            */
453            public java.lang.String getFeedType() {
454                    return _journalFeed.getFeedType();
455            }
456    
457            /**
458            * Sets the feed type of this journal feed.
459            *
460            * @param feedType the feed type of this journal feed
461            */
462            public void setFeedType(java.lang.String feedType) {
463                    _journalFeed.setFeedType(feedType);
464            }
465    
466            /**
467            * Gets the feed version of this journal feed.
468            *
469            * @return the feed version of this journal feed
470            */
471            public double getFeedVersion() {
472                    return _journalFeed.getFeedVersion();
473            }
474    
475            /**
476            * Sets the feed version of this journal feed.
477            *
478            * @param feedVersion the feed version of this journal feed
479            */
480            public void setFeedVersion(double feedVersion) {
481                    _journalFeed.setFeedVersion(feedVersion);
482            }
483    
484            public boolean isNew() {
485                    return _journalFeed.isNew();
486            }
487    
488            public void setNew(boolean n) {
489                    _journalFeed.setNew(n);
490            }
491    
492            public boolean isCachedModel() {
493                    return _journalFeed.isCachedModel();
494            }
495    
496            public void setCachedModel(boolean cachedModel) {
497                    _journalFeed.setCachedModel(cachedModel);
498            }
499    
500            public boolean isEscapedModel() {
501                    return _journalFeed.isEscapedModel();
502            }
503    
504            public void setEscapedModel(boolean escapedModel) {
505                    _journalFeed.setEscapedModel(escapedModel);
506            }
507    
508            public java.io.Serializable getPrimaryKeyObj() {
509                    return _journalFeed.getPrimaryKeyObj();
510            }
511    
512            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
513                    return _journalFeed.getExpandoBridge();
514            }
515    
516            public void setExpandoBridgeAttributes(
517                    com.liferay.portal.service.ServiceContext serviceContext) {
518                    _journalFeed.setExpandoBridgeAttributes(serviceContext);
519            }
520    
521            public java.lang.Object clone() {
522                    return _journalFeed.clone();
523            }
524    
525            public int compareTo(
526                    com.liferay.portlet.journal.model.JournalFeed journalFeed) {
527                    return _journalFeed.compareTo(journalFeed);
528            }
529    
530            public int hashCode() {
531                    return _journalFeed.hashCode();
532            }
533    
534            public com.liferay.portlet.journal.model.JournalFeed toEscapedModel() {
535                    return _journalFeed.toEscapedModel();
536            }
537    
538            public java.lang.String toString() {
539                    return _journalFeed.toString();
540            }
541    
542            public java.lang.String toXmlString() {
543                    return _journalFeed.toXmlString();
544            }
545    
546            public JournalFeed getWrappedJournalFeed() {
547                    return _journalFeed;
548            }
549    
550            private JournalFeed _journalFeed;
551    }