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.wiki.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link WikiPage}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       WikiPage
025     * @generated
026     */
027    public class WikiPageWrapper implements WikiPage {
028            public WikiPageWrapper(WikiPage wikiPage) {
029                    _wikiPage = wikiPage;
030            }
031    
032            public long getPrimaryKey() {
033                    return _wikiPage.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _wikiPage.setPrimaryKey(pk);
038            }
039    
040            public java.lang.String getUuid() {
041                    return _wikiPage.getUuid();
042            }
043    
044            public void setUuid(java.lang.String uuid) {
045                    _wikiPage.setUuid(uuid);
046            }
047    
048            public long getPageId() {
049                    return _wikiPage.getPageId();
050            }
051    
052            public void setPageId(long pageId) {
053                    _wikiPage.setPageId(pageId);
054            }
055    
056            public long getResourcePrimKey() {
057                    return _wikiPage.getResourcePrimKey();
058            }
059    
060            public void setResourcePrimKey(long resourcePrimKey) {
061                    _wikiPage.setResourcePrimKey(resourcePrimKey);
062            }
063    
064            public long getGroupId() {
065                    return _wikiPage.getGroupId();
066            }
067    
068            public void setGroupId(long groupId) {
069                    _wikiPage.setGroupId(groupId);
070            }
071    
072            public long getCompanyId() {
073                    return _wikiPage.getCompanyId();
074            }
075    
076            public void setCompanyId(long companyId) {
077                    _wikiPage.setCompanyId(companyId);
078            }
079    
080            public long getUserId() {
081                    return _wikiPage.getUserId();
082            }
083    
084            public void setUserId(long userId) {
085                    _wikiPage.setUserId(userId);
086            }
087    
088            public java.lang.String getUserUuid()
089                    throws com.liferay.portal.kernel.exception.SystemException {
090                    return _wikiPage.getUserUuid();
091            }
092    
093            public void setUserUuid(java.lang.String userUuid) {
094                    _wikiPage.setUserUuid(userUuid);
095            }
096    
097            public java.lang.String getUserName() {
098                    return _wikiPage.getUserName();
099            }
100    
101            public void setUserName(java.lang.String userName) {
102                    _wikiPage.setUserName(userName);
103            }
104    
105            public java.util.Date getCreateDate() {
106                    return _wikiPage.getCreateDate();
107            }
108    
109            public void setCreateDate(java.util.Date createDate) {
110                    _wikiPage.setCreateDate(createDate);
111            }
112    
113            public java.util.Date getModifiedDate() {
114                    return _wikiPage.getModifiedDate();
115            }
116    
117            public void setModifiedDate(java.util.Date modifiedDate) {
118                    _wikiPage.setModifiedDate(modifiedDate);
119            }
120    
121            public long getNodeId() {
122                    return _wikiPage.getNodeId();
123            }
124    
125            public void setNodeId(long nodeId) {
126                    _wikiPage.setNodeId(nodeId);
127            }
128    
129            public java.lang.String getTitle() {
130                    return _wikiPage.getTitle();
131            }
132    
133            public void setTitle(java.lang.String title) {
134                    _wikiPage.setTitle(title);
135            }
136    
137            public double getVersion() {
138                    return _wikiPage.getVersion();
139            }
140    
141            public void setVersion(double version) {
142                    _wikiPage.setVersion(version);
143            }
144    
145            public boolean getMinorEdit() {
146                    return _wikiPage.getMinorEdit();
147            }
148    
149            public boolean isMinorEdit() {
150                    return _wikiPage.isMinorEdit();
151            }
152    
153            public void setMinorEdit(boolean minorEdit) {
154                    _wikiPage.setMinorEdit(minorEdit);
155            }
156    
157            public java.lang.String getContent() {
158                    return _wikiPage.getContent();
159            }
160    
161            public void setContent(java.lang.String content) {
162                    _wikiPage.setContent(content);
163            }
164    
165            public java.lang.String getSummary() {
166                    return _wikiPage.getSummary();
167            }
168    
169            public void setSummary(java.lang.String summary) {
170                    _wikiPage.setSummary(summary);
171            }
172    
173            public java.lang.String getFormat() {
174                    return _wikiPage.getFormat();
175            }
176    
177            public void setFormat(java.lang.String format) {
178                    _wikiPage.setFormat(format);
179            }
180    
181            public boolean getHead() {
182                    return _wikiPage.getHead();
183            }
184    
185            public boolean isHead() {
186                    return _wikiPage.isHead();
187            }
188    
189            public void setHead(boolean head) {
190                    _wikiPage.setHead(head);
191            }
192    
193            public java.lang.String getParentTitle() {
194                    return _wikiPage.getParentTitle();
195            }
196    
197            public void setParentTitle(java.lang.String parentTitle) {
198                    _wikiPage.setParentTitle(parentTitle);
199            }
200    
201            public java.lang.String getRedirectTitle() {
202                    return _wikiPage.getRedirectTitle();
203            }
204    
205            public void setRedirectTitle(java.lang.String redirectTitle) {
206                    _wikiPage.setRedirectTitle(redirectTitle);
207            }
208    
209            public int getStatus() {
210                    return _wikiPage.getStatus();
211            }
212    
213            public void setStatus(int status) {
214                    _wikiPage.setStatus(status);
215            }
216    
217            public long getStatusByUserId() {
218                    return _wikiPage.getStatusByUserId();
219            }
220    
221            public void setStatusByUserId(long statusByUserId) {
222                    _wikiPage.setStatusByUserId(statusByUserId);
223            }
224    
225            public java.lang.String getStatusByUserUuid()
226                    throws com.liferay.portal.kernel.exception.SystemException {
227                    return _wikiPage.getStatusByUserUuid();
228            }
229    
230            public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
231                    _wikiPage.setStatusByUserUuid(statusByUserUuid);
232            }
233    
234            public java.lang.String getStatusByUserName() {
235                    return _wikiPage.getStatusByUserName();
236            }
237    
238            public void setStatusByUserName(java.lang.String statusByUserName) {
239                    _wikiPage.setStatusByUserName(statusByUserName);
240            }
241    
242            public java.util.Date getStatusDate() {
243                    return _wikiPage.getStatusDate();
244            }
245    
246            public void setStatusDate(java.util.Date statusDate) {
247                    _wikiPage.setStatusDate(statusDate);
248            }
249    
250            public boolean isApproved() {
251                    return _wikiPage.isApproved();
252            }
253    
254            public boolean isDraft() {
255                    return _wikiPage.isDraft();
256            }
257    
258            public boolean isExpired() {
259                    return _wikiPage.isExpired();
260            }
261    
262            public boolean isPending() {
263                    return _wikiPage.isPending();
264            }
265    
266            public com.liferay.portlet.wiki.model.WikiPage toEscapedModel() {
267                    return _wikiPage.toEscapedModel();
268            }
269    
270            public boolean isNew() {
271                    return _wikiPage.isNew();
272            }
273    
274            public void setNew(boolean n) {
275                    _wikiPage.setNew(n);
276            }
277    
278            public boolean isCachedModel() {
279                    return _wikiPage.isCachedModel();
280            }
281    
282            public void setCachedModel(boolean cachedModel) {
283                    _wikiPage.setCachedModel(cachedModel);
284            }
285    
286            public boolean isEscapedModel() {
287                    return _wikiPage.isEscapedModel();
288            }
289    
290            public void setEscapedModel(boolean escapedModel) {
291                    _wikiPage.setEscapedModel(escapedModel);
292            }
293    
294            public java.io.Serializable getPrimaryKeyObj() {
295                    return _wikiPage.getPrimaryKeyObj();
296            }
297    
298            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
299                    return _wikiPage.getExpandoBridge();
300            }
301    
302            public void setExpandoBridgeAttributes(
303                    com.liferay.portal.service.ServiceContext serviceContext) {
304                    _wikiPage.setExpandoBridgeAttributes(serviceContext);
305            }
306    
307            public java.lang.Object clone() {
308                    return _wikiPage.clone();
309            }
310    
311            public int compareTo(com.liferay.portlet.wiki.model.WikiPage wikiPage) {
312                    return _wikiPage.compareTo(wikiPage);
313            }
314    
315            public int hashCode() {
316                    return _wikiPage.hashCode();
317            }
318    
319            public java.lang.String toString() {
320                    return _wikiPage.toString();
321            }
322    
323            public java.lang.String toXmlString() {
324                    return _wikiPage.toXmlString();
325            }
326    
327            public java.lang.String getAttachmentsDir() {
328                    return _wikiPage.getAttachmentsDir();
329            }
330    
331            public java.lang.String[] getAttachmentsFiles()
332                    throws com.liferay.portal.kernel.exception.PortalException,
333                            com.liferay.portal.kernel.exception.SystemException {
334                    return _wikiPage.getAttachmentsFiles();
335            }
336    
337            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getChildPages() {
338                    return _wikiPage.getChildPages();
339            }
340    
341            public com.liferay.portlet.wiki.model.WikiNode getNode() {
342                    return _wikiPage.getNode();
343            }
344    
345            public com.liferay.portlet.wiki.model.WikiPage getParentPage() {
346                    return _wikiPage.getParentPage();
347            }
348    
349            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getParentPages() {
350                    return _wikiPage.getParentPages();
351            }
352    
353            public com.liferay.portlet.wiki.model.WikiPage getRedirectPage() {
354                    return _wikiPage.getRedirectPage();
355            }
356    
357            public void setAttachmentsDir(java.lang.String attachmentsDir) {
358                    _wikiPage.setAttachmentsDir(attachmentsDir);
359            }
360    
361            public WikiPage getWrappedWikiPage() {
362                    return _wikiPage;
363            }
364    
365            private WikiPage _wikiPage;
366    }