1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.wiki.model;
16  
17  /**
18   * <a href="WikiPageSoap.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link WikiPage}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       WikiPage
31   * @generated
32   */
33  public class WikiPageWrapper implements WikiPage {
34      public WikiPageWrapper(WikiPage wikiPage) {
35          _wikiPage = wikiPage;
36      }
37  
38      public long getPrimaryKey() {
39          return _wikiPage.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _wikiPage.setPrimaryKey(pk);
44      }
45  
46      public java.lang.String getUuid() {
47          return _wikiPage.getUuid();
48      }
49  
50      public void setUuid(java.lang.String uuid) {
51          _wikiPage.setUuid(uuid);
52      }
53  
54      public long getPageId() {
55          return _wikiPage.getPageId();
56      }
57  
58      public void setPageId(long pageId) {
59          _wikiPage.setPageId(pageId);
60      }
61  
62      public long getResourcePrimKey() {
63          return _wikiPage.getResourcePrimKey();
64      }
65  
66      public void setResourcePrimKey(long resourcePrimKey) {
67          _wikiPage.setResourcePrimKey(resourcePrimKey);
68      }
69  
70      public long getGroupId() {
71          return _wikiPage.getGroupId();
72      }
73  
74      public void setGroupId(long groupId) {
75          _wikiPage.setGroupId(groupId);
76      }
77  
78      public long getCompanyId() {
79          return _wikiPage.getCompanyId();
80      }
81  
82      public void setCompanyId(long companyId) {
83          _wikiPage.setCompanyId(companyId);
84      }
85  
86      public long getUserId() {
87          return _wikiPage.getUserId();
88      }
89  
90      public void setUserId(long userId) {
91          _wikiPage.setUserId(userId);
92      }
93  
94      public java.lang.String getUserUuid()
95          throws com.liferay.portal.SystemException {
96          return _wikiPage.getUserUuid();
97      }
98  
99      public void setUserUuid(java.lang.String userUuid) {
100         _wikiPage.setUserUuid(userUuid);
101     }
102 
103     public java.lang.String getUserName() {
104         return _wikiPage.getUserName();
105     }
106 
107     public void setUserName(java.lang.String userName) {
108         _wikiPage.setUserName(userName);
109     }
110 
111     public java.util.Date getCreateDate() {
112         return _wikiPage.getCreateDate();
113     }
114 
115     public void setCreateDate(java.util.Date createDate) {
116         _wikiPage.setCreateDate(createDate);
117     }
118 
119     public java.util.Date getModifiedDate() {
120         return _wikiPage.getModifiedDate();
121     }
122 
123     public void setModifiedDate(java.util.Date modifiedDate) {
124         _wikiPage.setModifiedDate(modifiedDate);
125     }
126 
127     public long getNodeId() {
128         return _wikiPage.getNodeId();
129     }
130 
131     public void setNodeId(long nodeId) {
132         _wikiPage.setNodeId(nodeId);
133     }
134 
135     public java.lang.String getTitle() {
136         return _wikiPage.getTitle();
137     }
138 
139     public void setTitle(java.lang.String title) {
140         _wikiPage.setTitle(title);
141     }
142 
143     public double getVersion() {
144         return _wikiPage.getVersion();
145     }
146 
147     public void setVersion(double version) {
148         _wikiPage.setVersion(version);
149     }
150 
151     public boolean getMinorEdit() {
152         return _wikiPage.getMinorEdit();
153     }
154 
155     public boolean isMinorEdit() {
156         return _wikiPage.isMinorEdit();
157     }
158 
159     public void setMinorEdit(boolean minorEdit) {
160         _wikiPage.setMinorEdit(minorEdit);
161     }
162 
163     public java.lang.String getContent() {
164         return _wikiPage.getContent();
165     }
166 
167     public void setContent(java.lang.String content) {
168         _wikiPage.setContent(content);
169     }
170 
171     public java.lang.String getSummary() {
172         return _wikiPage.getSummary();
173     }
174 
175     public void setSummary(java.lang.String summary) {
176         _wikiPage.setSummary(summary);
177     }
178 
179     public java.lang.String getFormat() {
180         return _wikiPage.getFormat();
181     }
182 
183     public void setFormat(java.lang.String format) {
184         _wikiPage.setFormat(format);
185     }
186 
187     public boolean getHead() {
188         return _wikiPage.getHead();
189     }
190 
191     public boolean isHead() {
192         return _wikiPage.isHead();
193     }
194 
195     public void setHead(boolean head) {
196         _wikiPage.setHead(head);
197     }
198 
199     public java.lang.String getParentTitle() {
200         return _wikiPage.getParentTitle();
201     }
202 
203     public void setParentTitle(java.lang.String parentTitle) {
204         _wikiPage.setParentTitle(parentTitle);
205     }
206 
207     public java.lang.String getRedirectTitle() {
208         return _wikiPage.getRedirectTitle();
209     }
210 
211     public void setRedirectTitle(java.lang.String redirectTitle) {
212         _wikiPage.setRedirectTitle(redirectTitle);
213     }
214 
215     public boolean isNew() {
216         return _wikiPage.isNew();
217     }
218 
219     public boolean setNew(boolean n) {
220         return _wikiPage.setNew(n);
221     }
222 
223     public boolean isCachedModel() {
224         return _wikiPage.isCachedModel();
225     }
226 
227     public void setCachedModel(boolean cachedModel) {
228         _wikiPage.setCachedModel(cachedModel);
229     }
230 
231     public boolean isEscapedModel() {
232         return _wikiPage.isEscapedModel();
233     }
234 
235     public void setEscapedModel(boolean escapedModel) {
236         _wikiPage.setEscapedModel(escapedModel);
237     }
238 
239     public java.io.Serializable getPrimaryKeyObj() {
240         return _wikiPage.getPrimaryKeyObj();
241     }
242 
243     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
244         return _wikiPage.getExpandoBridge();
245     }
246 
247     public void setExpandoBridgeAttributes(
248         com.liferay.portal.service.ServiceContext serviceContext) {
249         _wikiPage.setExpandoBridgeAttributes(serviceContext);
250     }
251 
252     public java.lang.Object clone() {
253         return _wikiPage.clone();
254     }
255 
256     public int compareTo(com.liferay.portlet.wiki.model.WikiPage wikiPage) {
257         return _wikiPage.compareTo(wikiPage);
258     }
259 
260     public int hashCode() {
261         return _wikiPage.hashCode();
262     }
263 
264     public com.liferay.portlet.wiki.model.WikiPage toEscapedModel() {
265         return _wikiPage.toEscapedModel();
266     }
267 
268     public java.lang.String toString() {
269         return _wikiPage.toString();
270     }
271 
272     public java.lang.String toXmlString() {
273         return _wikiPage.toXmlString();
274     }
275 
276     public java.lang.String getAttachmentsDir() {
277         return _wikiPage.getAttachmentsDir();
278     }
279 
280     public java.lang.String[] getAttachmentsFiles()
281         throws com.liferay.portal.PortalException,
282             com.liferay.portal.SystemException {
283         return _wikiPage.getAttachmentsFiles();
284     }
285 
286     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getChildPages() {
287         return _wikiPage.getChildPages();
288     }
289 
290     public com.liferay.portlet.wiki.model.WikiNode getNode() {
291         return _wikiPage.getNode();
292     }
293 
294     public com.liferay.portlet.wiki.model.WikiPage getParentPage() {
295         return _wikiPage.getParentPage();
296     }
297 
298     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getParentPages() {
299         return _wikiPage.getParentPages();
300     }
301 
302     public com.liferay.portlet.wiki.model.WikiPage getRedirectPage() {
303         return _wikiPage.getRedirectPage();
304     }
305 
306     public void setAttachmentsDir(java.lang.String attachmentsDir) {
307         _wikiPage.setAttachmentsDir(attachmentsDir);
308     }
309 
310     public WikiPage getWrappedWikiPage() {
311         return _wikiPage;
312     }
313 
314     private WikiPage _wikiPage;
315 }