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.blogs.service;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.service.ServiceWrapper;
020    
021    /**
022     * Provides a wrapper for {@link BlogsEntryLocalService}.
023     *
024     * @author Brian Wing Shun Chan
025     * @see BlogsEntryLocalService
026     * @generated
027     */
028    @ProviderType
029    public class BlogsEntryLocalServiceWrapper implements BlogsEntryLocalService,
030            ServiceWrapper<BlogsEntryLocalService> {
031            public BlogsEntryLocalServiceWrapper(
032                    BlogsEntryLocalService blogsEntryLocalService) {
033                    _blogsEntryLocalService = blogsEntryLocalService;
034            }
035    
036            @Override
037            public com.liferay.portal.kernel.repository.model.Folder addAttachmentsFolder(
038                    long userId, long groupId)
039                    throws com.liferay.portal.kernel.exception.PortalException {
040                    return _blogsEntryLocalService.addAttachmentsFolder(userId, groupId);
041            }
042    
043            /**
044            * Adds the blogs entry to the database. Also notifies the appropriate model listeners.
045            *
046            * @param blogsEntry the blogs entry
047            * @return the blogs entry that was added
048            */
049            @Override
050            public com.liferay.portlet.blogs.model.BlogsEntry addBlogsEntry(
051                    com.liferay.portlet.blogs.model.BlogsEntry blogsEntry) {
052                    return _blogsEntryLocalService.addBlogsEntry(blogsEntry);
053            }
054    
055            @Override
056            public com.liferay.portlet.blogs.model.BlogsEntry addEntry(long userId,
057                    java.lang.String title, java.lang.String content,
058                    java.util.Date displayDate,
059                    com.liferay.portal.service.ServiceContext serviceContext)
060                    throws com.liferay.portal.kernel.exception.PortalException {
061                    return _blogsEntryLocalService.addEntry(userId, title, content,
062                            displayDate, serviceContext);
063            }
064    
065            @Override
066            public com.liferay.portlet.blogs.model.BlogsEntry addEntry(long userId,
067                    java.lang.String title, java.lang.String content,
068                    com.liferay.portal.service.ServiceContext serviceContext)
069                    throws com.liferay.portal.kernel.exception.PortalException {
070                    return _blogsEntryLocalService.addEntry(userId, title, content,
071                            serviceContext);
072            }
073    
074            /**
075            * @deprecated As of 7.0.0, replaced by {@link #addEntry(long, String,
076            String, String, String, int, int, int, int, int, boolean,
077            boolean, String[], String, ImageSelector, ImageSelector,
078            ServiceContext)}
079            */
080            @Deprecated
081            @Override
082            public com.liferay.portlet.blogs.model.BlogsEntry addEntry(long userId,
083                    java.lang.String title, java.lang.String description,
084                    java.lang.String content, int displayDateMonth, int displayDateDay,
085                    int displayDateYear, int displayDateHour, int displayDateMinute,
086                    boolean allowPingbacks, boolean allowTrackbacks,
087                    java.lang.String[] trackbacks, boolean smallImage,
088                    java.lang.String smallImageURL, java.lang.String smallImageFileName,
089                    java.io.InputStream smallImageInputStream,
090                    com.liferay.portal.service.ServiceContext serviceContext)
091                    throws com.liferay.portal.kernel.exception.PortalException {
092                    return _blogsEntryLocalService.addEntry(userId, title, description,
093                            content, displayDateMonth, displayDateDay, displayDateYear,
094                            displayDateHour, displayDateMinute, allowPingbacks,
095                            allowTrackbacks, trackbacks, smallImage, smallImageURL,
096                            smallImageFileName, smallImageInputStream, serviceContext);
097            }
098    
099            @Override
100            public com.liferay.portlet.blogs.model.BlogsEntry addEntry(long userId,
101                    java.lang.String title, java.lang.String subtitle,
102                    java.lang.String description, java.lang.String content,
103                    java.util.Date displayDate, boolean allowPingbacks,
104                    boolean allowTrackbacks, java.lang.String[] trackbacks,
105                    java.lang.String coverImageCaption,
106                    com.liferay.portal.kernel.servlet.taglib.ui.ImageSelector coverImageImageSelector,
107                    com.liferay.portal.kernel.servlet.taglib.ui.ImageSelector smallImageImageSelector,
108                    com.liferay.portal.service.ServiceContext serviceContext)
109                    throws com.liferay.portal.kernel.exception.PortalException {
110                    return _blogsEntryLocalService.addEntry(userId, title, subtitle,
111                            description, content, displayDate, allowPingbacks, allowTrackbacks,
112                            trackbacks, coverImageCaption, coverImageImageSelector,
113                            smallImageImageSelector, serviceContext);
114            }
115    
116            @Override
117            public com.liferay.portlet.blogs.model.BlogsEntry addEntry(long userId,
118                    java.lang.String title, java.lang.String subtitle,
119                    java.lang.String description, java.lang.String content,
120                    int displayDateMonth, int displayDateDay, int displayDateYear,
121                    int displayDateHour, int displayDateMinute, boolean allowPingbacks,
122                    boolean allowTrackbacks, java.lang.String[] trackbacks,
123                    java.lang.String coverImageCaption,
124                    com.liferay.portal.kernel.servlet.taglib.ui.ImageSelector coverImageImageSelector,
125                    com.liferay.portal.kernel.servlet.taglib.ui.ImageSelector smallImageImageSelector,
126                    com.liferay.portal.service.ServiceContext serviceContext)
127                    throws com.liferay.portal.kernel.exception.PortalException {
128                    return _blogsEntryLocalService.addEntry(userId, title, subtitle,
129                            description, content, displayDateMonth, displayDateDay,
130                            displayDateYear, displayDateHour, displayDateMinute,
131                            allowPingbacks, allowTrackbacks, trackbacks, coverImageCaption,
132                            coverImageImageSelector, smallImageImageSelector, serviceContext);
133            }
134    
135            @Override
136            public void addEntryResources(
137                    com.liferay.portlet.blogs.model.BlogsEntry entry,
138                    boolean addGroupPermissions, boolean addGuestPermissions)
139                    throws com.liferay.portal.kernel.exception.PortalException {
140                    _blogsEntryLocalService.addEntryResources(entry, addGroupPermissions,
141                            addGuestPermissions);
142            }
143    
144            @Override
145            public void addEntryResources(
146                    com.liferay.portlet.blogs.model.BlogsEntry entry,
147                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
148                    throws com.liferay.portal.kernel.exception.PortalException {
149                    _blogsEntryLocalService.addEntryResources(entry, groupPermissions,
150                            guestPermissions);
151            }
152    
153            @Override
154            public void addEntryResources(long entryId, boolean addGroupPermissions,
155                    boolean addGuestPermissions)
156                    throws com.liferay.portal.kernel.exception.PortalException {
157                    _blogsEntryLocalService.addEntryResources(entryId, addGroupPermissions,
158                            addGuestPermissions);
159            }
160    
161            @Override
162            public void addEntryResources(long entryId,
163                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
164                    throws com.liferay.portal.kernel.exception.PortalException {
165                    _blogsEntryLocalService.addEntryResources(entryId, groupPermissions,
166                            guestPermissions);
167            }
168    
169            @Override
170            public void checkEntries()
171                    throws com.liferay.portal.kernel.exception.PortalException {
172                    _blogsEntryLocalService.checkEntries();
173            }
174    
175            /**
176            * Creates a new blogs entry with the primary key. Does not add the blogs entry to the database.
177            *
178            * @param entryId the primary key for the new blogs entry
179            * @return the new blogs entry
180            */
181            @Override
182            public com.liferay.portlet.blogs.model.BlogsEntry createBlogsEntry(
183                    long entryId) {
184                    return _blogsEntryLocalService.createBlogsEntry(entryId);
185            }
186    
187            /**
188            * Deletes the blogs entry from the database. Also notifies the appropriate model listeners.
189            *
190            * @param blogsEntry the blogs entry
191            * @return the blogs entry that was removed
192            */
193            @Override
194            public com.liferay.portlet.blogs.model.BlogsEntry deleteBlogsEntry(
195                    com.liferay.portlet.blogs.model.BlogsEntry blogsEntry) {
196                    return _blogsEntryLocalService.deleteBlogsEntry(blogsEntry);
197            }
198    
199            /**
200            * Deletes the blogs entry with the primary key from the database. Also notifies the appropriate model listeners.
201            *
202            * @param entryId the primary key of the blogs entry
203            * @return the blogs entry that was removed
204            * @throws PortalException if a blogs entry with the primary key could not be found
205            */
206            @Override
207            public com.liferay.portlet.blogs.model.BlogsEntry deleteBlogsEntry(
208                    long entryId)
209                    throws com.liferay.portal.kernel.exception.PortalException {
210                    return _blogsEntryLocalService.deleteBlogsEntry(entryId);
211            }
212    
213            @Override
214            public void deleteEntries(long groupId)
215                    throws com.liferay.portal.kernel.exception.PortalException {
216                    _blogsEntryLocalService.deleteEntries(groupId);
217            }
218    
219            @Override
220            public com.liferay.portlet.blogs.model.BlogsEntry deleteEntry(
221                    com.liferay.portlet.blogs.model.BlogsEntry entry)
222                    throws com.liferay.portal.kernel.exception.PortalException {
223                    return _blogsEntryLocalService.deleteEntry(entry);
224            }
225    
226            @Override
227            public void deleteEntry(long entryId)
228                    throws com.liferay.portal.kernel.exception.PortalException {
229                    _blogsEntryLocalService.deleteEntry(entryId);
230            }
231    
232            /**
233            * @throws PortalException
234            */
235            @Override
236            public com.liferay.portal.model.PersistedModel deletePersistedModel(
237                    com.liferay.portal.model.PersistedModel persistedModel)
238                    throws com.liferay.portal.kernel.exception.PortalException {
239                    return _blogsEntryLocalService.deletePersistedModel(persistedModel);
240            }
241    
242            @Override
243            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
244                    return _blogsEntryLocalService.dynamicQuery();
245            }
246    
247            /**
248            * Performs a dynamic query on the database and returns the matching rows.
249            *
250            * @param dynamicQuery the dynamic query
251            * @return the matching rows
252            */
253            @Override
254            public <T> java.util.List<T> dynamicQuery(
255                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
256                    return _blogsEntryLocalService.dynamicQuery(dynamicQuery);
257            }
258    
259            /**
260            * Performs a dynamic query on the database and returns a range of the matching rows.
261            *
262            * <p>
263            * 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.blogs.model.impl.BlogsEntryModelImpl}. 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.
264            * </p>
265            *
266            * @param dynamicQuery the dynamic query
267            * @param start the lower bound of the range of model instances
268            * @param end the upper bound of the range of model instances (not inclusive)
269            * @return the range of matching rows
270            */
271            @Override
272            public <T> java.util.List<T> dynamicQuery(
273                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
274                    int end) {
275                    return _blogsEntryLocalService.dynamicQuery(dynamicQuery, start, end);
276            }
277    
278            /**
279            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
280            *
281            * <p>
282            * 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.blogs.model.impl.BlogsEntryModelImpl}. 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.
283            * </p>
284            *
285            * @param dynamicQuery the dynamic query
286            * @param start the lower bound of the range of model instances
287            * @param end the upper bound of the range of model instances (not inclusive)
288            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
289            * @return the ordered range of matching rows
290            */
291            @Override
292            public <T> java.util.List<T> dynamicQuery(
293                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
294                    int end,
295                    com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) {
296                    return _blogsEntryLocalService.dynamicQuery(dynamicQuery, start, end,
297                            orderByComparator);
298            }
299    
300            /**
301            * Returns the number of rows matching the dynamic query.
302            *
303            * @param dynamicQuery the dynamic query
304            * @return the number of rows matching the dynamic query
305            */
306            @Override
307            public long dynamicQueryCount(
308                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
309                    return _blogsEntryLocalService.dynamicQueryCount(dynamicQuery);
310            }
311    
312            /**
313            * Returns the number of rows matching the dynamic query.
314            *
315            * @param dynamicQuery the dynamic query
316            * @param projection the projection to apply to the query
317            * @return the number of rows matching the dynamic query
318            */
319            @Override
320            public long dynamicQueryCount(
321                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
322                    com.liferay.portal.kernel.dao.orm.Projection projection) {
323                    return _blogsEntryLocalService.dynamicQueryCount(dynamicQuery,
324                            projection);
325            }
326    
327            @Override
328            public com.liferay.portal.kernel.repository.model.Folder fetchAttachmentsFolder(
329                    long userId, long groupId) {
330                    return _blogsEntryLocalService.fetchAttachmentsFolder(userId, groupId);
331            }
332    
333            @Override
334            public com.liferay.portlet.blogs.model.BlogsEntry fetchBlogsEntry(
335                    long entryId) {
336                    return _blogsEntryLocalService.fetchBlogsEntry(entryId);
337            }
338    
339            /**
340            * Returns the blogs entry matching the UUID and group.
341            *
342            * @param uuid the blogs entry's UUID
343            * @param groupId the primary key of the group
344            * @return the matching blogs entry, or <code>null</code> if a matching blogs entry could not be found
345            */
346            @Override
347            public com.liferay.portlet.blogs.model.BlogsEntry fetchBlogsEntryByUuidAndGroupId(
348                    java.lang.String uuid, long groupId) {
349                    return _blogsEntryLocalService.fetchBlogsEntryByUuidAndGroupId(uuid,
350                            groupId);
351            }
352    
353            @Override
354            public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() {
355                    return _blogsEntryLocalService.getActionableDynamicQuery();
356            }
357    
358            /**
359            * Returns the Spring bean ID for this bean.
360            *
361            * @return the Spring bean ID for this bean
362            */
363            @Override
364            public java.lang.String getBeanIdentifier() {
365                    return _blogsEntryLocalService.getBeanIdentifier();
366            }
367    
368            /**
369            * Returns a range of all the blogs entries.
370            *
371            * <p>
372            * 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.blogs.model.impl.BlogsEntryModelImpl}. 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.
373            * </p>
374            *
375            * @param start the lower bound of the range of blogs entries
376            * @param end the upper bound of the range of blogs entries (not inclusive)
377            * @return the range of blogs entries
378            */
379            @Override
380            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getBlogsEntries(
381                    int start, int end) {
382                    return _blogsEntryLocalService.getBlogsEntries(start, end);
383            }
384    
385            /**
386            * Returns all the blogs entries matching the UUID and company.
387            *
388            * @param uuid the UUID of the blogs entries
389            * @param companyId the primary key of the company
390            * @return the matching blogs entries, or an empty list if no matches were found
391            */
392            @Override
393            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getBlogsEntriesByUuidAndCompanyId(
394                    java.lang.String uuid, long companyId) {
395                    return _blogsEntryLocalService.getBlogsEntriesByUuidAndCompanyId(uuid,
396                            companyId);
397            }
398    
399            /**
400            * Returns a range of blogs entries matching the UUID and company.
401            *
402            * @param uuid the UUID of the blogs entries
403            * @param companyId the primary key of the company
404            * @param start the lower bound of the range of blogs entries
405            * @param end the upper bound of the range of blogs entries (not inclusive)
406            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
407            * @return the range of matching blogs entries, or an empty list if no matches were found
408            */
409            @Override
410            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getBlogsEntriesByUuidAndCompanyId(
411                    java.lang.String uuid, long companyId, int start, int end,
412                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.blogs.model.BlogsEntry> orderByComparator) {
413                    return _blogsEntryLocalService.getBlogsEntriesByUuidAndCompanyId(uuid,
414                            companyId, start, end, orderByComparator);
415            }
416    
417            /**
418            * Returns the number of blogs entries.
419            *
420            * @return the number of blogs entries
421            */
422            @Override
423            public int getBlogsEntriesCount() {
424                    return _blogsEntryLocalService.getBlogsEntriesCount();
425            }
426    
427            /**
428            * Returns the blogs entry with the primary key.
429            *
430            * @param entryId the primary key of the blogs entry
431            * @return the blogs entry
432            * @throws PortalException if a blogs entry with the primary key could not be found
433            */
434            @Override
435            public com.liferay.portlet.blogs.model.BlogsEntry getBlogsEntry(
436                    long entryId)
437                    throws com.liferay.portal.kernel.exception.PortalException {
438                    return _blogsEntryLocalService.getBlogsEntry(entryId);
439            }
440    
441            /**
442            * Returns the blogs entry matching the UUID and group.
443            *
444            * @param uuid the blogs entry's UUID
445            * @param groupId the primary key of the group
446            * @return the matching blogs entry
447            * @throws PortalException if a matching blogs entry could not be found
448            */
449            @Override
450            public com.liferay.portlet.blogs.model.BlogsEntry getBlogsEntryByUuidAndGroupId(
451                    java.lang.String uuid, long groupId)
452                    throws com.liferay.portal.kernel.exception.PortalException {
453                    return _blogsEntryLocalService.getBlogsEntryByUuidAndGroupId(uuid,
454                            groupId);
455            }
456    
457            @Override
458            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getCompanyEntries(
459                    long companyId, java.util.Date displayDate,
460                    com.liferay.portal.kernel.dao.orm.QueryDefinition<com.liferay.portlet.blogs.model.BlogsEntry> queryDefinition) {
461                    return _blogsEntryLocalService.getCompanyEntries(companyId,
462                            displayDate, queryDefinition);
463            }
464    
465            /**
466            * @deprecated As of 6.2.0, replaced by {@link #getCompanyEntries(long,
467            Date, QueryDefinition)}
468            */
469            @Deprecated
470            @Override
471            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getCompanyEntries(
472                    long companyId, java.util.Date displayDate, int status, int start,
473                    int end) {
474                    return _blogsEntryLocalService.getCompanyEntries(companyId,
475                            displayDate, status, start, end);
476            }
477    
478            /**
479            * @deprecated As of 6.2.0, replaced by {@link #getCompanyEntries(long,
480            Date, QueryDefinition)}
481            */
482            @Deprecated
483            @Override
484            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getCompanyEntries(
485                    long companyId, java.util.Date displayDate, int status, int start,
486                    int end,
487                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.blogs.model.BlogsEntry> obc) {
488                    return _blogsEntryLocalService.getCompanyEntries(companyId,
489                            displayDate, status, start, end, obc);
490            }
491    
492            @Override
493            public int getCompanyEntriesCount(long companyId,
494                    java.util.Date displayDate,
495                    com.liferay.portal.kernel.dao.orm.QueryDefinition<com.liferay.portlet.blogs.model.BlogsEntry> queryDefinition) {
496                    return _blogsEntryLocalService.getCompanyEntriesCount(companyId,
497                            displayDate, queryDefinition);
498            }
499    
500            /**
501            * @deprecated As of 6.2.0, replaced by {@link #getCompanyEntriesCount(long,
502            Date, QueryDefinition)}
503            */
504            @Deprecated
505            @Override
506            public int getCompanyEntriesCount(long companyId,
507                    java.util.Date displayDate, int status) {
508                    return _blogsEntryLocalService.getCompanyEntriesCount(companyId,
509                            displayDate, status);
510            }
511    
512            @Override
513            public com.liferay.portlet.blogs.model.BlogsEntry[] getEntriesPrevAndNext(
514                    long entryId)
515                    throws com.liferay.portal.kernel.exception.PortalException {
516                    return _blogsEntryLocalService.getEntriesPrevAndNext(entryId);
517            }
518    
519            @Override
520            public com.liferay.portlet.blogs.model.BlogsEntry getEntry(long entryId)
521                    throws com.liferay.portal.kernel.exception.PortalException {
522                    return _blogsEntryLocalService.getEntry(entryId);
523            }
524    
525            @Override
526            public com.liferay.portlet.blogs.model.BlogsEntry getEntry(long groupId,
527                    java.lang.String urlTitle)
528                    throws com.liferay.portal.kernel.exception.PortalException {
529                    return _blogsEntryLocalService.getEntry(groupId, urlTitle);
530            }
531    
532            @Override
533            public com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery getExportActionableDynamicQuery(
534                    com.liferay.portlet.exportimport.lar.PortletDataContext portletDataContext) {
535                    return _blogsEntryLocalService.getExportActionableDynamicQuery(portletDataContext);
536            }
537    
538            @Override
539            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
540                    long groupId, java.util.Date displayDate,
541                    com.liferay.portal.kernel.dao.orm.QueryDefinition<com.liferay.portlet.blogs.model.BlogsEntry> queryDefinition) {
542                    return _blogsEntryLocalService.getGroupEntries(groupId, displayDate,
543                            queryDefinition);
544            }
545    
546            /**
547            * @deprecated As of 6.2.0, replaced by {@link #getGroupEntries(long, Date,
548            QueryDefinition)}
549            */
550            @Deprecated
551            @Override
552            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
553                    long groupId, java.util.Date displayDate, int status, int start, int end) {
554                    return _blogsEntryLocalService.getGroupEntries(groupId, displayDate,
555                            status, start, end);
556            }
557    
558            /**
559            * @deprecated As of 6.2.0, replaced by {@link #getGroupEntries(long, Date,
560            QueryDefinition)}
561            */
562            @Deprecated
563            @Override
564            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
565                    long groupId, java.util.Date displayDate, int status, int start,
566                    int end,
567                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.blogs.model.BlogsEntry> obc) {
568                    return _blogsEntryLocalService.getGroupEntries(groupId, displayDate,
569                            status, start, end, obc);
570            }
571    
572            @Override
573            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
574                    long groupId,
575                    com.liferay.portal.kernel.dao.orm.QueryDefinition<com.liferay.portlet.blogs.model.BlogsEntry> queryDefinition) {
576                    return _blogsEntryLocalService.getGroupEntries(groupId, queryDefinition);
577            }
578    
579            /**
580            * @deprecated As of 6.2.0, replaced by {@link #getGroupEntries(long,
581            QueryDefinition)}
582            */
583            @Deprecated
584            @Override
585            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
586                    long groupId, int status, int start, int end) {
587                    return _blogsEntryLocalService.getGroupEntries(groupId, status, start,
588                            end);
589            }
590    
591            /**
592            * @deprecated As of 6.2.0, replaced by {@link #getGroupEntries(long,
593            QueryDefinition)}
594            */
595            @Deprecated
596            @Override
597            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
598                    long groupId, int status, int start, int end,
599                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.blogs.model.BlogsEntry> obc) {
600                    return _blogsEntryLocalService.getGroupEntries(groupId, status, start,
601                            end, obc);
602            }
603    
604            @Override
605            public int getGroupEntriesCount(long groupId, java.util.Date displayDate,
606                    com.liferay.portal.kernel.dao.orm.QueryDefinition<com.liferay.portlet.blogs.model.BlogsEntry> queryDefinition) {
607                    return _blogsEntryLocalService.getGroupEntriesCount(groupId,
608                            displayDate, queryDefinition);
609            }
610    
611            /**
612            * @deprecated As of 6.2.0, replaced by {@link #getGroupEntriesCount(long,
613            Date, QueryDefinition)}
614            */
615            @Deprecated
616            @Override
617            public int getGroupEntriesCount(long groupId, java.util.Date displayDate,
618                    int status) {
619                    return _blogsEntryLocalService.getGroupEntriesCount(groupId,
620                            displayDate, status);
621            }
622    
623            @Override
624            public int getGroupEntriesCount(long groupId,
625                    com.liferay.portal.kernel.dao.orm.QueryDefinition<com.liferay.portlet.blogs.model.BlogsEntry> queryDefinition) {
626                    return _blogsEntryLocalService.getGroupEntriesCount(groupId,
627                            queryDefinition);
628            }
629    
630            /**
631            * @deprecated As of 6.2.0, replaced by {@link #getGroupEntriesCount(long,
632            QueryDefinition)}
633            */
634            @Deprecated
635            @Override
636            public int getGroupEntriesCount(long groupId, int status) {
637                    return _blogsEntryLocalService.getGroupEntriesCount(groupId, status);
638            }
639    
640            @Override
641            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupUserEntries(
642                    long groupId, long userId, java.util.Date displayDate,
643                    com.liferay.portal.kernel.dao.orm.QueryDefinition<com.liferay.portlet.blogs.model.BlogsEntry> queryDefinition) {
644                    return _blogsEntryLocalService.getGroupUserEntries(groupId, userId,
645                            displayDate, queryDefinition);
646            }
647    
648            /**
649            * @deprecated As of 6.2.0, replaced by {@link #getGroupUserEntries(long,
650            long, Date, QueryDefinition)}
651            */
652            @Deprecated
653            @Override
654            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupUserEntries(
655                    long groupId, long userId, java.util.Date displayDate, int status,
656                    int start, int end) {
657                    return _blogsEntryLocalService.getGroupUserEntries(groupId, userId,
658                            displayDate, status, start, end);
659            }
660    
661            /**
662            * @deprecated As of 6.2.0, replaced by {@link #getGroupUserEntries(long,
663            long, Date, QueryDefinition)}
664            */
665            @Deprecated
666            @Override
667            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupUserEntries(
668                    long groupId, long userId, java.util.Date displayDate, int status,
669                    int start, int end,
670                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.blogs.model.BlogsEntry> obc) {
671                    return _blogsEntryLocalService.getGroupUserEntries(groupId, userId,
672                            displayDate, status, start, end, obc);
673            }
674    
675            @Override
676            public int getGroupUserEntriesCount(long groupId, long userId,
677                    java.util.Date displayDate,
678                    com.liferay.portal.kernel.dao.orm.QueryDefinition<com.liferay.portlet.blogs.model.BlogsEntry> queryDefinition) {
679                    return _blogsEntryLocalService.getGroupUserEntriesCount(groupId,
680                            userId, displayDate, queryDefinition);
681            }
682    
683            /**
684            * @deprecated As of 6.2.0, replaced by {@link
685            #getGroupUserEntriesCount(long, long, Date, QueryDefinition)}
686            */
687            @Deprecated
688            @Override
689            public int getGroupUserEntriesCount(long groupId, long userId,
690                    java.util.Date displayDate, int status) {
691                    return _blogsEntryLocalService.getGroupUserEntriesCount(groupId,
692                            userId, displayDate, status);
693            }
694    
695            @Override
696            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupsEntries(
697                    long companyId, long groupId, java.util.Date displayDate,
698                    com.liferay.portal.kernel.dao.orm.QueryDefinition<com.liferay.portlet.blogs.model.BlogsEntry> queryDefinition) {
699                    return _blogsEntryLocalService.getGroupsEntries(companyId, groupId,
700                            displayDate, queryDefinition);
701            }
702    
703            /**
704            * @deprecated As of 6.2.0, replaced by {@link #getGroupsEntries(long, long,
705            Date, QueryDefinition)}
706            */
707            @Deprecated
708            @Override
709            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupsEntries(
710                    long companyId, long groupId, java.util.Date displayDate, int status,
711                    int start, int end) {
712                    return _blogsEntryLocalService.getGroupsEntries(companyId, groupId,
713                            displayDate, status, start, end);
714            }
715    
716            @Override
717            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getNoAssetEntries() {
718                    return _blogsEntryLocalService.getNoAssetEntries();
719            }
720    
721            @Override
722            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getOrganizationEntries(
723                    long organizationId, java.util.Date displayDate,
724                    com.liferay.portal.kernel.dao.orm.QueryDefinition<com.liferay.portlet.blogs.model.BlogsEntry> queryDefinition) {
725                    return _blogsEntryLocalService.getOrganizationEntries(organizationId,
726                            displayDate, queryDefinition);
727            }
728    
729            /**
730            * @deprecated As of 6.2.0, replaced by {@link #getOrganizationEntries(long,
731            Date, QueryDefinition)}
732            */
733            @Deprecated
734            @Override
735            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getOrganizationEntries(
736                    long organizationId, java.util.Date displayDate, int status, int start,
737                    int end) {
738                    return _blogsEntryLocalService.getOrganizationEntries(organizationId,
739                            displayDate, status, start, end);
740            }
741    
742            /**
743            * @deprecated As of 6.2.0, replaced by {@link #getOrganizationEntries(long,
744            Date, QueryDefinition)}
745            */
746            @Deprecated
747            @Override
748            public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getOrganizationEntries(
749                    long organizationId, java.util.Date displayDate, int status, int start,
750                    int end,
751                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.blogs.model.BlogsEntry> obc) {
752                    return _blogsEntryLocalService.getOrganizationEntries(organizationId,
753                            displayDate, status, start, end, obc);
754            }
755    
756            @Override
757            public int getOrganizationEntriesCount(long organizationId,
758                    java.util.Date displayDate,
759                    com.liferay.portal.kernel.dao.orm.QueryDefinition<com.liferay.portlet.blogs.model.BlogsEntry> queryDefinition) {
760                    return _blogsEntryLocalService.getOrganizationEntriesCount(organizationId,
761                            displayDate, queryDefinition);
762            }
763    
764            /**
765            * @deprecated As of 6.2.0, replaced by {@link
766            #getOrganizationEntriesCount(long, Date, QueryDefinition)}
767            */
768            @Deprecated
769            @Override
770            public int getOrganizationEntriesCount(long organizationId,
771                    java.util.Date displayDate, int status) {
772                    return _blogsEntryLocalService.getOrganizationEntriesCount(organizationId,
773                            displayDate, status);
774            }
775    
776            @Override
777            public com.liferay.portal.model.PersistedModel getPersistedModel(
778                    java.io.Serializable primaryKeyObj)
779                    throws com.liferay.portal.kernel.exception.PortalException {
780                    return _blogsEntryLocalService.getPersistedModel(primaryKeyObj);
781            }
782    
783            @Override
784            public void moveEntriesToTrash(long groupId, long userId)
785                    throws com.liferay.portal.kernel.exception.PortalException {
786                    _blogsEntryLocalService.moveEntriesToTrash(groupId, userId);
787            }
788    
789            /**
790            * Moves the blogs entry to the recycle bin. Social activity counters for
791            * this entry get disabled.
792            *
793            * @param userId the primary key of the user moving the blogs entry
794            * @param entry the blogs entry to be moved
795            * @return the moved blogs entry
796            * @throws PortalException if a user with the primary key could not be found
797            or if the blogs entry owner's social activity counter could not
798            be updated
799            */
800            @Override
801            public com.liferay.portlet.blogs.model.BlogsEntry moveEntryToTrash(
802                    long userId, com.liferay.portlet.blogs.model.BlogsEntry entry)
803                    throws com.liferay.portal.kernel.exception.PortalException {
804                    return _blogsEntryLocalService.moveEntryToTrash(userId, entry);
805            }
806    
807            /**
808            * Moves the blogs entry with the ID to the recycle bin.
809            *
810            * @param userId the primary key of the user moving the blogs entry
811            * @param entryId the primary key of the blogs entry to be moved
812            * @return the moved blogs entry
813            * @throws PortalException if a user or blogs entry with the primary key
814            could not be found or if the blogs entry owner's social activity
815            counter could not be updated
816            */
817            @Override
818            public com.liferay.portlet.blogs.model.BlogsEntry moveEntryToTrash(
819                    long userId, long entryId)
820                    throws com.liferay.portal.kernel.exception.PortalException {
821                    return _blogsEntryLocalService.moveEntryToTrash(userId, entryId);
822            }
823    
824            /**
825            * Restores the blogs entry with the ID from the recycle bin. Social
826            * activity counters for this entry get activated.
827            *
828            * @param userId the primary key of the user restoring the blogs entry
829            * @param entryId the primary key of the blogs entry to be restored
830            * @return the restored blogs entry from the recycle bin
831            * @throws PortalException if a user or blogs entry with the primary key
832            could not be found or if the blogs entry owner's social activity
833            counter could not be updated
834            */
835            @Override
836            public com.liferay.portlet.blogs.model.BlogsEntry restoreEntryFromTrash(
837                    long userId, long entryId)
838                    throws com.liferay.portal.kernel.exception.PortalException {
839                    return _blogsEntryLocalService.restoreEntryFromTrash(userId, entryId);
840            }
841    
842            /**
843            * Sets the Spring bean ID for this bean.
844            *
845            * @param beanIdentifier the Spring bean ID for this bean
846            */
847            @Override
848            public void setBeanIdentifier(java.lang.String beanIdentifier) {
849                    _blogsEntryLocalService.setBeanIdentifier(beanIdentifier);
850            }
851    
852            @Override
853            public void subscribe(long userId, long groupId)
854                    throws com.liferay.portal.kernel.exception.PortalException {
855                    _blogsEntryLocalService.subscribe(userId, groupId);
856            }
857    
858            @Override
859            public void unsubscribe(long userId, long groupId)
860                    throws com.liferay.portal.kernel.exception.PortalException {
861                    _blogsEntryLocalService.unsubscribe(userId, groupId);
862            }
863    
864            @Override
865            public void updateAsset(long userId,
866                    com.liferay.portlet.blogs.model.BlogsEntry entry,
867                    long[] assetCategoryIds, java.lang.String[] assetTagNames,
868                    long[] assetLinkEntryIds)
869                    throws com.liferay.portal.kernel.exception.PortalException {
870                    _blogsEntryLocalService.updateAsset(userId, entry, assetCategoryIds,
871                            assetTagNames, assetLinkEntryIds);
872            }
873    
874            /**
875            * Updates the blogs entry in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
876            *
877            * @param blogsEntry the blogs entry
878            * @return the blogs entry that was updated
879            */
880            @Override
881            public com.liferay.portlet.blogs.model.BlogsEntry updateBlogsEntry(
882                    com.liferay.portlet.blogs.model.BlogsEntry blogsEntry) {
883                    return _blogsEntryLocalService.updateBlogsEntry(blogsEntry);
884            }
885    
886            @Override
887            public com.liferay.portlet.blogs.model.BlogsEntry updateEntry(long userId,
888                    long entryId, java.lang.String title, java.lang.String content,
889                    com.liferay.portal.service.ServiceContext serviceContext)
890                    throws com.liferay.portal.kernel.exception.PortalException {
891                    return _blogsEntryLocalService.updateEntry(userId, entryId, title,
892                            content, serviceContext);
893            }
894    
895            /**
896            * @deprecated As of 7.0.0, replaced by {@link #updateEntry(long, long,
897            String, String, String, String, int, int, int, int, int,
898            boolean, boolean, String[], String, ImageSelector,
899            ImageSelector, ServiceContext)}
900            */
901            @Deprecated
902            @Override
903            public com.liferay.portlet.blogs.model.BlogsEntry updateEntry(long userId,
904                    long entryId, java.lang.String title, java.lang.String description,
905                    java.lang.String content, int displayDateMonth, int displayDateDay,
906                    int displayDateYear, int displayDateHour, int displayDateMinute,
907                    boolean allowPingbacks, boolean allowTrackbacks,
908                    java.lang.String[] trackbacks, boolean smallImage,
909                    java.lang.String smallImageURL, java.lang.String smallImageFileName,
910                    java.io.InputStream smallImageInputStream,
911                    com.liferay.portal.service.ServiceContext serviceContext)
912                    throws com.liferay.portal.kernel.exception.PortalException {
913                    return _blogsEntryLocalService.updateEntry(userId, entryId, title,
914                            description, content, displayDateMonth, displayDateDay,
915                            displayDateYear, displayDateHour, displayDateMinute,
916                            allowPingbacks, allowTrackbacks, trackbacks, smallImage,
917                            smallImageURL, smallImageFileName, smallImageInputStream,
918                            serviceContext);
919            }
920    
921            @Override
922            public com.liferay.portlet.blogs.model.BlogsEntry updateEntry(long userId,
923                    long entryId, java.lang.String title, java.lang.String subtitle,
924                    java.lang.String description, java.lang.String content,
925                    java.util.Date displayDate, boolean allowPingbacks,
926                    boolean allowTrackbacks, java.lang.String[] trackbacks,
927                    java.lang.String coverImageCaption,
928                    com.liferay.portal.kernel.servlet.taglib.ui.ImageSelector coverImageImageSelector,
929                    com.liferay.portal.kernel.servlet.taglib.ui.ImageSelector smallImageImageSelector,
930                    com.liferay.portal.service.ServiceContext serviceContext)
931                    throws com.liferay.portal.kernel.exception.PortalException {
932                    return _blogsEntryLocalService.updateEntry(userId, entryId, title,
933                            subtitle, description, content, displayDate, allowPingbacks,
934                            allowTrackbacks, trackbacks, coverImageCaption,
935                            coverImageImageSelector, smallImageImageSelector, serviceContext);
936            }
937    
938            @Override
939            public com.liferay.portlet.blogs.model.BlogsEntry updateEntry(long userId,
940                    long entryId, java.lang.String title, java.lang.String subtitle,
941                    java.lang.String description, java.lang.String content,
942                    int displayDateMonth, int displayDateDay, int displayDateYear,
943                    int displayDateHour, int displayDateMinute, boolean allowPingbacks,
944                    boolean allowTrackbacks, java.lang.String[] trackbacks,
945                    java.lang.String coverImageCaption,
946                    com.liferay.portal.kernel.servlet.taglib.ui.ImageSelector coverImageImageSelector,
947                    com.liferay.portal.kernel.servlet.taglib.ui.ImageSelector smallImageImageSelector,
948                    com.liferay.portal.service.ServiceContext serviceContext)
949                    throws com.liferay.portal.kernel.exception.PortalException {
950                    return _blogsEntryLocalService.updateEntry(userId, entryId, title,
951                            subtitle, description, content, displayDateMonth, displayDateDay,
952                            displayDateYear, displayDateHour, displayDateMinute,
953                            allowPingbacks, allowTrackbacks, trackbacks, coverImageCaption,
954                            coverImageImageSelector, smallImageImageSelector, serviceContext);
955            }
956    
957            @Override
958            public void updateEntryResources(
959                    com.liferay.portlet.blogs.model.BlogsEntry entry,
960                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
961                    throws com.liferay.portal.kernel.exception.PortalException {
962                    _blogsEntryLocalService.updateEntryResources(entry, groupPermissions,
963                            guestPermissions);
964            }
965    
966            /**
967            * @deprecated As of 7.0.0, replaced by {@link #updateStatus(long, long,
968            int, ServiceContext, Map)}
969            */
970            @Deprecated
971            @Override
972            public com.liferay.portlet.blogs.model.BlogsEntry updateStatus(
973                    long userId, long entryId, int status,
974                    com.liferay.portal.service.ServiceContext serviceContext)
975                    throws com.liferay.portal.kernel.exception.PortalException {
976                    return _blogsEntryLocalService.updateStatus(userId, entryId, status,
977                            serviceContext);
978            }
979    
980            @Override
981            public com.liferay.portlet.blogs.model.BlogsEntry updateStatus(
982                    long userId, long entryId, int status,
983                    com.liferay.portal.service.ServiceContext serviceContext,
984                    java.util.Map<java.lang.String, java.io.Serializable> workflowContext)
985                    throws com.liferay.portal.kernel.exception.PortalException {
986                    return _blogsEntryLocalService.updateStatus(userId, entryId, status,
987                            serviceContext, workflowContext);
988            }
989    
990            /**
991             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
992             */
993            @Deprecated
994            public BlogsEntryLocalService getWrappedBlogsEntryLocalService() {
995                    return _blogsEntryLocalService;
996            }
997    
998            /**
999             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
1000             */
1001            @Deprecated
1002            public void setWrappedBlogsEntryLocalService(
1003                    BlogsEntryLocalService blogsEntryLocalService) {
1004                    _blogsEntryLocalService = blogsEntryLocalService;
1005            }
1006    
1007            @Override
1008            public BlogsEntryLocalService getWrappedService() {
1009                    return _blogsEntryLocalService;
1010            }
1011    
1012            @Override
1013            public void setWrappedService(BlogsEntryLocalService blogsEntryLocalService) {
1014                    _blogsEntryLocalService = blogsEntryLocalService;
1015            }
1016    
1017            private BlogsEntryLocalService _blogsEntryLocalService;
1018    }