1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.wiki.model;
24  
25  
26  /**
27   * <a href="WikiPageSoap.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link WikiPage}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       WikiPage
40   * @generated
41   */
42  public class WikiPageWrapper implements WikiPage {
43      public WikiPageWrapper(WikiPage wikiPage) {
44          _wikiPage = wikiPage;
45      }
46  
47      public long getPrimaryKey() {
48          return _wikiPage.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _wikiPage.setPrimaryKey(pk);
53      }
54  
55      public java.lang.String getUuid() {
56          return _wikiPage.getUuid();
57      }
58  
59      public void setUuid(java.lang.String uuid) {
60          _wikiPage.setUuid(uuid);
61      }
62  
63      public long getPageId() {
64          return _wikiPage.getPageId();
65      }
66  
67      public void setPageId(long pageId) {
68          _wikiPage.setPageId(pageId);
69      }
70  
71      public long getResourcePrimKey() {
72          return _wikiPage.getResourcePrimKey();
73      }
74  
75      public void setResourcePrimKey(long resourcePrimKey) {
76          _wikiPage.setResourcePrimKey(resourcePrimKey);
77      }
78  
79      public long getGroupId() {
80          return _wikiPage.getGroupId();
81      }
82  
83      public void setGroupId(long groupId) {
84          _wikiPage.setGroupId(groupId);
85      }
86  
87      public long getCompanyId() {
88          return _wikiPage.getCompanyId();
89      }
90  
91      public void setCompanyId(long companyId) {
92          _wikiPage.setCompanyId(companyId);
93      }
94  
95      public long getUserId() {
96          return _wikiPage.getUserId();
97      }
98  
99      public void setUserId(long userId) {
100         _wikiPage.setUserId(userId);
101     }
102 
103     public java.lang.String getUserUuid()
104         throws com.liferay.portal.SystemException {
105         return _wikiPage.getUserUuid();
106     }
107 
108     public void setUserUuid(java.lang.String userUuid) {
109         _wikiPage.setUserUuid(userUuid);
110     }
111 
112     public java.lang.String getUserName() {
113         return _wikiPage.getUserName();
114     }
115 
116     public void setUserName(java.lang.String userName) {
117         _wikiPage.setUserName(userName);
118     }
119 
120     public java.util.Date getCreateDate() {
121         return _wikiPage.getCreateDate();
122     }
123 
124     public void setCreateDate(java.util.Date createDate) {
125         _wikiPage.setCreateDate(createDate);
126     }
127 
128     public java.util.Date getModifiedDate() {
129         return _wikiPage.getModifiedDate();
130     }
131 
132     public void setModifiedDate(java.util.Date modifiedDate) {
133         _wikiPage.setModifiedDate(modifiedDate);
134     }
135 
136     public long getNodeId() {
137         return _wikiPage.getNodeId();
138     }
139 
140     public void setNodeId(long nodeId) {
141         _wikiPage.setNodeId(nodeId);
142     }
143 
144     public java.lang.String getTitle() {
145         return _wikiPage.getTitle();
146     }
147 
148     public void setTitle(java.lang.String title) {
149         _wikiPage.setTitle(title);
150     }
151 
152     public double getVersion() {
153         return _wikiPage.getVersion();
154     }
155 
156     public void setVersion(double version) {
157         _wikiPage.setVersion(version);
158     }
159 
160     public boolean getMinorEdit() {
161         return _wikiPage.getMinorEdit();
162     }
163 
164     public boolean isMinorEdit() {
165         return _wikiPage.isMinorEdit();
166     }
167 
168     public void setMinorEdit(boolean minorEdit) {
169         _wikiPage.setMinorEdit(minorEdit);
170     }
171 
172     public java.lang.String getContent() {
173         return _wikiPage.getContent();
174     }
175 
176     public void setContent(java.lang.String content) {
177         _wikiPage.setContent(content);
178     }
179 
180     public java.lang.String getSummary() {
181         return _wikiPage.getSummary();
182     }
183 
184     public void setSummary(java.lang.String summary) {
185         _wikiPage.setSummary(summary);
186     }
187 
188     public java.lang.String getFormat() {
189         return _wikiPage.getFormat();
190     }
191 
192     public void setFormat(java.lang.String format) {
193         _wikiPage.setFormat(format);
194     }
195 
196     public boolean getHead() {
197         return _wikiPage.getHead();
198     }
199 
200     public boolean isHead() {
201         return _wikiPage.isHead();
202     }
203 
204     public void setHead(boolean head) {
205         _wikiPage.setHead(head);
206     }
207 
208     public java.lang.String getParentTitle() {
209         return _wikiPage.getParentTitle();
210     }
211 
212     public void setParentTitle(java.lang.String parentTitle) {
213         _wikiPage.setParentTitle(parentTitle);
214     }
215 
216     public java.lang.String getRedirectTitle() {
217         return _wikiPage.getRedirectTitle();
218     }
219 
220     public void setRedirectTitle(java.lang.String redirectTitle) {
221         _wikiPage.setRedirectTitle(redirectTitle);
222     }
223 
224     public com.liferay.portlet.wiki.model.WikiPage toEscapedModel() {
225         return _wikiPage.toEscapedModel();
226     }
227 
228     public boolean isNew() {
229         return _wikiPage.isNew();
230     }
231 
232     public boolean setNew(boolean n) {
233         return _wikiPage.setNew(n);
234     }
235 
236     public boolean isCachedModel() {
237         return _wikiPage.isCachedModel();
238     }
239 
240     public void setCachedModel(boolean cachedModel) {
241         _wikiPage.setCachedModel(cachedModel);
242     }
243 
244     public boolean isEscapedModel() {
245         return _wikiPage.isEscapedModel();
246     }
247 
248     public void setEscapedModel(boolean escapedModel) {
249         _wikiPage.setEscapedModel(escapedModel);
250     }
251 
252     public java.io.Serializable getPrimaryKeyObj() {
253         return _wikiPage.getPrimaryKeyObj();
254     }
255 
256     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
257         return _wikiPage.getExpandoBridge();
258     }
259 
260     public void setExpandoBridgeAttributes(
261         com.liferay.portal.service.ServiceContext serviceContext) {
262         _wikiPage.setExpandoBridgeAttributes(serviceContext);
263     }
264 
265     public java.lang.Object clone() {
266         return _wikiPage.clone();
267     }
268 
269     public int compareTo(com.liferay.portlet.wiki.model.WikiPage wikiPage) {
270         return _wikiPage.compareTo(wikiPage);
271     }
272 
273     public int hashCode() {
274         return _wikiPage.hashCode();
275     }
276 
277     public java.lang.String toString() {
278         return _wikiPage.toString();
279     }
280 
281     public java.lang.String toXmlString() {
282         return _wikiPage.toXmlString();
283     }
284 
285     public java.lang.String getAttachmentsDir() {
286         return _wikiPage.getAttachmentsDir();
287     }
288 
289     public java.lang.String[] getAttachmentsFiles()
290         throws com.liferay.portal.PortalException,
291             com.liferay.portal.SystemException {
292         return _wikiPage.getAttachmentsFiles();
293     }
294 
295     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getChildPages() {
296         return _wikiPage.getChildPages();
297     }
298 
299     public com.liferay.portlet.wiki.model.WikiNode getNode() {
300         return _wikiPage.getNode();
301     }
302 
303     public com.liferay.portlet.wiki.model.WikiPage getParentPage() {
304         return _wikiPage.getParentPage();
305     }
306 
307     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getParentPages() {
308         return _wikiPage.getParentPages();
309     }
310 
311     public com.liferay.portlet.wiki.model.WikiPage getRedirectPage() {
312         return _wikiPage.getRedirectPage();
313     }
314 
315     public void setAttachmentsDir(java.lang.String attachmentsDir) {
316         _wikiPage.setAttachmentsDir(attachmentsDir);
317     }
318 
319     public WikiPage getWrappedWikiPage() {
320         return _wikiPage;
321     }
322 
323     private WikiPage _wikiPage;
324 }