1
14
15 package com.liferay.portlet.wiki.model;
16
17
18
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 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 int getStatus() {
217 return _wikiPage.getStatus();
218 }
219
220 public void setStatus(int status) {
221 _wikiPage.setStatus(status);
222 }
223
224 public long getStatusByUserId() {
225 return _wikiPage.getStatusByUserId();
226 }
227
228 public void setStatusByUserId(long statusByUserId) {
229 _wikiPage.setStatusByUserId(statusByUserId);
230 }
231
232 public java.lang.String getStatusByUserUuid()
233 throws com.liferay.portal.kernel.exception.SystemException {
234 return _wikiPage.getStatusByUserUuid();
235 }
236
237 public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
238 _wikiPage.setStatusByUserUuid(statusByUserUuid);
239 }
240
241 public java.lang.String getStatusByUserName() {
242 return _wikiPage.getStatusByUserName();
243 }
244
245 public void setStatusByUserName(java.lang.String statusByUserName) {
246 _wikiPage.setStatusByUserName(statusByUserName);
247 }
248
249 public java.util.Date getStatusDate() {
250 return _wikiPage.getStatusDate();
251 }
252
253 public void setStatusDate(java.util.Date statusDate) {
254 _wikiPage.setStatusDate(statusDate);
255 }
256
257 public boolean isApproved() {
258 return _wikiPage.isApproved();
259 }
260
261 public boolean isDraft() {
262 return _wikiPage.isDraft();
263 }
264
265 public boolean isExpired() {
266 return _wikiPage.isExpired();
267 }
268
269 public boolean isPending() {
270 return _wikiPage.isPending();
271 }
272
273 public com.liferay.portlet.wiki.model.WikiPage toEscapedModel() {
274 return _wikiPage.toEscapedModel();
275 }
276
277 public boolean isNew() {
278 return _wikiPage.isNew();
279 }
280
281 public boolean setNew(boolean n) {
282 return _wikiPage.setNew(n);
283 }
284
285 public boolean isCachedModel() {
286 return _wikiPage.isCachedModel();
287 }
288
289 public void setCachedModel(boolean cachedModel) {
290 _wikiPage.setCachedModel(cachedModel);
291 }
292
293 public boolean isEscapedModel() {
294 return _wikiPage.isEscapedModel();
295 }
296
297 public void setEscapedModel(boolean escapedModel) {
298 _wikiPage.setEscapedModel(escapedModel);
299 }
300
301 public java.io.Serializable getPrimaryKeyObj() {
302 return _wikiPage.getPrimaryKeyObj();
303 }
304
305 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
306 return _wikiPage.getExpandoBridge();
307 }
308
309 public void setExpandoBridgeAttributes(
310 com.liferay.portal.service.ServiceContext serviceContext) {
311 _wikiPage.setExpandoBridgeAttributes(serviceContext);
312 }
313
314 public java.lang.Object clone() {
315 return _wikiPage.clone();
316 }
317
318 public int compareTo(com.liferay.portlet.wiki.model.WikiPage wikiPage) {
319 return _wikiPage.compareTo(wikiPage);
320 }
321
322 public int hashCode() {
323 return _wikiPage.hashCode();
324 }
325
326 public java.lang.String toString() {
327 return _wikiPage.toString();
328 }
329
330 public java.lang.String toXmlString() {
331 return _wikiPage.toXmlString();
332 }
333
334 public java.lang.String getAttachmentsDir() {
335 return _wikiPage.getAttachmentsDir();
336 }
337
338 public java.lang.String[] getAttachmentsFiles()
339 throws com.liferay.portal.kernel.exception.PortalException,
340 com.liferay.portal.kernel.exception.SystemException {
341 return _wikiPage.getAttachmentsFiles();
342 }
343
344 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getChildPages() {
345 return _wikiPage.getChildPages();
346 }
347
348 public com.liferay.portlet.wiki.model.WikiNode getNode() {
349 return _wikiPage.getNode();
350 }
351
352 public com.liferay.portlet.wiki.model.WikiPage getParentPage() {
353 return _wikiPage.getParentPage();
354 }
355
356 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getParentPages() {
357 return _wikiPage.getParentPages();
358 }
359
360 public com.liferay.portlet.wiki.model.WikiPage getRedirectPage() {
361 return _wikiPage.getRedirectPage();
362 }
363
364 public void setAttachmentsDir(java.lang.String attachmentsDir) {
365 _wikiPage.setAttachmentsDir(attachmentsDir);
366 }
367
368 public WikiPage getWrappedWikiPage() {
369 return _wikiPage;
370 }
371
372 private WikiPage _wikiPage;
373 }