001    /**
002     * Copyright (c) 2000-present 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    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.service.ServiceWrapper;
020    
021    /**
022     * Provides a wrapper for {@link WikiNodeLocalService}.
023     *
024     * @author Brian Wing Shun Chan
025     * @see WikiNodeLocalService
026     * @generated
027     */
028    @ProviderType
029    public class WikiNodeLocalServiceWrapper implements WikiNodeLocalService,
030            ServiceWrapper<WikiNodeLocalService> {
031            public WikiNodeLocalServiceWrapper(
032                    WikiNodeLocalService wikiNodeLocalService) {
033                    _wikiNodeLocalService = wikiNodeLocalService;
034            }
035    
036            @Override
037            public com.liferay.portlet.wiki.model.WikiNode addDefaultNode(long userId,
038                    com.liferay.portal.service.ServiceContext serviceContext)
039                    throws com.liferay.portal.kernel.exception.PortalException {
040                    return _wikiNodeLocalService.addDefaultNode(userId, serviceContext);
041            }
042    
043            @Override
044            public com.liferay.portlet.wiki.model.WikiNode addNode(long userId,
045                    java.lang.String name, java.lang.String description,
046                    com.liferay.portal.service.ServiceContext serviceContext)
047                    throws com.liferay.portal.kernel.exception.PortalException {
048                    return _wikiNodeLocalService.addNode(userId, name, description,
049                            serviceContext);
050            }
051    
052            @Override
053            public void addNodeResources(com.liferay.portlet.wiki.model.WikiNode node,
054                    boolean addGroupPermissions, boolean addGuestPermissions)
055                    throws com.liferay.portal.kernel.exception.PortalException {
056                    _wikiNodeLocalService.addNodeResources(node, addGroupPermissions,
057                            addGuestPermissions);
058            }
059    
060            @Override
061            public void addNodeResources(com.liferay.portlet.wiki.model.WikiNode node,
062                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
063                    throws com.liferay.portal.kernel.exception.PortalException {
064                    _wikiNodeLocalService.addNodeResources(node, groupPermissions,
065                            guestPermissions);
066            }
067    
068            @Override
069            public void addNodeResources(long nodeId, boolean addGroupPermissions,
070                    boolean addGuestPermissions)
071                    throws com.liferay.portal.kernel.exception.PortalException {
072                    _wikiNodeLocalService.addNodeResources(nodeId, addGroupPermissions,
073                            addGuestPermissions);
074            }
075    
076            @Override
077            public void addNodeResources(long nodeId,
078                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
079                    throws com.liferay.portal.kernel.exception.PortalException {
080                    _wikiNodeLocalService.addNodeResources(nodeId, groupPermissions,
081                            guestPermissions);
082            }
083    
084            /**
085            * Adds the wiki node to the database. Also notifies the appropriate model listeners.
086            *
087            * @param wikiNode the wiki node
088            * @return the wiki node that was added
089            */
090            @Override
091            public com.liferay.portlet.wiki.model.WikiNode addWikiNode(
092                    com.liferay.portlet.wiki.model.WikiNode wikiNode) {
093                    return _wikiNodeLocalService.addWikiNode(wikiNode);
094            }
095    
096            /**
097            * Creates a new wiki node with the primary key. Does not add the wiki node to the database.
098            *
099            * @param nodeId the primary key for the new wiki node
100            * @return the new wiki node
101            */
102            @Override
103            public com.liferay.portlet.wiki.model.WikiNode createWikiNode(long nodeId) {
104                    return _wikiNodeLocalService.createWikiNode(nodeId);
105            }
106    
107            @Override
108            public void deleteNode(com.liferay.portlet.wiki.model.WikiNode node)
109                    throws com.liferay.portal.kernel.exception.PortalException {
110                    _wikiNodeLocalService.deleteNode(node);
111            }
112    
113            @Override
114            public void deleteNode(long nodeId)
115                    throws com.liferay.portal.kernel.exception.PortalException {
116                    _wikiNodeLocalService.deleteNode(nodeId);
117            }
118    
119            @Override
120            public void deleteNodes(long groupId)
121                    throws com.liferay.portal.kernel.exception.PortalException {
122                    _wikiNodeLocalService.deleteNodes(groupId);
123            }
124    
125            /**
126            * @throws PortalException
127            */
128            @Override
129            public com.liferay.portal.model.PersistedModel deletePersistedModel(
130                    com.liferay.portal.model.PersistedModel persistedModel)
131                    throws com.liferay.portal.kernel.exception.PortalException {
132                    return _wikiNodeLocalService.deletePersistedModel(persistedModel);
133            }
134    
135            /**
136            * Deletes the wiki node with the primary key from the database. Also notifies the appropriate model listeners.
137            *
138            * @param nodeId the primary key of the wiki node
139            * @return the wiki node that was removed
140            * @throws PortalException if a wiki node with the primary key could not be found
141            */
142            @Override
143            public com.liferay.portlet.wiki.model.WikiNode deleteWikiNode(long nodeId)
144                    throws com.liferay.portal.kernel.exception.PortalException {
145                    return _wikiNodeLocalService.deleteWikiNode(nodeId);
146            }
147    
148            /**
149            * Deletes the wiki node from the database. Also notifies the appropriate model listeners.
150            *
151            * @param wikiNode the wiki node
152            * @return the wiki node that was removed
153            */
154            @Override
155            public com.liferay.portlet.wiki.model.WikiNode deleteWikiNode(
156                    com.liferay.portlet.wiki.model.WikiNode wikiNode) {
157                    return _wikiNodeLocalService.deleteWikiNode(wikiNode);
158            }
159    
160            @Override
161            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
162                    return _wikiNodeLocalService.dynamicQuery();
163            }
164    
165            /**
166            * Performs a dynamic query on the database and returns the matching rows.
167            *
168            * @param dynamicQuery the dynamic query
169            * @return the matching rows
170            */
171            @Override
172            public <T> java.util.List<T> dynamicQuery(
173                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
174                    return _wikiNodeLocalService.dynamicQuery(dynamicQuery);
175            }
176    
177            /**
178            * Performs a dynamic query on the database and returns a range of the matching rows.
179            *
180            * <p>
181            * 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. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.wiki.model.impl.WikiNodeModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
182            * </p>
183            *
184            * @param dynamicQuery the dynamic query
185            * @param start the lower bound of the range of model instances
186            * @param end the upper bound of the range of model instances (not inclusive)
187            * @return the range of matching rows
188            */
189            @Override
190            public <T> java.util.List<T> dynamicQuery(
191                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
192                    int end) {
193                    return _wikiNodeLocalService.dynamicQuery(dynamicQuery, start, end);
194            }
195    
196            /**
197            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
198            *
199            * <p>
200            * 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. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.wiki.model.impl.WikiNodeModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
201            * </p>
202            *
203            * @param dynamicQuery the dynamic query
204            * @param start the lower bound of the range of model instances
205            * @param end the upper bound of the range of model instances (not inclusive)
206            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
207            * @return the ordered range of matching rows
208            */
209            @Override
210            public <T> java.util.List<T> dynamicQuery(
211                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
212                    int end,
213                    com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) {
214                    return _wikiNodeLocalService.dynamicQuery(dynamicQuery, start, end,
215                            orderByComparator);
216            }
217    
218            /**
219            * Returns the number of rows matching the dynamic query.
220            *
221            * @param dynamicQuery the dynamic query
222            * @return the number of rows matching the dynamic query
223            */
224            @Override
225            public long dynamicQueryCount(
226                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
227                    return _wikiNodeLocalService.dynamicQueryCount(dynamicQuery);
228            }
229    
230            /**
231            * Returns the number of rows matching the dynamic query.
232            *
233            * @param dynamicQuery the dynamic query
234            * @param projection the projection to apply to the query
235            * @return the number of rows matching the dynamic query
236            */
237            @Override
238            public long dynamicQueryCount(
239                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
240                    com.liferay.portal.kernel.dao.orm.Projection projection) {
241                    return _wikiNodeLocalService.dynamicQueryCount(dynamicQuery, projection);
242            }
243    
244            @Override
245            public com.liferay.portlet.wiki.model.WikiNode fetchNode(long groupId,
246                    java.lang.String name) {
247                    return _wikiNodeLocalService.fetchNode(groupId, name);
248            }
249    
250            @Override
251            public com.liferay.portlet.wiki.model.WikiNode fetchNodeByUuidAndGroupId(
252                    java.lang.String uuid, long groupId) {
253                    return _wikiNodeLocalService.fetchNodeByUuidAndGroupId(uuid, groupId);
254            }
255    
256            @Override
257            public com.liferay.portlet.wiki.model.WikiNode fetchWikiNode(long nodeId) {
258                    return _wikiNodeLocalService.fetchWikiNode(nodeId);
259            }
260    
261            /**
262            * Returns the wiki node matching the UUID and group.
263            *
264            * @param uuid the wiki node's UUID
265            * @param groupId the primary key of the group
266            * @return the matching wiki node, or <code>null</code> if a matching wiki node could not be found
267            */
268            @Override
269            public com.liferay.portlet.wiki.model.WikiNode fetchWikiNodeByUuidAndGroupId(
270                    java.lang.String uuid, long groupId) {
271                    return _wikiNodeLocalService.fetchWikiNodeByUuidAndGroupId(uuid, groupId);
272            }
273    
274            @Override
275            public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() {
276                    return _wikiNodeLocalService.getActionableDynamicQuery();
277            }
278    
279            /**
280            * Returns the Spring bean ID for this bean.
281            *
282            * @return the Spring bean ID for this bean
283            */
284            @Override
285            public java.lang.String getBeanIdentifier() {
286                    return _wikiNodeLocalService.getBeanIdentifier();
287            }
288    
289            @Override
290            public java.util.List<com.liferay.portlet.wiki.model.WikiNode> getCompanyNodes(
291                    long companyId, int start, int end) {
292                    return _wikiNodeLocalService.getCompanyNodes(companyId, start, end);
293            }
294    
295            @Override
296            public java.util.List<com.liferay.portlet.wiki.model.WikiNode> getCompanyNodes(
297                    long companyId, int status, int start, int end) {
298                    return _wikiNodeLocalService.getCompanyNodes(companyId, status, start,
299                            end);
300            }
301    
302            @Override
303            public int getCompanyNodesCount(long companyId) {
304                    return _wikiNodeLocalService.getCompanyNodesCount(companyId);
305            }
306    
307            @Override
308            public int getCompanyNodesCount(long companyId, int status) {
309                    return _wikiNodeLocalService.getCompanyNodesCount(companyId, status);
310            }
311    
312            @Override
313            public com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery getExportActionableDynamicQuery(
314                    com.liferay.portal.kernel.lar.PortletDataContext portletDataContext) {
315                    return _wikiNodeLocalService.getExportActionableDynamicQuery(portletDataContext);
316            }
317    
318            @Override
319            public com.liferay.portlet.wiki.model.WikiNode getNode(long groupId,
320                    java.lang.String nodeName)
321                    throws com.liferay.portal.kernel.exception.PortalException {
322                    return _wikiNodeLocalService.getNode(groupId, nodeName);
323            }
324    
325            @Override
326            public com.liferay.portlet.wiki.model.WikiNode getNode(long nodeId)
327                    throws com.liferay.portal.kernel.exception.PortalException {
328                    return _wikiNodeLocalService.getNode(nodeId);
329            }
330    
331            @Override
332            public java.util.List<com.liferay.portlet.wiki.model.WikiNode> getNodes(
333                    long groupId)
334                    throws com.liferay.portal.kernel.exception.PortalException {
335                    return _wikiNodeLocalService.getNodes(groupId);
336            }
337    
338            @Override
339            public java.util.List<com.liferay.portlet.wiki.model.WikiNode> getNodes(
340                    long groupId, int start, int end)
341                    throws com.liferay.portal.kernel.exception.PortalException {
342                    return _wikiNodeLocalService.getNodes(groupId, start, end);
343            }
344    
345            @Override
346            public java.util.List<com.liferay.portlet.wiki.model.WikiNode> getNodes(
347                    long groupId, int status)
348                    throws com.liferay.portal.kernel.exception.PortalException {
349                    return _wikiNodeLocalService.getNodes(groupId, status);
350            }
351    
352            @Override
353            public java.util.List<com.liferay.portlet.wiki.model.WikiNode> getNodes(
354                    long groupId, int status, int start, int end)
355                    throws com.liferay.portal.kernel.exception.PortalException {
356                    return _wikiNodeLocalService.getNodes(groupId, status, start, end);
357            }
358    
359            @Override
360            public int getNodesCount(long groupId) {
361                    return _wikiNodeLocalService.getNodesCount(groupId);
362            }
363    
364            @Override
365            public int getNodesCount(long groupId, int status) {
366                    return _wikiNodeLocalService.getNodesCount(groupId, status);
367            }
368    
369            @Override
370            public com.liferay.portal.model.PersistedModel getPersistedModel(
371                    java.io.Serializable primaryKeyObj)
372                    throws com.liferay.portal.kernel.exception.PortalException {
373                    return _wikiNodeLocalService.getPersistedModel(primaryKeyObj);
374            }
375    
376            /**
377            * Returns the wiki node with the primary key.
378            *
379            * @param nodeId the primary key of the wiki node
380            * @return the wiki node
381            * @throws PortalException if a wiki node with the primary key could not be found
382            */
383            @Override
384            public com.liferay.portlet.wiki.model.WikiNode getWikiNode(long nodeId)
385                    throws com.liferay.portal.kernel.exception.PortalException {
386                    return _wikiNodeLocalService.getWikiNode(nodeId);
387            }
388    
389            /**
390            * Returns the wiki node matching the UUID and group.
391            *
392            * @param uuid the wiki node's UUID
393            * @param groupId the primary key of the group
394            * @return the matching wiki node
395            * @throws PortalException if a matching wiki node could not be found
396            */
397            @Override
398            public com.liferay.portlet.wiki.model.WikiNode getWikiNodeByUuidAndGroupId(
399                    java.lang.String uuid, long groupId)
400                    throws com.liferay.portal.kernel.exception.PortalException {
401                    return _wikiNodeLocalService.getWikiNodeByUuidAndGroupId(uuid, groupId);
402            }
403    
404            /**
405            * Returns a range of all the wiki nodes.
406            *
407            * <p>
408            * 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. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.wiki.model.impl.WikiNodeModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
409            * </p>
410            *
411            * @param start the lower bound of the range of wiki nodes
412            * @param end the upper bound of the range of wiki nodes (not inclusive)
413            * @return the range of wiki nodes
414            */
415            @Override
416            public java.util.List<com.liferay.portlet.wiki.model.WikiNode> getWikiNodes(
417                    int start, int end) {
418                    return _wikiNodeLocalService.getWikiNodes(start, end);
419            }
420    
421            /**
422            * Returns all the wiki nodes matching the UUID and company.
423            *
424            * @param uuid the UUID of the wiki nodes
425            * @param companyId the primary key of the company
426            * @return the matching wiki nodes, or an empty list if no matches were found
427            */
428            @Override
429            public java.util.List<com.liferay.portlet.wiki.model.WikiNode> getWikiNodesByUuidAndCompanyId(
430                    java.lang.String uuid, long companyId) {
431                    return _wikiNodeLocalService.getWikiNodesByUuidAndCompanyId(uuid,
432                            companyId);
433            }
434    
435            /**
436            * Returns a range of wiki nodes matching the UUID and company.
437            *
438            * @param uuid the UUID of the wiki nodes
439            * @param companyId the primary key of the company
440            * @param start the lower bound of the range of wiki nodes
441            * @param end the upper bound of the range of wiki nodes (not inclusive)
442            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
443            * @return the range of matching wiki nodes, or an empty list if no matches were found
444            */
445            @Override
446            public java.util.List<com.liferay.portlet.wiki.model.WikiNode> getWikiNodesByUuidAndCompanyId(
447                    java.lang.String uuid, long companyId, int start, int end,
448                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.wiki.model.WikiNode> orderByComparator) {
449                    return _wikiNodeLocalService.getWikiNodesByUuidAndCompanyId(uuid,
450                            companyId, start, end, orderByComparator);
451            }
452    
453            /**
454            * Returns the number of wiki nodes.
455            *
456            * @return the number of wiki nodes
457            */
458            @Override
459            public int getWikiNodesCount() {
460                    return _wikiNodeLocalService.getWikiNodesCount();
461            }
462    
463            @Override
464            public void importPages(long userId, long nodeId,
465                    java.lang.String importer, java.io.InputStream[] inputStreams,
466                    java.util.Map<java.lang.String, java.lang.String[]> options)
467                    throws com.liferay.portal.kernel.exception.PortalException {
468                    _wikiNodeLocalService.importPages(userId, nodeId, importer,
469                            inputStreams, options);
470            }
471    
472            @Override
473            public com.liferay.portlet.wiki.model.WikiNode moveNodeToTrash(
474                    long userId, com.liferay.portlet.wiki.model.WikiNode node)
475                    throws com.liferay.portal.kernel.exception.PortalException {
476                    return _wikiNodeLocalService.moveNodeToTrash(userId, node);
477            }
478    
479            @Override
480            public com.liferay.portlet.wiki.model.WikiNode moveNodeToTrash(
481                    long userId, long nodeId)
482                    throws com.liferay.portal.kernel.exception.PortalException {
483                    return _wikiNodeLocalService.moveNodeToTrash(userId, nodeId);
484            }
485    
486            @Override
487            public void restoreNodeFromTrash(long userId,
488                    com.liferay.portlet.wiki.model.WikiNode node)
489                    throws com.liferay.portal.kernel.exception.PortalException {
490                    _wikiNodeLocalService.restoreNodeFromTrash(userId, node);
491            }
492    
493            /**
494            * Sets the Spring bean ID for this bean.
495            *
496            * @param beanIdentifier the Spring bean ID for this bean
497            */
498            @Override
499            public void setBeanIdentifier(java.lang.String beanIdentifier) {
500                    _wikiNodeLocalService.setBeanIdentifier(beanIdentifier);
501            }
502    
503            @Override
504            public void subscribeNode(long userId, long nodeId)
505                    throws com.liferay.portal.kernel.exception.PortalException {
506                    _wikiNodeLocalService.subscribeNode(userId, nodeId);
507            }
508    
509            @Override
510            public void unsubscribeNode(long userId, long nodeId)
511                    throws com.liferay.portal.kernel.exception.PortalException {
512                    _wikiNodeLocalService.unsubscribeNode(userId, nodeId);
513            }
514    
515            @Override
516            public com.liferay.portlet.wiki.model.WikiNode updateNode(long nodeId,
517                    java.lang.String name, java.lang.String description,
518                    com.liferay.portal.service.ServiceContext serviceContext)
519                    throws com.liferay.portal.kernel.exception.PortalException {
520                    return _wikiNodeLocalService.updateNode(nodeId, name, description,
521                            serviceContext);
522            }
523    
524            @Override
525            public com.liferay.portlet.wiki.model.WikiNode updateStatus(long userId,
526                    com.liferay.portlet.wiki.model.WikiNode node, int status,
527                    com.liferay.portal.service.ServiceContext serviceContext)
528                    throws com.liferay.portal.kernel.exception.PortalException {
529                    return _wikiNodeLocalService.updateStatus(userId, node, status,
530                            serviceContext);
531            }
532    
533            /**
534            * Updates the wiki node in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
535            *
536            * @param wikiNode the wiki node
537            * @return the wiki node that was updated
538            */
539            @Override
540            public com.liferay.portlet.wiki.model.WikiNode updateWikiNode(
541                    com.liferay.portlet.wiki.model.WikiNode wikiNode) {
542                    return _wikiNodeLocalService.updateWikiNode(wikiNode);
543            }
544    
545            /**
546             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
547             */
548            @Deprecated
549            public WikiNodeLocalService getWrappedWikiNodeLocalService() {
550                    return _wikiNodeLocalService;
551            }
552    
553            /**
554             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
555             */
556            @Deprecated
557            public void setWrappedWikiNodeLocalService(
558                    WikiNodeLocalService wikiNodeLocalService) {
559                    _wikiNodeLocalService = wikiNodeLocalService;
560            }
561    
562            @Override
563            public WikiNodeLocalService getWrappedService() {
564                    return _wikiNodeLocalService;
565            }
566    
567            @Override
568            public void setWrappedService(WikiNodeLocalService wikiNodeLocalService) {
569                    _wikiNodeLocalService = wikiNodeLocalService;
570            }
571    
572            private WikiNodeLocalService _wikiNodeLocalService;
573    }