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