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