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.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 java.lang.String getSummary() {
173         return _wikiPage.getSummary();
174     }
175 
176     public void setSummary(java.lang.String summary) {
177         _wikiPage.setSummary(summary);
178     }
179 
180     public java.lang.String getFormat() {
181         return _wikiPage.getFormat();
182     }
183 
184     public void setFormat(java.lang.String format) {
185         _wikiPage.setFormat(format);
186     }
187 
188     public boolean getHead() {
189         return _wikiPage.getHead();
190     }
191 
192     public boolean isHead() {
193         return _wikiPage.isHead();
194     }
195 
196     public void setHead(boolean head) {
197         _wikiPage.setHead(head);
198     }
199 
200     public java.lang.String getParentTitle() {
201         return _wikiPage.getParentTitle();
202     }
203 
204     public void setParentTitle(java.lang.String parentTitle) {
205         _wikiPage.setParentTitle(parentTitle);
206     }
207 
208     public java.lang.String getRedirectTitle() {
209         return _wikiPage.getRedirectTitle();
210     }
211 
212     public void setRedirectTitle(java.lang.String redirectTitle) {
213         _wikiPage.setRedirectTitle(redirectTitle);
214     }
215 
216     public com.liferay.portlet.wiki.model.WikiPage toEscapedModel() {
217         return _wikiPage.toEscapedModel();
218     }
219 
220     public boolean isNew() {
221         return _wikiPage.isNew();
222     }
223 
224     public boolean setNew(boolean n) {
225         return _wikiPage.setNew(n);
226     }
227 
228     public boolean isCachedModel() {
229         return _wikiPage.isCachedModel();
230     }
231 
232     public void setCachedModel(boolean cachedModel) {
233         _wikiPage.setCachedModel(cachedModel);
234     }
235 
236     public boolean isEscapedModel() {
237         return _wikiPage.isEscapedModel();
238     }
239 
240     public void setEscapedModel(boolean escapedModel) {
241         _wikiPage.setEscapedModel(escapedModel);
242     }
243 
244     public java.io.Serializable getPrimaryKeyObj() {
245         return _wikiPage.getPrimaryKeyObj();
246     }
247 
248     public java.lang.Object clone() {
249         return _wikiPage.clone();
250     }
251 
252     public int compareTo(com.liferay.portlet.wiki.model.WikiPage wikiPage) {
253         return _wikiPage.compareTo(wikiPage);
254     }
255 
256     public int hashCode() {
257         return _wikiPage.hashCode();
258     }
259 
260     public java.lang.String toString() {
261         return _wikiPage.toString();
262     }
263 
264     public java.lang.String toXmlString() {
265         return _wikiPage.toXmlString();
266     }
267 
268     public com.liferay.portlet.wiki.model.WikiNode getNode() {
269         return _wikiPage.getNode();
270     }
271 
272     public com.liferay.portlet.wiki.model.WikiPage getParentPage() {
273         return _wikiPage.getParentPage();
274     }
275 
276     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getParentPages() {
277         return _wikiPage.getParentPages();
278     }
279 
280     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getChildPages() {
281         return _wikiPage.getChildPages();
282     }
283 
284     public com.liferay.portlet.wiki.model.WikiPage getRedirectPage() {
285         return _wikiPage.getRedirectPage();
286     }
287 
288     public java.lang.String getAttachmentsDir() {
289         return _wikiPage.getAttachmentsDir();
290     }
291 
292     public void setAttachmentsDir(java.lang.String attachmentsDir) {
293         _wikiPage.setAttachmentsDir(attachmentsDir);
294     }
295 
296     public java.lang.String[] getAttachmentsFiles()
297         throws com.liferay.portal.PortalException,
298             com.liferay.portal.SystemException {
299         return _wikiPage.getAttachmentsFiles();
300     }
301 
302     public WikiPage getWrappedWikiPage() {
303         return _wikiPage;
304     }
305 
306     private WikiPage _wikiPage;
307 }