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