1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.wiki.model;
16  
17  
18  /**
19   * <a href="WikiPageSoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link WikiPage}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       WikiPage
32   * @generated
33   */
34  public class WikiPageWrapper implements WikiPage {
35      public WikiPageWrapper(WikiPage wikiPage) {
36          _wikiPage = wikiPage;
37      }
38  
39      public long getPrimaryKey() {
40          return _wikiPage.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _wikiPage.setPrimaryKey(pk);
45      }
46  
47      public java.lang.String getUuid() {
48          return _wikiPage.getUuid();
49      }
50  
51      public void setUuid(java.lang.String uuid) {
52          _wikiPage.setUuid(uuid);
53      }
54  
55      public long getPageId() {
56          return _wikiPage.getPageId();
57      }
58  
59      public void setPageId(long pageId) {
60          _wikiPage.setPageId(pageId);
61      }
62  
63      public long getResourcePrimKey() {
64          return _wikiPage.getResourcePrimKey();
65      }
66  
67      public void setResourcePrimKey(long resourcePrimKey) {
68          _wikiPage.setResourcePrimKey(resourcePrimKey);
69      }
70  
71      public long getGroupId() {
72          return _wikiPage.getGroupId();
73      }
74  
75      public void setGroupId(long groupId) {
76          _wikiPage.setGroupId(groupId);
77      }
78  
79      public long getCompanyId() {
80          return _wikiPage.getCompanyId();
81      }
82  
83      public void setCompanyId(long companyId) {
84          _wikiPage.setCompanyId(companyId);
85      }
86  
87      public long getUserId() {
88          return _wikiPage.getUserId();
89      }
90  
91      public void setUserId(long userId) {
92          _wikiPage.setUserId(userId);
93      }
94  
95      public java.lang.String getUserUuid()
96          throws com.liferay.portal.kernel.exception.SystemException {
97          return _wikiPage.getUserUuid();
98      }
99  
100     public void setUserUuid(java.lang.String userUuid) {
101         _wikiPage.setUserUuid(userUuid);
102     }
103 
104     public java.lang.String getUserName() {
105         return _wikiPage.getUserName();
106     }
107 
108     public void setUserName(java.lang.String userName) {
109         _wikiPage.setUserName(userName);
110     }
111 
112     public java.util.Date getCreateDate() {
113         return _wikiPage.getCreateDate();
114     }
115 
116     public void setCreateDate(java.util.Date createDate) {
117         _wikiPage.setCreateDate(createDate);
118     }
119 
120     public java.util.Date getModifiedDate() {
121         return _wikiPage.getModifiedDate();
122     }
123 
124     public void setModifiedDate(java.util.Date modifiedDate) {
125         _wikiPage.setModifiedDate(modifiedDate);
126     }
127 
128     public long getNodeId() {
129         return _wikiPage.getNodeId();
130     }
131 
132     public void setNodeId(long nodeId) {
133         _wikiPage.setNodeId(nodeId);
134     }
135 
136     public java.lang.String getTitle() {
137         return _wikiPage.getTitle();
138     }
139 
140     public void setTitle(java.lang.String title) {
141         _wikiPage.setTitle(title);
142     }
143 
144     public double getVersion() {
145         return _wikiPage.getVersion();
146     }
147 
148     public void setVersion(double version) {
149         _wikiPage.setVersion(version);
150     }
151 
152     public boolean getMinorEdit() {
153         return _wikiPage.getMinorEdit();
154     }
155 
156     public boolean isMinorEdit() {
157         return _wikiPage.isMinorEdit();
158     }
159 
160     public void setMinorEdit(boolean minorEdit) {
161         _wikiPage.setMinorEdit(minorEdit);
162     }
163 
164     public java.lang.String getContent() {
165         return _wikiPage.getContent();
166     }
167 
168     public void setContent(java.lang.String content) {
169         _wikiPage.setContent(content);
170     }
171 
172     public int getStatus() {
173         return _wikiPage.getStatus();
174     }
175 
176     public void setStatus(int status) {
177         _wikiPage.setStatus(status);
178     }
179 
180     public long getStatusByUserId() {
181         return _wikiPage.getStatusByUserId();
182     }
183 
184     public void setStatusByUserId(long statusByUserId) {
185         _wikiPage.setStatusByUserId(statusByUserId);
186     }
187 
188     public java.lang.String getStatusByUserUuid()
189         throws com.liferay.portal.kernel.exception.SystemException {
190         return _wikiPage.getStatusByUserUuid();
191     }
192 
193     public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
194         _wikiPage.setStatusByUserUuid(statusByUserUuid);
195     }
196 
197     public java.lang.String getStatusByUserName() {
198         return _wikiPage.getStatusByUserName();
199     }
200 
201     public void setStatusByUserName(java.lang.String statusByUserName) {
202         _wikiPage.setStatusByUserName(statusByUserName);
203     }
204 
205     public java.util.Date getStatusDate() {
206         return _wikiPage.getStatusDate();
207     }
208 
209     public void setStatusDate(java.util.Date statusDate) {
210         _wikiPage.setStatusDate(statusDate);
211     }
212 
213     public java.lang.String getSummary() {
214         return _wikiPage.getSummary();
215     }
216 
217     public void setSummary(java.lang.String summary) {
218         _wikiPage.setSummary(summary);
219     }
220 
221     public java.lang.String getFormat() {
222         return _wikiPage.getFormat();
223     }
224 
225     public void setFormat(java.lang.String format) {
226         _wikiPage.setFormat(format);
227     }
228 
229     public boolean getHead() {
230         return _wikiPage.getHead();
231     }
232 
233     public boolean isHead() {
234         return _wikiPage.isHead();
235     }
236 
237     public void setHead(boolean head) {
238         _wikiPage.setHead(head);
239     }
240 
241     public java.lang.String getParentTitle() {
242         return _wikiPage.getParentTitle();
243     }
244 
245     public void setParentTitle(java.lang.String parentTitle) {
246         _wikiPage.setParentTitle(parentTitle);
247     }
248 
249     public java.lang.String getRedirectTitle() {
250         return _wikiPage.getRedirectTitle();
251     }
252 
253     public void setRedirectTitle(java.lang.String redirectTitle) {
254         _wikiPage.setRedirectTitle(redirectTitle);
255     }
256 
257     public com.liferay.portlet.wiki.model.WikiPage toEscapedModel() {
258         return _wikiPage.toEscapedModel();
259     }
260 
261     public boolean isNew() {
262         return _wikiPage.isNew();
263     }
264 
265     public boolean setNew(boolean n) {
266         return _wikiPage.setNew(n);
267     }
268 
269     public boolean isCachedModel() {
270         return _wikiPage.isCachedModel();
271     }
272 
273     public void setCachedModel(boolean cachedModel) {
274         _wikiPage.setCachedModel(cachedModel);
275     }
276 
277     public boolean isEscapedModel() {
278         return _wikiPage.isEscapedModel();
279     }
280 
281     public void setEscapedModel(boolean escapedModel) {
282         _wikiPage.setEscapedModel(escapedModel);
283     }
284 
285     public java.io.Serializable getPrimaryKeyObj() {
286         return _wikiPage.getPrimaryKeyObj();
287     }
288 
289     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
290         return _wikiPage.getExpandoBridge();
291     }
292 
293     public void setExpandoBridgeAttributes(
294         com.liferay.portal.service.ServiceContext serviceContext) {
295         _wikiPage.setExpandoBridgeAttributes(serviceContext);
296     }
297 
298     public java.lang.Object clone() {
299         return _wikiPage.clone();
300     }
301 
302     public int compareTo(com.liferay.portlet.wiki.model.WikiPage wikiPage) {
303         return _wikiPage.compareTo(wikiPage);
304     }
305 
306     public int hashCode() {
307         return _wikiPage.hashCode();
308     }
309 
310     public java.lang.String toString() {
311         return _wikiPage.toString();
312     }
313 
314     public java.lang.String toXmlString() {
315         return _wikiPage.toXmlString();
316     }
317 
318     public java.lang.String getAttachmentsDir() {
319         return _wikiPage.getAttachmentsDir();
320     }
321 
322     public java.lang.String[] getAttachmentsFiles()
323         throws com.liferay.portal.kernel.exception.PortalException,
324             com.liferay.portal.kernel.exception.SystemException {
325         return _wikiPage.getAttachmentsFiles();
326     }
327 
328     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getChildPages() {
329         return _wikiPage.getChildPages();
330     }
331 
332     public com.liferay.portlet.wiki.model.WikiNode getNode() {
333         return _wikiPage.getNode();
334     }
335 
336     public com.liferay.portlet.wiki.model.WikiPage getParentPage() {
337         return _wikiPage.getParentPage();
338     }
339 
340     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getParentPages() {
341         return _wikiPage.getParentPages();
342     }
343 
344     public com.liferay.portlet.wiki.model.WikiPage getRedirectPage() {
345         return _wikiPage.getRedirectPage();
346     }
347 
348     public boolean isApproved() {
349         return _wikiPage.isApproved();
350     }
351 
352     public void setAttachmentsDir(java.lang.String attachmentsDir) {
353         _wikiPage.setAttachmentsDir(attachmentsDir);
354     }
355 
356     public WikiPage getWrappedWikiPage() {
357         return _wikiPage;
358     }
359 
360     private WikiPage _wikiPage;
361 }