001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.wiki.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link WikiPageLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       WikiPageLocalService
024     * @generated
025     */
026    public class WikiPageLocalServiceWrapper implements WikiPageLocalService {
027            public WikiPageLocalServiceWrapper(
028                    WikiPageLocalService wikiPageLocalService) {
029                    _wikiPageLocalService = wikiPageLocalService;
030            }
031    
032            /**
033            * Adds the wiki page to the database. Also notifies the appropriate model listeners.
034            *
035            * @param wikiPage the wiki page
036            * @return the wiki page that was added
037            * @throws SystemException if a system exception occurred
038            */
039            public com.liferay.portlet.wiki.model.WikiPage addWikiPage(
040                    com.liferay.portlet.wiki.model.WikiPage wikiPage)
041                    throws com.liferay.portal.kernel.exception.SystemException {
042                    return _wikiPageLocalService.addWikiPage(wikiPage);
043            }
044    
045            /**
046            * Creates a new wiki page with the primary key. Does not add the wiki page to the database.
047            *
048            * @param pageId the primary key for the new wiki page
049            * @return the new wiki page
050            */
051            public com.liferay.portlet.wiki.model.WikiPage createWikiPage(long pageId) {
052                    return _wikiPageLocalService.createWikiPage(pageId);
053            }
054    
055            /**
056            * Deletes the wiki page with the primary key from the database. Also notifies the appropriate model listeners.
057            *
058            * @param pageId the primary key of the wiki page
059            * @throws PortalException if a wiki page with the primary key could not be found
060            * @throws SystemException if a system exception occurred
061            */
062            public void deleteWikiPage(long pageId)
063                    throws com.liferay.portal.kernel.exception.PortalException,
064                            com.liferay.portal.kernel.exception.SystemException {
065                    _wikiPageLocalService.deleteWikiPage(pageId);
066            }
067    
068            /**
069            * Deletes the wiki page from the database. Also notifies the appropriate model listeners.
070            *
071            * @param wikiPage the wiki page
072            * @throws SystemException if a system exception occurred
073            */
074            public void deleteWikiPage(com.liferay.portlet.wiki.model.WikiPage wikiPage)
075                    throws com.liferay.portal.kernel.exception.SystemException {
076                    _wikiPageLocalService.deleteWikiPage(wikiPage);
077            }
078    
079            /**
080            * Performs a dynamic query on the database and returns the matching rows.
081            *
082            * @param dynamicQuery the dynamic query
083            * @return the matching rows
084            * @throws SystemException if a system exception occurred
085            */
086            @SuppressWarnings("rawtypes")
087            public java.util.List dynamicQuery(
088                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
089                    throws com.liferay.portal.kernel.exception.SystemException {
090                    return _wikiPageLocalService.dynamicQuery(dynamicQuery);
091            }
092    
093            /**
094            * Performs a dynamic query on the database and returns a range of the matching rows.
095            *
096            * <p>
097            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
098            * </p>
099            *
100            * @param dynamicQuery the dynamic query
101            * @param start the lower bound of the range of model instances
102            * @param end the upper bound of the range of model instances (not inclusive)
103            * @return the range of matching rows
104            * @throws SystemException if a system exception occurred
105            */
106            @SuppressWarnings("rawtypes")
107            public java.util.List dynamicQuery(
108                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
109                    int end) throws com.liferay.portal.kernel.exception.SystemException {
110                    return _wikiPageLocalService.dynamicQuery(dynamicQuery, start, end);
111            }
112    
113            /**
114            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
115            *
116            * <p>
117            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
118            * </p>
119            *
120            * @param dynamicQuery the dynamic query
121            * @param start the lower bound of the range of model instances
122            * @param end the upper bound of the range of model instances (not inclusive)
123            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
124            * @return the ordered range of matching rows
125            * @throws SystemException if a system exception occurred
126            */
127            @SuppressWarnings("rawtypes")
128            public java.util.List dynamicQuery(
129                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
130                    int end,
131                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
132                    throws com.liferay.portal.kernel.exception.SystemException {
133                    return _wikiPageLocalService.dynamicQuery(dynamicQuery, start, end,
134                            orderByComparator);
135            }
136    
137            /**
138            * Returns the number of rows that match the dynamic query.
139            *
140            * @param dynamicQuery the dynamic query
141            * @return the number of rows that match the dynamic query
142            * @throws SystemException if a system exception occurred
143            */
144            public long dynamicQueryCount(
145                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
146                    throws com.liferay.portal.kernel.exception.SystemException {
147                    return _wikiPageLocalService.dynamicQueryCount(dynamicQuery);
148            }
149    
150            /**
151            * Returns the wiki page with the primary key.
152            *
153            * @param pageId the primary key of the wiki page
154            * @return the wiki page
155            * @throws PortalException if a wiki page with the primary key could not be found
156            * @throws SystemException if a system exception occurred
157            */
158            public com.liferay.portlet.wiki.model.WikiPage getWikiPage(long pageId)
159                    throws com.liferay.portal.kernel.exception.PortalException,
160                            com.liferay.portal.kernel.exception.SystemException {
161                    return _wikiPageLocalService.getWikiPage(pageId);
162            }
163    
164            public com.liferay.portal.model.PersistedModel getPersistedModel(
165                    java.io.Serializable primaryKeyObj)
166                    throws com.liferay.portal.kernel.exception.PortalException,
167                            com.liferay.portal.kernel.exception.SystemException {
168                    return _wikiPageLocalService.getPersistedModel(primaryKeyObj);
169            }
170    
171            /**
172            * Returns the wiki page with the UUID in the group.
173            *
174            * @param uuid the UUID of wiki page
175            * @param groupId the group id of the wiki page
176            * @return the wiki page
177            * @throws PortalException if a wiki page with the UUID in the group could not be found
178            * @throws SystemException if a system exception occurred
179            */
180            public com.liferay.portlet.wiki.model.WikiPage getWikiPageByUuidAndGroupId(
181                    java.lang.String uuid, long groupId)
182                    throws com.liferay.portal.kernel.exception.PortalException,
183                            com.liferay.portal.kernel.exception.SystemException {
184                    return _wikiPageLocalService.getWikiPageByUuidAndGroupId(uuid, groupId);
185            }
186    
187            /**
188            * Returns a range of all the wiki pages.
189            *
190            * <p>
191            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
192            * </p>
193            *
194            * @param start the lower bound of the range of wiki pages
195            * @param end the upper bound of the range of wiki pages (not inclusive)
196            * @return the range of wiki pages
197            * @throws SystemException if a system exception occurred
198            */
199            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getWikiPages(
200                    int start, int end)
201                    throws com.liferay.portal.kernel.exception.SystemException {
202                    return _wikiPageLocalService.getWikiPages(start, end);
203            }
204    
205            /**
206            * Returns the number of wiki pages.
207            *
208            * @return the number of wiki pages
209            * @throws SystemException if a system exception occurred
210            */
211            public int getWikiPagesCount()
212                    throws com.liferay.portal.kernel.exception.SystemException {
213                    return _wikiPageLocalService.getWikiPagesCount();
214            }
215    
216            /**
217            * Updates the wiki page in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
218            *
219            * @param wikiPage the wiki page
220            * @return the wiki page that was updated
221            * @throws SystemException if a system exception occurred
222            */
223            public com.liferay.portlet.wiki.model.WikiPage updateWikiPage(
224                    com.liferay.portlet.wiki.model.WikiPage wikiPage)
225                    throws com.liferay.portal.kernel.exception.SystemException {
226                    return _wikiPageLocalService.updateWikiPage(wikiPage);
227            }
228    
229            /**
230            * Updates the wiki page in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
231            *
232            * @param wikiPage the wiki page
233            * @param merge whether to merge the wiki page with the current session. See {@link com.liferay.portal.service.persistence.BatchSession#update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)} for an explanation.
234            * @return the wiki page that was updated
235            * @throws SystemException if a system exception occurred
236            */
237            public com.liferay.portlet.wiki.model.WikiPage updateWikiPage(
238                    com.liferay.portlet.wiki.model.WikiPage wikiPage, boolean merge)
239                    throws com.liferay.portal.kernel.exception.SystemException {
240                    return _wikiPageLocalService.updateWikiPage(wikiPage, merge);
241            }
242    
243            /**
244            * Returns the Spring bean ID for this bean.
245            *
246            * @return the Spring bean ID for this bean
247            */
248            public java.lang.String getBeanIdentifier() {
249                    return _wikiPageLocalService.getBeanIdentifier();
250            }
251    
252            /**
253            * Sets the Spring bean ID for this bean.
254            *
255            * @param beanIdentifier the Spring bean ID for this bean
256            */
257            public void setBeanIdentifier(java.lang.String beanIdentifier) {
258                    _wikiPageLocalService.setBeanIdentifier(beanIdentifier);
259            }
260    
261            public com.liferay.portlet.wiki.model.WikiPage addPage(long userId,
262                    long nodeId, java.lang.String title, double version,
263                    java.lang.String content, java.lang.String summary, boolean minorEdit,
264                    java.lang.String format, boolean head, java.lang.String parentTitle,
265                    java.lang.String redirectTitle,
266                    com.liferay.portal.service.ServiceContext serviceContext)
267                    throws com.liferay.portal.kernel.exception.PortalException,
268                            com.liferay.portal.kernel.exception.SystemException {
269                    return _wikiPageLocalService.addPage(userId, nodeId, title, version,
270                            content, summary, minorEdit, format, head, parentTitle,
271                            redirectTitle, serviceContext);
272            }
273    
274            public com.liferay.portlet.wiki.model.WikiPage addPage(long userId,
275                    long nodeId, java.lang.String title, java.lang.String content,
276                    java.lang.String summary, boolean minorEdit,
277                    com.liferay.portal.service.ServiceContext serviceContext)
278                    throws com.liferay.portal.kernel.exception.PortalException,
279                            com.liferay.portal.kernel.exception.SystemException {
280                    return _wikiPageLocalService.addPage(userId, nodeId, title, content,
281                            summary, minorEdit, serviceContext);
282            }
283    
284            public void addPageAttachment(long userId, long nodeId,
285                    java.lang.String title, java.lang.String fileName, java.io.File file)
286                    throws com.liferay.portal.kernel.exception.PortalException,
287                            com.liferay.portal.kernel.exception.SystemException {
288                    _wikiPageLocalService.addPageAttachment(userId, nodeId, title,
289                            fileName, file);
290            }
291    
292            public void addPageAttachment(long userId, long nodeId,
293                    java.lang.String title, java.lang.String fileName,
294                    java.io.InputStream inputStream)
295                    throws com.liferay.portal.kernel.exception.PortalException,
296                            com.liferay.portal.kernel.exception.SystemException {
297                    _wikiPageLocalService.addPageAttachment(userId, nodeId, title,
298                            fileName, inputStream);
299            }
300    
301            public void addPageAttachment(long companyId, java.lang.String dirName,
302                    java.util.Date modifiedDate, java.lang.String fileName,
303                    java.io.InputStream inputStream)
304                    throws com.liferay.portal.kernel.exception.PortalException,
305                            com.liferay.portal.kernel.exception.SystemException {
306                    _wikiPageLocalService.addPageAttachment(companyId, dirName,
307                            modifiedDate, fileName, inputStream);
308            }
309    
310            public void addPageAttachments(long userId, long nodeId,
311                    java.lang.String title,
312                    java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<java.lang.String, java.io.InputStream>> inputStreams)
313                    throws com.liferay.portal.kernel.exception.PortalException,
314                            com.liferay.portal.kernel.exception.SystemException {
315                    _wikiPageLocalService.addPageAttachments(userId, nodeId, title,
316                            inputStreams);
317            }
318    
319            public void addPageResources(long nodeId, java.lang.String title,
320                    boolean addGroupPermissions, boolean addGuestPermissions)
321                    throws com.liferay.portal.kernel.exception.PortalException,
322                            com.liferay.portal.kernel.exception.SystemException {
323                    _wikiPageLocalService.addPageResources(nodeId, title,
324                            addGroupPermissions, addGuestPermissions);
325            }
326    
327            public void addPageResources(long nodeId, java.lang.String title,
328                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
329                    throws com.liferay.portal.kernel.exception.PortalException,
330                            com.liferay.portal.kernel.exception.SystemException {
331                    _wikiPageLocalService.addPageResources(nodeId, title, groupPermissions,
332                            guestPermissions);
333            }
334    
335            public void addPageResources(com.liferay.portlet.wiki.model.WikiPage page,
336                    boolean addGroupPermissions, boolean addGuestPermissions)
337                    throws com.liferay.portal.kernel.exception.PortalException,
338                            com.liferay.portal.kernel.exception.SystemException {
339                    _wikiPageLocalService.addPageResources(page, addGroupPermissions,
340                            addGuestPermissions);
341            }
342    
343            public void addPageResources(com.liferay.portlet.wiki.model.WikiPage page,
344                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
345                    throws com.liferay.portal.kernel.exception.PortalException,
346                            com.liferay.portal.kernel.exception.SystemException {
347                    _wikiPageLocalService.addPageResources(page, groupPermissions,
348                            guestPermissions);
349            }
350    
351            public java.lang.String addTempPageAttachment(long userId,
352                    java.lang.String fileName, java.lang.String tempFolderName,
353                    java.io.InputStream inputStream)
354                    throws com.liferay.portal.kernel.exception.PortalException,
355                            com.liferay.portal.kernel.exception.SystemException,
356                            java.io.IOException {
357                    return _wikiPageLocalService.addTempPageAttachment(userId, fileName,
358                            tempFolderName, inputStream);
359            }
360    
361            public void changeParent(long userId, long nodeId, java.lang.String title,
362                    java.lang.String newParentTitle,
363                    com.liferay.portal.service.ServiceContext serviceContext)
364                    throws com.liferay.portal.kernel.exception.PortalException,
365                            com.liferay.portal.kernel.exception.SystemException {
366                    _wikiPageLocalService.changeParent(userId, nodeId, title,
367                            newParentTitle, serviceContext);
368            }
369    
370            public void deletePage(long nodeId, java.lang.String title)
371                    throws com.liferay.portal.kernel.exception.PortalException,
372                            com.liferay.portal.kernel.exception.SystemException {
373                    _wikiPageLocalService.deletePage(nodeId, title);
374            }
375    
376            public void deletePage(long nodeId, java.lang.String title, double version)
377                    throws com.liferay.portal.kernel.exception.PortalException,
378                            com.liferay.portal.kernel.exception.SystemException {
379                    _wikiPageLocalService.deletePage(nodeId, title, version);
380            }
381    
382            public void deletePage(com.liferay.portlet.wiki.model.WikiPage page)
383                    throws com.liferay.portal.kernel.exception.PortalException,
384                            com.liferay.portal.kernel.exception.SystemException {
385                    _wikiPageLocalService.deletePage(page);
386            }
387    
388            public void deletePageAttachment(long nodeId, java.lang.String title,
389                    java.lang.String fileName)
390                    throws com.liferay.portal.kernel.exception.PortalException,
391                            com.liferay.portal.kernel.exception.SystemException {
392                    _wikiPageLocalService.deletePageAttachment(nodeId, title, fileName);
393            }
394    
395            public void deletePages(long nodeId)
396                    throws com.liferay.portal.kernel.exception.PortalException,
397                            com.liferay.portal.kernel.exception.SystemException {
398                    _wikiPageLocalService.deletePages(nodeId);
399            }
400    
401            public void deleteTempPageAttachment(long userId,
402                    java.lang.String fileName, java.lang.String tempFolderName) {
403                    _wikiPageLocalService.deleteTempPageAttachment(userId, fileName,
404                            tempFolderName);
405            }
406    
407            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getChildren(
408                    long nodeId, boolean head, java.lang.String parentTitle)
409                    throws com.liferay.portal.kernel.exception.SystemException {
410                    return _wikiPageLocalService.getChildren(nodeId, head, parentTitle);
411            }
412    
413            public com.liferay.portlet.wiki.model.WikiPage getDraftPage(long nodeId,
414                    java.lang.String title)
415                    throws com.liferay.portal.kernel.exception.PortalException,
416                            com.liferay.portal.kernel.exception.SystemException {
417                    return _wikiPageLocalService.getDraftPage(nodeId, title);
418            }
419    
420            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getIncomingLinks(
421                    long nodeId, java.lang.String title)
422                    throws com.liferay.portal.kernel.exception.PortalException,
423                            com.liferay.portal.kernel.exception.SystemException {
424                    return _wikiPageLocalService.getIncomingLinks(nodeId, title);
425            }
426    
427            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getNoAssetPages()
428                    throws com.liferay.portal.kernel.exception.SystemException {
429                    return _wikiPageLocalService.getNoAssetPages();
430            }
431    
432            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getOrphans(
433                    long nodeId)
434                    throws com.liferay.portal.kernel.exception.PortalException,
435                            com.liferay.portal.kernel.exception.SystemException {
436                    return _wikiPageLocalService.getOrphans(nodeId);
437            }
438    
439            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getOutgoingLinks(
440                    long nodeId, java.lang.String title)
441                    throws com.liferay.portal.kernel.exception.PortalException,
442                            com.liferay.portal.kernel.exception.SystemException {
443                    return _wikiPageLocalService.getOutgoingLinks(nodeId, title);
444            }
445    
446            public com.liferay.portlet.wiki.model.WikiPage getPage(long resourcePrimKey)
447                    throws com.liferay.portal.kernel.exception.PortalException,
448                            com.liferay.portal.kernel.exception.SystemException {
449                    return _wikiPageLocalService.getPage(resourcePrimKey);
450            }
451    
452            public com.liferay.portlet.wiki.model.WikiPage getPage(
453                    long resourcePrimKey, java.lang.Boolean head)
454                    throws com.liferay.portal.kernel.exception.PortalException,
455                            com.liferay.portal.kernel.exception.SystemException {
456                    return _wikiPageLocalService.getPage(resourcePrimKey, head);
457            }
458    
459            public com.liferay.portlet.wiki.model.WikiPage getPage(long nodeId,
460                    java.lang.String title)
461                    throws com.liferay.portal.kernel.exception.PortalException,
462                            com.liferay.portal.kernel.exception.SystemException {
463                    return _wikiPageLocalService.getPage(nodeId, title);
464            }
465    
466            public com.liferay.portlet.wiki.model.WikiPage getPage(long nodeId,
467                    java.lang.String title, java.lang.Boolean head)
468                    throws com.liferay.portal.kernel.exception.PortalException,
469                            com.liferay.portal.kernel.exception.SystemException {
470                    return _wikiPageLocalService.getPage(nodeId, title, head);
471            }
472    
473            public com.liferay.portlet.wiki.model.WikiPage getPage(long nodeId,
474                    java.lang.String title, double version)
475                    throws com.liferay.portal.kernel.exception.PortalException,
476                            com.liferay.portal.kernel.exception.SystemException {
477                    return _wikiPageLocalService.getPage(nodeId, title, version);
478            }
479    
480            public com.liferay.portlet.wiki.model.WikiPage getPageByPageId(long pageId)
481                    throws com.liferay.portal.kernel.exception.PortalException,
482                            com.liferay.portal.kernel.exception.SystemException {
483                    return _wikiPageLocalService.getPageByPageId(pageId);
484            }
485    
486            public com.liferay.portlet.wiki.model.WikiPageDisplay getPageDisplay(
487                    long nodeId, java.lang.String title,
488                    javax.portlet.PortletURL viewPageURL,
489                    javax.portlet.PortletURL editPageURL,
490                    java.lang.String attachmentURLPrefix)
491                    throws com.liferay.portal.kernel.exception.PortalException,
492                            com.liferay.portal.kernel.exception.SystemException {
493                    return _wikiPageLocalService.getPageDisplay(nodeId, title, viewPageURL,
494                            editPageURL, attachmentURLPrefix);
495            }
496    
497            public com.liferay.portlet.wiki.model.WikiPageDisplay getPageDisplay(
498                    com.liferay.portlet.wiki.model.WikiPage page,
499                    javax.portlet.PortletURL viewPageURL,
500                    javax.portlet.PortletURL editPageURL,
501                    java.lang.String attachmentURLPrefix)
502                    throws com.liferay.portal.kernel.exception.PortalException,
503                            com.liferay.portal.kernel.exception.SystemException {
504                    return _wikiPageLocalService.getPageDisplay(page, viewPageURL,
505                            editPageURL, attachmentURLPrefix);
506            }
507    
508            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getPages(
509                    long nodeId, boolean head, int start, int end)
510                    throws com.liferay.portal.kernel.exception.SystemException {
511                    return _wikiPageLocalService.getPages(nodeId, head, start, end);
512            }
513    
514            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getPages(
515                    long nodeId, boolean head, int start, int end,
516                    com.liferay.portal.kernel.util.OrderByComparator obc)
517                    throws com.liferay.portal.kernel.exception.SystemException {
518                    return _wikiPageLocalService.getPages(nodeId, head, start, end, obc);
519            }
520    
521            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getPages(
522                    long nodeId, int start, int end)
523                    throws com.liferay.portal.kernel.exception.SystemException {
524                    return _wikiPageLocalService.getPages(nodeId, start, end);
525            }
526    
527            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getPages(
528                    long nodeId, int start, int end,
529                    com.liferay.portal.kernel.util.OrderByComparator obc)
530                    throws com.liferay.portal.kernel.exception.SystemException {
531                    return _wikiPageLocalService.getPages(nodeId, start, end, obc);
532            }
533    
534            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getPages(
535                    long resourcePrimKey, long nodeId, int status)
536                    throws com.liferay.portal.kernel.exception.SystemException {
537                    return _wikiPageLocalService.getPages(resourcePrimKey, nodeId, status);
538            }
539    
540            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getPages(
541                    long userId, long nodeId, int status, int start, int end)
542                    throws com.liferay.portal.kernel.exception.SystemException {
543                    return _wikiPageLocalService.getPages(userId, nodeId, status, start, end);
544            }
545    
546            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getPages(
547                    long nodeId, java.lang.String title, boolean head, int start, int end)
548                    throws com.liferay.portal.kernel.exception.SystemException {
549                    return _wikiPageLocalService.getPages(nodeId, title, head, start, end);
550            }
551    
552            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getPages(
553                    long nodeId, java.lang.String title, int start, int end)
554                    throws com.liferay.portal.kernel.exception.SystemException {
555                    return _wikiPageLocalService.getPages(nodeId, title, start, end);
556            }
557    
558            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getPages(
559                    long nodeId, java.lang.String title, int start, int end,
560                    com.liferay.portal.kernel.util.OrderByComparator obc)
561                    throws com.liferay.portal.kernel.exception.SystemException {
562                    return _wikiPageLocalService.getPages(nodeId, title, start, end, obc);
563            }
564    
565            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getPages(
566                    java.lang.String format)
567                    throws com.liferay.portal.kernel.exception.SystemException {
568                    return _wikiPageLocalService.getPages(format);
569            }
570    
571            public int getPagesCount(long nodeId)
572                    throws com.liferay.portal.kernel.exception.SystemException {
573                    return _wikiPageLocalService.getPagesCount(nodeId);
574            }
575    
576            public int getPagesCount(long nodeId, boolean head)
577                    throws com.liferay.portal.kernel.exception.SystemException {
578                    return _wikiPageLocalService.getPagesCount(nodeId, head);
579            }
580    
581            public int getPagesCount(long userId, long nodeId, int status)
582                    throws com.liferay.portal.kernel.exception.SystemException {
583                    return _wikiPageLocalService.getPagesCount(userId, nodeId, status);
584            }
585    
586            public int getPagesCount(long nodeId, java.lang.String title)
587                    throws com.liferay.portal.kernel.exception.SystemException {
588                    return _wikiPageLocalService.getPagesCount(nodeId, title);
589            }
590    
591            public int getPagesCount(long nodeId, java.lang.String title, boolean head)
592                    throws com.liferay.portal.kernel.exception.SystemException {
593                    return _wikiPageLocalService.getPagesCount(nodeId, title, head);
594            }
595    
596            public int getPagesCount(java.lang.String format)
597                    throws com.liferay.portal.kernel.exception.SystemException {
598                    return _wikiPageLocalService.getPagesCount(format);
599            }
600    
601            public java.util.List<com.liferay.portlet.wiki.model.WikiPage> getRecentChanges(
602                    long nodeId, int start, int end)
603                    throws com.liferay.portal.kernel.exception.SystemException {
604                    return _wikiPageLocalService.getRecentChanges(nodeId, start, end);
605            }
606    
607            public int getRecentChangesCount(long nodeId)
608                    throws com.liferay.portal.kernel.exception.SystemException {
609                    return _wikiPageLocalService.getRecentChangesCount(nodeId);
610            }
611    
612            public java.lang.String[] getTempPageAttachmentNames(long userId,
613                    java.lang.String tempFolderName) {
614                    return _wikiPageLocalService.getTempPageAttachmentNames(userId,
615                            tempFolderName);
616            }
617    
618            public boolean hasDraftPage(long nodeId, java.lang.String title)
619                    throws com.liferay.portal.kernel.exception.SystemException {
620                    return _wikiPageLocalService.hasDraftPage(nodeId, title);
621            }
622    
623            public void movePage(long userId, long nodeId, java.lang.String title,
624                    java.lang.String newTitle, boolean strict,
625                    com.liferay.portal.service.ServiceContext serviceContext)
626                    throws com.liferay.portal.kernel.exception.PortalException,
627                            com.liferay.portal.kernel.exception.SystemException {
628                    _wikiPageLocalService.movePage(userId, nodeId, title, newTitle, strict,
629                            serviceContext);
630            }
631    
632            public void movePage(long userId, long nodeId, java.lang.String title,
633                    java.lang.String newTitle,
634                    com.liferay.portal.service.ServiceContext serviceContext)
635                    throws com.liferay.portal.kernel.exception.PortalException,
636                            com.liferay.portal.kernel.exception.SystemException {
637                    _wikiPageLocalService.movePage(userId, nodeId, title, newTitle,
638                            serviceContext);
639            }
640    
641            public com.liferay.portlet.wiki.model.WikiPage revertPage(long userId,
642                    long nodeId, java.lang.String title, double version,
643                    com.liferay.portal.service.ServiceContext serviceContext)
644                    throws com.liferay.portal.kernel.exception.PortalException,
645                            com.liferay.portal.kernel.exception.SystemException {
646                    return _wikiPageLocalService.revertPage(userId, nodeId, title, version,
647                            serviceContext);
648            }
649    
650            public void subscribePage(long userId, long nodeId, java.lang.String title)
651                    throws com.liferay.portal.kernel.exception.PortalException,
652                            com.liferay.portal.kernel.exception.SystemException {
653                    _wikiPageLocalService.subscribePage(userId, nodeId, title);
654            }
655    
656            public void unsubscribePage(long userId, long nodeId, java.lang.String title)
657                    throws com.liferay.portal.kernel.exception.PortalException,
658                            com.liferay.portal.kernel.exception.SystemException {
659                    _wikiPageLocalService.unsubscribePage(userId, nodeId, title);
660            }
661    
662            public void updateAsset(long userId,
663                    com.liferay.portlet.wiki.model.WikiPage page, long[] assetCategoryIds,
664                    java.lang.String[] assetTagNames, long[] assetLinkEntryIds)
665                    throws com.liferay.portal.kernel.exception.PortalException,
666                            com.liferay.portal.kernel.exception.SystemException {
667                    _wikiPageLocalService.updateAsset(userId, page, assetCategoryIds,
668                            assetTagNames, assetLinkEntryIds);
669            }
670    
671            public com.liferay.portlet.wiki.model.WikiPage updatePage(long userId,
672                    long nodeId, java.lang.String title, double version,
673                    java.lang.String content, java.lang.String summary, boolean minorEdit,
674                    java.lang.String format, java.lang.String parentTitle,
675                    java.lang.String redirectTitle,
676                    com.liferay.portal.service.ServiceContext serviceContext)
677                    throws com.liferay.portal.kernel.exception.PortalException,
678                            com.liferay.portal.kernel.exception.SystemException {
679                    return _wikiPageLocalService.updatePage(userId, nodeId, title, version,
680                            content, summary, minorEdit, format, parentTitle, redirectTitle,
681                            serviceContext);
682            }
683    
684            public com.liferay.portlet.wiki.model.WikiPage updateStatus(long userId,
685                    long resourcePrimKey, int status,
686                    com.liferay.portal.service.ServiceContext serviceContext)
687                    throws com.liferay.portal.kernel.exception.PortalException,
688                            com.liferay.portal.kernel.exception.SystemException {
689                    return _wikiPageLocalService.updateStatus(userId, resourcePrimKey,
690                            status, serviceContext);
691            }
692    
693            public com.liferay.portlet.wiki.model.WikiPage updateStatus(long userId,
694                    com.liferay.portlet.wiki.model.WikiPage page, int status,
695                    com.liferay.portal.service.ServiceContext serviceContext)
696                    throws com.liferay.portal.kernel.exception.PortalException,
697                            com.liferay.portal.kernel.exception.SystemException {
698                    return _wikiPageLocalService.updateStatus(userId, page, status,
699                            serviceContext);
700            }
701    
702            public void validateTitle(java.lang.String title)
703                    throws com.liferay.portal.kernel.exception.PortalException {
704                    _wikiPageLocalService.validateTitle(title);
705            }
706    
707            public WikiPageLocalService getWrappedWikiPageLocalService() {
708                    return _wikiPageLocalService;
709            }
710    
711            public void setWrappedWikiPageLocalService(
712                    WikiPageLocalService wikiPageLocalService) {
713                    _wikiPageLocalService = wikiPageLocalService;
714            }
715    
716            private WikiPageLocalService _wikiPageLocalService;
717    }