001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.journal.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * <p>
021     * This class is a wrapper for {@link JournalArticleLocalService}.
022     * </p>
023     *
024     * @author    Brian Wing Shun Chan
025     * @see       JournalArticleLocalService
026     * @generated
027     */
028    public class JournalArticleLocalServiceWrapper
029            implements JournalArticleLocalService,
030                    ServiceWrapper<JournalArticleLocalService> {
031            public JournalArticleLocalServiceWrapper(
032                    JournalArticleLocalService journalArticleLocalService) {
033                    _journalArticleLocalService = journalArticleLocalService;
034            }
035    
036            /**
037            * Adds the journal article to the database. Also notifies the appropriate model listeners.
038            *
039            * @param journalArticle the journal article
040            * @return the journal article that was added
041            * @throws SystemException if a system exception occurred
042            */
043            public com.liferay.portlet.journal.model.JournalArticle addJournalArticle(
044                    com.liferay.portlet.journal.model.JournalArticle journalArticle)
045                    throws com.liferay.portal.kernel.exception.SystemException {
046                    return _journalArticleLocalService.addJournalArticle(journalArticle);
047            }
048    
049            /**
050            * Creates a new journal article with the primary key. Does not add the journal article to the database.
051            *
052            * @param id the primary key for the new journal article
053            * @return the new journal article
054            */
055            public com.liferay.portlet.journal.model.JournalArticle createJournalArticle(
056                    long id) {
057                    return _journalArticleLocalService.createJournalArticle(id);
058            }
059    
060            /**
061            * Deletes the journal article with the primary key from the database. Also notifies the appropriate model listeners.
062            *
063            * @param id the primary key of the journal article
064            * @throws PortalException if a journal article with the primary key could not be found
065            * @throws SystemException if a system exception occurred
066            */
067            public void deleteJournalArticle(long id)
068                    throws com.liferay.portal.kernel.exception.PortalException,
069                            com.liferay.portal.kernel.exception.SystemException {
070                    _journalArticleLocalService.deleteJournalArticle(id);
071            }
072    
073            /**
074            * Deletes the journal article from the database. Also notifies the appropriate model listeners.
075            *
076            * @param journalArticle the journal article
077            * @throws SystemException if a system exception occurred
078            */
079            public void deleteJournalArticle(
080                    com.liferay.portlet.journal.model.JournalArticle journalArticle)
081                    throws com.liferay.portal.kernel.exception.SystemException {
082                    _journalArticleLocalService.deleteJournalArticle(journalArticle);
083            }
084    
085            /**
086            * Performs a dynamic query on the database and returns the matching rows.
087            *
088            * @param dynamicQuery the dynamic query
089            * @return the matching rows
090            * @throws SystemException if a system exception occurred
091            */
092            @SuppressWarnings("rawtypes")
093            public java.util.List dynamicQuery(
094                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
095                    throws com.liferay.portal.kernel.exception.SystemException {
096                    return _journalArticleLocalService.dynamicQuery(dynamicQuery);
097            }
098    
099            /**
100            * Performs a dynamic query on the database and returns a range of the matching rows.
101            *
102            * <p>
103            * 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.
104            * </p>
105            *
106            * @param dynamicQuery the dynamic query
107            * @param start the lower bound of the range of model instances
108            * @param end the upper bound of the range of model instances (not inclusive)
109            * @return the range of matching rows
110            * @throws SystemException if a system exception occurred
111            */
112            @SuppressWarnings("rawtypes")
113            public java.util.List dynamicQuery(
114                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
115                    int end) throws com.liferay.portal.kernel.exception.SystemException {
116                    return _journalArticleLocalService.dynamicQuery(dynamicQuery, start, end);
117            }
118    
119            /**
120            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
121            *
122            * <p>
123            * 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.
124            * </p>
125            *
126            * @param dynamicQuery the dynamic query
127            * @param start the lower bound of the range of model instances
128            * @param end the upper bound of the range of model instances (not inclusive)
129            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
130            * @return the ordered range of matching rows
131            * @throws SystemException if a system exception occurred
132            */
133            @SuppressWarnings("rawtypes")
134            public java.util.List dynamicQuery(
135                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
136                    int end,
137                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
138                    throws com.liferay.portal.kernel.exception.SystemException {
139                    return _journalArticleLocalService.dynamicQuery(dynamicQuery, start,
140                            end, orderByComparator);
141            }
142    
143            /**
144            * Returns the number of rows that match the dynamic query.
145            *
146            * @param dynamicQuery the dynamic query
147            * @return the number of rows that match the dynamic query
148            * @throws SystemException if a system exception occurred
149            */
150            public long dynamicQueryCount(
151                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
152                    throws com.liferay.portal.kernel.exception.SystemException {
153                    return _journalArticleLocalService.dynamicQueryCount(dynamicQuery);
154            }
155    
156            public com.liferay.portlet.journal.model.JournalArticle fetchJournalArticle(
157                    long id) throws com.liferay.portal.kernel.exception.SystemException {
158                    return _journalArticleLocalService.fetchJournalArticle(id);
159            }
160    
161            /**
162            * Returns the journal article with the primary key.
163            *
164            * @param id the primary key of the journal article
165            * @return the journal article
166            * @throws PortalException if a journal article with the primary key could not be found
167            * @throws SystemException if a system exception occurred
168            */
169            public com.liferay.portlet.journal.model.JournalArticle getJournalArticle(
170                    long id)
171                    throws com.liferay.portal.kernel.exception.PortalException,
172                            com.liferay.portal.kernel.exception.SystemException {
173                    return _journalArticleLocalService.getJournalArticle(id);
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 _journalArticleLocalService.getPersistedModel(primaryKeyObj);
181            }
182    
183            /**
184            * Returns the journal article with the UUID in the group.
185            *
186            * @param uuid the UUID of journal article
187            * @param groupId the group id of the journal article
188            * @return the journal article
189            * @throws PortalException if a journal article with the UUID in the group could not be found
190            * @throws SystemException if a system exception occurred
191            */
192            public com.liferay.portlet.journal.model.JournalArticle getJournalArticleByUuidAndGroupId(
193                    java.lang.String uuid, long groupId)
194                    throws com.liferay.portal.kernel.exception.PortalException,
195                            com.liferay.portal.kernel.exception.SystemException {
196                    return _journalArticleLocalService.getJournalArticleByUuidAndGroupId(uuid,
197                            groupId);
198            }
199    
200            /**
201            * Returns a range of all the journal articles.
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 journal articles
208            * @param end the upper bound of the range of journal articles (not inclusive)
209            * @return the range of journal articles
210            * @throws SystemException if a system exception occurred
211            */
212            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getJournalArticles(
213                    int start, int end)
214                    throws com.liferay.portal.kernel.exception.SystemException {
215                    return _journalArticleLocalService.getJournalArticles(start, end);
216            }
217    
218            /**
219            * Returns the number of journal articles.
220            *
221            * @return the number of journal articles
222            * @throws SystemException if a system exception occurred
223            */
224            public int getJournalArticlesCount()
225                    throws com.liferay.portal.kernel.exception.SystemException {
226                    return _journalArticleLocalService.getJournalArticlesCount();
227            }
228    
229            /**
230            * Updates the journal article in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
231            *
232            * @param journalArticle the journal article
233            * @return the journal article that was updated
234            * @throws SystemException if a system exception occurred
235            */
236            public com.liferay.portlet.journal.model.JournalArticle updateJournalArticle(
237                    com.liferay.portlet.journal.model.JournalArticle journalArticle)
238                    throws com.liferay.portal.kernel.exception.SystemException {
239                    return _journalArticleLocalService.updateJournalArticle(journalArticle);
240            }
241    
242            /**
243            * Updates the journal article in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
244            *
245            * @param journalArticle the journal article
246            * @param merge whether to merge the journal article 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 journal article that was updated
248            * @throws SystemException if a system exception occurred
249            */
250            public com.liferay.portlet.journal.model.JournalArticle updateJournalArticle(
251                    com.liferay.portlet.journal.model.JournalArticle journalArticle,
252                    boolean merge)
253                    throws com.liferay.portal.kernel.exception.SystemException {
254                    return _journalArticleLocalService.updateJournalArticle(journalArticle,
255                            merge);
256            }
257    
258            /**
259            * Returns the Spring bean ID for this bean.
260            *
261            * @return the Spring bean ID for this bean
262            */
263            public java.lang.String getBeanIdentifier() {
264                    return _journalArticleLocalService.getBeanIdentifier();
265            }
266    
267            /**
268            * Sets the Spring bean ID for this bean.
269            *
270            * @param beanIdentifier the Spring bean ID for this bean
271            */
272            public void setBeanIdentifier(java.lang.String beanIdentifier) {
273                    _journalArticleLocalService.setBeanIdentifier(beanIdentifier);
274            }
275    
276            public com.liferay.portlet.journal.model.JournalArticle addArticle(
277                    long userId, long groupId, long classNameId, long classPK,
278                    java.lang.String articleId, boolean autoArticleId, double version,
279                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
280                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
281                    java.lang.String content, java.lang.String type,
282                    java.lang.String structureId, java.lang.String templateId,
283                    java.lang.String layoutUuid, int displayDateMonth, int displayDateDay,
284                    int displayDateYear, int displayDateHour, int displayDateMinute,
285                    int expirationDateMonth, int expirationDateDay, int expirationDateYear,
286                    int expirationDateHour, int expirationDateMinute, boolean neverExpire,
287                    int reviewDateMonth, int reviewDateDay, int reviewDateYear,
288                    int reviewDateHour, int reviewDateMinute, boolean neverReview,
289                    boolean indexable, boolean smallImage, java.lang.String smallImageURL,
290                    java.io.File smallImageFile,
291                    java.util.Map<java.lang.String, byte[]> images,
292                    java.lang.String articleURL,
293                    com.liferay.portal.service.ServiceContext serviceContext)
294                    throws com.liferay.portal.kernel.exception.PortalException,
295                            com.liferay.portal.kernel.exception.SystemException {
296                    return _journalArticleLocalService.addArticle(userId, groupId,
297                            classNameId, classPK, articleId, autoArticleId, version, titleMap,
298                            descriptionMap, content, type, structureId, templateId, layoutUuid,
299                            displayDateMonth, displayDateDay, displayDateYear, displayDateHour,
300                            displayDateMinute, expirationDateMonth, expirationDateDay,
301                            expirationDateYear, expirationDateHour, expirationDateMinute,
302                            neverExpire, reviewDateMonth, reviewDateDay, reviewDateYear,
303                            reviewDateHour, reviewDateMinute, neverReview, indexable,
304                            smallImage, smallImageURL, smallImageFile, images, articleURL,
305                            serviceContext);
306            }
307    
308            public void addArticleResources(
309                    com.liferay.portlet.journal.model.JournalArticle article,
310                    boolean addGroupPermissions, boolean addGuestPermissions)
311                    throws com.liferay.portal.kernel.exception.PortalException,
312                            com.liferay.portal.kernel.exception.SystemException {
313                    _journalArticleLocalService.addArticleResources(article,
314                            addGroupPermissions, addGuestPermissions);
315            }
316    
317            public void addArticleResources(
318                    com.liferay.portlet.journal.model.JournalArticle article,
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                    _journalArticleLocalService.addArticleResources(article,
323                            groupPermissions, guestPermissions);
324            }
325    
326            public void addArticleResources(long groupId, java.lang.String articleId,
327                    boolean addGroupPermissions, boolean addGuestPermissions)
328                    throws com.liferay.portal.kernel.exception.PortalException,
329                            com.liferay.portal.kernel.exception.SystemException {
330                    _journalArticleLocalService.addArticleResources(groupId, articleId,
331                            addGroupPermissions, addGuestPermissions);
332            }
333    
334            public void addArticleResources(long groupId, java.lang.String articleId,
335                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
336                    throws com.liferay.portal.kernel.exception.PortalException,
337                            com.liferay.portal.kernel.exception.SystemException {
338                    _journalArticleLocalService.addArticleResources(groupId, articleId,
339                            groupPermissions, guestPermissions);
340            }
341    
342            public com.liferay.portlet.journal.model.JournalArticle checkArticleResourcePrimKey(
343                    long groupId, java.lang.String articleId, double version)
344                    throws com.liferay.portal.kernel.exception.PortalException,
345                            com.liferay.portal.kernel.exception.SystemException {
346                    return _journalArticleLocalService.checkArticleResourcePrimKey(groupId,
347                            articleId, version);
348            }
349    
350            public void checkArticles()
351                    throws com.liferay.portal.kernel.exception.PortalException,
352                            com.liferay.portal.kernel.exception.SystemException {
353                    _journalArticleLocalService.checkArticles();
354            }
355    
356            public void checkNewLine(long groupId, java.lang.String articleId,
357                    double version)
358                    throws com.liferay.portal.kernel.exception.PortalException,
359                            com.liferay.portal.kernel.exception.SystemException {
360                    _journalArticleLocalService.checkNewLine(groupId, articleId, version);
361            }
362    
363            public void checkStructure(long groupId, java.lang.String articleId,
364                    double version)
365                    throws com.liferay.portal.kernel.exception.PortalException,
366                            com.liferay.portal.kernel.exception.SystemException {
367                    _journalArticleLocalService.checkStructure(groupId, articleId, version);
368            }
369    
370            public com.liferay.portlet.journal.model.JournalArticle copyArticle(
371                    long userId, long groupId, java.lang.String oldArticleId,
372                    java.lang.String newArticleId, boolean autoArticleId, double version)
373                    throws com.liferay.portal.kernel.exception.PortalException,
374                            com.liferay.portal.kernel.exception.SystemException {
375                    return _journalArticleLocalService.copyArticle(userId, groupId,
376                            oldArticleId, newArticleId, autoArticleId, version);
377            }
378    
379            public void deleteArticle(
380                    com.liferay.portlet.journal.model.JournalArticle article,
381                    java.lang.String articleURL,
382                    com.liferay.portal.service.ServiceContext serviceContext)
383                    throws com.liferay.portal.kernel.exception.PortalException,
384                            com.liferay.portal.kernel.exception.SystemException {
385                    _journalArticleLocalService.deleteArticle(article, articleURL,
386                            serviceContext);
387            }
388    
389            public void deleteArticle(long groupId, java.lang.String articleId,
390                    double version, java.lang.String articleURL,
391                    com.liferay.portal.service.ServiceContext serviceContext)
392                    throws com.liferay.portal.kernel.exception.PortalException,
393                            com.liferay.portal.kernel.exception.SystemException {
394                    _journalArticleLocalService.deleteArticle(groupId, articleId, version,
395                            articleURL, serviceContext);
396            }
397    
398            public void deleteArticle(long groupId, java.lang.String articleId,
399                    com.liferay.portal.service.ServiceContext serviceContext)
400                    throws com.liferay.portal.kernel.exception.PortalException,
401                            com.liferay.portal.kernel.exception.SystemException {
402                    _journalArticleLocalService.deleteArticle(groupId, articleId,
403                            serviceContext);
404            }
405    
406            public void deleteArticles(long groupId)
407                    throws com.liferay.portal.kernel.exception.PortalException,
408                            com.liferay.portal.kernel.exception.SystemException {
409                    _journalArticleLocalService.deleteArticles(groupId);
410            }
411    
412            public void deleteLayoutArticleReferences(long groupId,
413                    java.lang.String layoutUuid)
414                    throws com.liferay.portal.kernel.exception.SystemException {
415                    _journalArticleLocalService.deleteLayoutArticleReferences(groupId,
416                            layoutUuid);
417            }
418    
419            public com.liferay.portlet.journal.model.JournalArticle expireArticle(
420                    long userId, long groupId, java.lang.String articleId, double version,
421                    java.lang.String articleURL,
422                    com.liferay.portal.service.ServiceContext serviceContext)
423                    throws com.liferay.portal.kernel.exception.PortalException,
424                            com.liferay.portal.kernel.exception.SystemException {
425                    return _journalArticleLocalService.expireArticle(userId, groupId,
426                            articleId, version, articleURL, serviceContext);
427            }
428    
429            public void expireArticle(long userId, long groupId,
430                    java.lang.String articleId, java.lang.String articleURL,
431                    com.liferay.portal.service.ServiceContext serviceContext)
432                    throws com.liferay.portal.kernel.exception.PortalException,
433                            com.liferay.portal.kernel.exception.SystemException {
434                    _journalArticleLocalService.expireArticle(userId, groupId, articleId,
435                            articleURL, serviceContext);
436            }
437    
438            public com.liferay.portlet.journal.model.JournalArticle getArticle(long id)
439                    throws com.liferay.portal.kernel.exception.PortalException,
440                            com.liferay.portal.kernel.exception.SystemException {
441                    return _journalArticleLocalService.getArticle(id);
442            }
443    
444            public com.liferay.portlet.journal.model.JournalArticle getArticle(
445                    long groupId, java.lang.String articleId)
446                    throws com.liferay.portal.kernel.exception.PortalException,
447                            com.liferay.portal.kernel.exception.SystemException {
448                    return _journalArticleLocalService.getArticle(groupId, articleId);
449            }
450    
451            public com.liferay.portlet.journal.model.JournalArticle getArticle(
452                    long groupId, java.lang.String articleId, double version)
453                    throws com.liferay.portal.kernel.exception.PortalException,
454                            com.liferay.portal.kernel.exception.SystemException {
455                    return _journalArticleLocalService.getArticle(groupId, articleId,
456                            version);
457            }
458    
459            public com.liferay.portlet.journal.model.JournalArticle getArticle(
460                    long groupId, java.lang.String className, long classPK)
461                    throws com.liferay.portal.kernel.exception.PortalException,
462                            com.liferay.portal.kernel.exception.SystemException {
463                    return _journalArticleLocalService.getArticle(groupId, className,
464                            classPK);
465            }
466    
467            public com.liferay.portlet.journal.model.JournalArticle getArticleByUrlTitle(
468                    long groupId, java.lang.String urlTitle)
469                    throws com.liferay.portal.kernel.exception.PortalException,
470                            com.liferay.portal.kernel.exception.SystemException {
471                    return _journalArticleLocalService.getArticleByUrlTitle(groupId,
472                            urlTitle);
473            }
474    
475            public java.lang.String getArticleContent(
476                    com.liferay.portlet.journal.model.JournalArticle article,
477                    java.lang.String templateId, java.lang.String viewMode,
478                    java.lang.String languageId,
479                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
480                    throws com.liferay.portal.kernel.exception.PortalException,
481                            com.liferay.portal.kernel.exception.SystemException {
482                    return _journalArticleLocalService.getArticleContent(article,
483                            templateId, viewMode, languageId, themeDisplay);
484            }
485    
486            public java.lang.String getArticleContent(long groupId,
487                    java.lang.String articleId, double version, java.lang.String viewMode,
488                    java.lang.String templateId, java.lang.String languageId,
489                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
490                    throws com.liferay.portal.kernel.exception.PortalException,
491                            com.liferay.portal.kernel.exception.SystemException {
492                    return _journalArticleLocalService.getArticleContent(groupId,
493                            articleId, version, viewMode, templateId, languageId, themeDisplay);
494            }
495    
496            public java.lang.String getArticleContent(long groupId,
497                    java.lang.String articleId, double version, java.lang.String viewMode,
498                    java.lang.String languageId,
499                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
500                    throws com.liferay.portal.kernel.exception.PortalException,
501                            com.liferay.portal.kernel.exception.SystemException {
502                    return _journalArticleLocalService.getArticleContent(groupId,
503                            articleId, version, viewMode, languageId, themeDisplay);
504            }
505    
506            public java.lang.String getArticleContent(long groupId,
507                    java.lang.String articleId, java.lang.String viewMode,
508                    java.lang.String templateId, java.lang.String languageId,
509                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
510                    throws com.liferay.portal.kernel.exception.PortalException,
511                            com.liferay.portal.kernel.exception.SystemException {
512                    return _journalArticleLocalService.getArticleContent(groupId,
513                            articleId, viewMode, templateId, languageId, themeDisplay);
514            }
515    
516            public java.lang.String getArticleContent(long groupId,
517                    java.lang.String articleId, java.lang.String viewMode,
518                    java.lang.String languageId,
519                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
520                    throws com.liferay.portal.kernel.exception.PortalException,
521                            com.liferay.portal.kernel.exception.SystemException {
522                    return _journalArticleLocalService.getArticleContent(groupId,
523                            articleId, viewMode, languageId, themeDisplay);
524            }
525    
526            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
527                    com.liferay.portlet.journal.model.JournalArticle article,
528                    java.lang.String templateId, java.lang.String viewMode,
529                    java.lang.String languageId, int page, java.lang.String xmlRequest,
530                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
531                    throws com.liferay.portal.kernel.exception.PortalException,
532                            com.liferay.portal.kernel.exception.SystemException {
533                    return _journalArticleLocalService.getArticleDisplay(article,
534                            templateId, viewMode, languageId, page, xmlRequest, themeDisplay);
535            }
536    
537            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
538                    long groupId, java.lang.String articleId, double version,
539                    java.lang.String templateId, java.lang.String viewMode,
540                    java.lang.String languageId, int page, java.lang.String xmlRequest,
541                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
542                    throws com.liferay.portal.kernel.exception.PortalException,
543                            com.liferay.portal.kernel.exception.SystemException {
544                    return _journalArticleLocalService.getArticleDisplay(groupId,
545                            articleId, version, templateId, viewMode, languageId, page,
546                            xmlRequest, themeDisplay);
547            }
548    
549            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
550                    long groupId, java.lang.String articleId, double version,
551                    java.lang.String templateId, java.lang.String viewMode,
552                    java.lang.String languageId,
553                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
554                    throws com.liferay.portal.kernel.exception.PortalException,
555                            com.liferay.portal.kernel.exception.SystemException {
556                    return _journalArticleLocalService.getArticleDisplay(groupId,
557                            articleId, version, templateId, viewMode, languageId, themeDisplay);
558            }
559    
560            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
561                    long groupId, java.lang.String articleId, java.lang.String viewMode,
562                    java.lang.String languageId, int page, java.lang.String xmlRequest,
563                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
564                    throws com.liferay.portal.kernel.exception.PortalException,
565                            com.liferay.portal.kernel.exception.SystemException {
566                    return _journalArticleLocalService.getArticleDisplay(groupId,
567                            articleId, viewMode, languageId, page, xmlRequest, themeDisplay);
568            }
569    
570            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
571                    long groupId, java.lang.String articleId, java.lang.String templateId,
572                    java.lang.String viewMode, java.lang.String languageId, int page,
573                    java.lang.String xmlRequest,
574                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
575                    throws com.liferay.portal.kernel.exception.PortalException,
576                            com.liferay.portal.kernel.exception.SystemException {
577                    return _journalArticleLocalService.getArticleDisplay(groupId,
578                            articleId, templateId, viewMode, languageId, page, xmlRequest,
579                            themeDisplay);
580            }
581    
582            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
583                    long groupId, java.lang.String articleId, java.lang.String templateId,
584                    java.lang.String viewMode, java.lang.String languageId,
585                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
586                    throws com.liferay.portal.kernel.exception.PortalException,
587                            com.liferay.portal.kernel.exception.SystemException {
588                    return _journalArticleLocalService.getArticleDisplay(groupId,
589                            articleId, templateId, viewMode, languageId, themeDisplay);
590            }
591    
592            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
593                    long groupId, java.lang.String articleId, java.lang.String viewMode,
594                    java.lang.String languageId,
595                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
596                    throws com.liferay.portal.kernel.exception.PortalException,
597                            com.liferay.portal.kernel.exception.SystemException {
598                    return _journalArticleLocalService.getArticleDisplay(groupId,
599                            articleId, viewMode, languageId, themeDisplay);
600            }
601    
602            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getArticles()
603                    throws com.liferay.portal.kernel.exception.SystemException {
604                    return _journalArticleLocalService.getArticles();
605            }
606    
607            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getArticles(
608                    long groupId)
609                    throws com.liferay.portal.kernel.exception.SystemException {
610                    return _journalArticleLocalService.getArticles(groupId);
611            }
612    
613            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getArticles(
614                    long groupId, int start, int end)
615                    throws com.liferay.portal.kernel.exception.SystemException {
616                    return _journalArticleLocalService.getArticles(groupId, start, end);
617            }
618    
619            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getArticles(
620                    long groupId, int start, int end,
621                    com.liferay.portal.kernel.util.OrderByComparator obc)
622                    throws com.liferay.portal.kernel.exception.SystemException {
623                    return _journalArticleLocalService.getArticles(groupId, start, end, obc);
624            }
625    
626            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getArticles(
627                    long groupId, java.lang.String articleId)
628                    throws com.liferay.portal.kernel.exception.SystemException {
629                    return _journalArticleLocalService.getArticles(groupId, articleId);
630            }
631    
632            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getArticlesBySmallImageId(
633                    long smallImageId)
634                    throws com.liferay.portal.kernel.exception.SystemException {
635                    return _journalArticleLocalService.getArticlesBySmallImageId(smallImageId);
636            }
637    
638            public int getArticlesCount(long groupId)
639                    throws com.liferay.portal.kernel.exception.SystemException {
640                    return _journalArticleLocalService.getArticlesCount(groupId);
641            }
642    
643            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getCompanyArticles(
644                    long companyId, double version, int status, int start, int end)
645                    throws com.liferay.portal.kernel.exception.SystemException {
646                    return _journalArticleLocalService.getCompanyArticles(companyId,
647                            version, status, start, end);
648            }
649    
650            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getCompanyArticles(
651                    long companyId, int status, int start, int end)
652                    throws com.liferay.portal.kernel.exception.SystemException {
653                    return _journalArticleLocalService.getCompanyArticles(companyId,
654                            status, start, end);
655            }
656    
657            public int getCompanyArticlesCount(long companyId, double version,
658                    int status, int start, int end)
659                    throws com.liferay.portal.kernel.exception.SystemException {
660                    return _journalArticleLocalService.getCompanyArticlesCount(companyId,
661                            version, status, start, end);
662            }
663    
664            public int getCompanyArticlesCount(long companyId, int status)
665                    throws com.liferay.portal.kernel.exception.SystemException {
666                    return _journalArticleLocalService.getCompanyArticlesCount(companyId,
667                            status);
668            }
669    
670            public com.liferay.portlet.journal.model.JournalArticle getDisplayArticle(
671                    long groupId, java.lang.String articleId)
672                    throws com.liferay.portal.kernel.exception.PortalException,
673                            com.liferay.portal.kernel.exception.SystemException {
674                    return _journalArticleLocalService.getDisplayArticle(groupId, articleId);
675            }
676    
677            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
678                    long resourcePrimKey)
679                    throws com.liferay.portal.kernel.exception.PortalException,
680                            com.liferay.portal.kernel.exception.SystemException {
681                    return _journalArticleLocalService.getLatestArticle(resourcePrimKey);
682            }
683    
684            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
685                    long resourcePrimKey, int status)
686                    throws com.liferay.portal.kernel.exception.PortalException,
687                            com.liferay.portal.kernel.exception.SystemException {
688                    return _journalArticleLocalService.getLatestArticle(resourcePrimKey,
689                            status);
690            }
691    
692            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
693                    long resourcePrimKey, int status, boolean preferApproved)
694                    throws com.liferay.portal.kernel.exception.PortalException,
695                            com.liferay.portal.kernel.exception.SystemException {
696                    return _journalArticleLocalService.getLatestArticle(resourcePrimKey,
697                            status, preferApproved);
698            }
699    
700            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
701                    long groupId, java.lang.String articleId)
702                    throws com.liferay.portal.kernel.exception.PortalException,
703                            com.liferay.portal.kernel.exception.SystemException {
704                    return _journalArticleLocalService.getLatestArticle(groupId, articleId);
705            }
706    
707            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
708                    long groupId, java.lang.String articleId, int status)
709                    throws com.liferay.portal.kernel.exception.PortalException,
710                            com.liferay.portal.kernel.exception.SystemException {
711                    return _journalArticleLocalService.getLatestArticle(groupId, articleId,
712                            status);
713            }
714    
715            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
716                    long groupId, java.lang.String className, long classPK)
717                    throws com.liferay.portal.kernel.exception.PortalException,
718                            com.liferay.portal.kernel.exception.SystemException {
719                    return _journalArticleLocalService.getLatestArticle(groupId, className,
720                            classPK);
721            }
722    
723            public com.liferay.portlet.journal.model.JournalArticle getLatestArticleByUrlTitle(
724                    long groupId, java.lang.String urlTitle, int status)
725                    throws com.liferay.portal.kernel.exception.PortalException,
726                            com.liferay.portal.kernel.exception.SystemException {
727                    return _journalArticleLocalService.getLatestArticleByUrlTitle(groupId,
728                            urlTitle, status);
729            }
730    
731            public double getLatestVersion(long groupId, java.lang.String articleId)
732                    throws com.liferay.portal.kernel.exception.PortalException,
733                            com.liferay.portal.kernel.exception.SystemException {
734                    return _journalArticleLocalService.getLatestVersion(groupId, articleId);
735            }
736    
737            public double getLatestVersion(long groupId, java.lang.String articleId,
738                    int status)
739                    throws com.liferay.portal.kernel.exception.PortalException,
740                            com.liferay.portal.kernel.exception.SystemException {
741                    return _journalArticleLocalService.getLatestVersion(groupId, articleId,
742                            status);
743            }
744    
745            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getStructureArticles(
746                    long groupId, java.lang.String structureId)
747                    throws com.liferay.portal.kernel.exception.SystemException {
748                    return _journalArticleLocalService.getStructureArticles(groupId,
749                            structureId);
750            }
751    
752            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getStructureArticles(
753                    long groupId, java.lang.String structureId, int start, int end,
754                    com.liferay.portal.kernel.util.OrderByComparator obc)
755                    throws com.liferay.portal.kernel.exception.SystemException {
756                    return _journalArticleLocalService.getStructureArticles(groupId,
757                            structureId, start, end, obc);
758            }
759    
760            public int getStructureArticlesCount(long groupId,
761                    java.lang.String structureId)
762                    throws com.liferay.portal.kernel.exception.SystemException {
763                    return _journalArticleLocalService.getStructureArticlesCount(groupId,
764                            structureId);
765            }
766    
767            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getTemplateArticles(
768                    long groupId, java.lang.String templateId)
769                    throws com.liferay.portal.kernel.exception.SystemException {
770                    return _journalArticleLocalService.getTemplateArticles(groupId,
771                            templateId);
772            }
773    
774            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getTemplateArticles(
775                    long groupId, java.lang.String templateId, int start, int end,
776                    com.liferay.portal.kernel.util.OrderByComparator obc)
777                    throws com.liferay.portal.kernel.exception.SystemException {
778                    return _journalArticleLocalService.getTemplateArticles(groupId,
779                            templateId, start, end, obc);
780            }
781    
782            public int getTemplateArticlesCount(long groupId,
783                    java.lang.String templateId)
784                    throws com.liferay.portal.kernel.exception.SystemException {
785                    return _journalArticleLocalService.getTemplateArticlesCount(groupId,
786                            templateId);
787            }
788    
789            public boolean hasArticle(long groupId, java.lang.String articleId)
790                    throws com.liferay.portal.kernel.exception.SystemException {
791                    return _journalArticleLocalService.hasArticle(groupId, articleId);
792            }
793    
794            public boolean isLatestVersion(long groupId, java.lang.String articleId,
795                    double version)
796                    throws com.liferay.portal.kernel.exception.PortalException,
797                            com.liferay.portal.kernel.exception.SystemException {
798                    return _journalArticleLocalService.isLatestVersion(groupId, articleId,
799                            version);
800            }
801    
802            public boolean isLatestVersion(long groupId, java.lang.String articleId,
803                    double version, int status)
804                    throws com.liferay.portal.kernel.exception.PortalException,
805                            com.liferay.portal.kernel.exception.SystemException {
806                    return _journalArticleLocalService.isLatestVersion(groupId, articleId,
807                            version, status);
808            }
809    
810            public com.liferay.portlet.journal.model.JournalArticle removeArticleLocale(
811                    long groupId, java.lang.String articleId, double version,
812                    java.lang.String languageId)
813                    throws com.liferay.portal.kernel.exception.PortalException,
814                            com.liferay.portal.kernel.exception.SystemException {
815                    return _journalArticleLocalService.removeArticleLocale(groupId,
816                            articleId, version, languageId);
817            }
818    
819            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> search(
820                    long companyId, long groupId, long classNameId,
821                    java.lang.String keywords, java.lang.Double version,
822                    java.lang.String type, java.lang.String structureId,
823                    java.lang.String templateId, java.util.Date displayDateGT,
824                    java.util.Date displayDateLT, int status, java.util.Date reviewDate,
825                    int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
826                    throws com.liferay.portal.kernel.exception.SystemException {
827                    return _journalArticleLocalService.search(companyId, groupId,
828                            classNameId, keywords, version, type, structureId, templateId,
829                            displayDateGT, displayDateLT, status, reviewDate, start, end, obc);
830            }
831    
832            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> search(
833                    long companyId, long groupId, long classNameId,
834                    java.lang.String articleId, java.lang.Double version,
835                    java.lang.String title, java.lang.String description,
836                    java.lang.String content, java.lang.String type,
837                    java.lang.String structureId, java.lang.String templateId,
838                    java.util.Date displayDateGT, java.util.Date displayDateLT, int status,
839                    java.util.Date reviewDate, boolean andOperator, int start, int end,
840                    com.liferay.portal.kernel.util.OrderByComparator obc)
841                    throws com.liferay.portal.kernel.exception.SystemException {
842                    return _journalArticleLocalService.search(companyId, groupId,
843                            classNameId, articleId, version, title, description, content, type,
844                            structureId, templateId, displayDateGT, displayDateLT, status,
845                            reviewDate, andOperator, start, end, obc);
846            }
847    
848            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> search(
849                    long companyId, long groupId, long classNameId,
850                    java.lang.String articleId, java.lang.Double version,
851                    java.lang.String title, java.lang.String description,
852                    java.lang.String content, java.lang.String type,
853                    java.lang.String[] structureIds, java.lang.String[] templateIds,
854                    java.util.Date displayDateGT, java.util.Date displayDateLT, int status,
855                    java.util.Date reviewDate, boolean andOperator, int start, int end,
856                    com.liferay.portal.kernel.util.OrderByComparator obc)
857                    throws com.liferay.portal.kernel.exception.SystemException {
858                    return _journalArticleLocalService.search(companyId, groupId,
859                            classNameId, articleId, version, title, description, content, type,
860                            structureIds, templateIds, displayDateGT, displayDateLT, status,
861                            reviewDate, andOperator, start, end, obc);
862            }
863    
864            public com.liferay.portal.kernel.search.Hits search(long companyId,
865                    long groupId, long classNameId, java.lang.String structureId,
866                    java.lang.String templateId, java.lang.String keywords,
867                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
868                    int start, int end, com.liferay.portal.kernel.search.Sort sort)
869                    throws com.liferay.portal.kernel.exception.SystemException {
870                    return _journalArticleLocalService.search(companyId, groupId,
871                            classNameId, structureId, templateId, keywords, params, start, end,
872                            sort);
873            }
874    
875            public com.liferay.portal.kernel.search.Hits search(long companyId,
876                    long groupId, long classNameId, java.lang.String articleId,
877                    java.lang.String title, java.lang.String description,
878                    java.lang.String content, java.lang.String type,
879                    java.lang.String status, java.lang.String structureId,
880                    java.lang.String templateId,
881                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
882                    boolean andSearch, int start, int end,
883                    com.liferay.portal.kernel.search.Sort sort)
884                    throws com.liferay.portal.kernel.exception.SystemException {
885                    return _journalArticleLocalService.search(companyId, groupId,
886                            classNameId, articleId, title, description, content, type, status,
887                            structureId, templateId, params, andSearch, start, end, sort);
888            }
889    
890            public int searchCount(long companyId, long groupId, long classNameId,
891                    java.lang.String keywords, java.lang.Double version,
892                    java.lang.String type, java.lang.String structureId,
893                    java.lang.String templateId, java.util.Date displayDateGT,
894                    java.util.Date displayDateLT, int status, java.util.Date reviewDate)
895                    throws com.liferay.portal.kernel.exception.SystemException {
896                    return _journalArticleLocalService.searchCount(companyId, groupId,
897                            classNameId, keywords, version, type, structureId, templateId,
898                            displayDateGT, displayDateLT, status, reviewDate);
899            }
900    
901            public int searchCount(long companyId, long groupId, long classNameId,
902                    java.lang.String articleId, java.lang.Double version,
903                    java.lang.String title, java.lang.String description,
904                    java.lang.String content, java.lang.String type,
905                    java.lang.String structureId, java.lang.String templateId,
906                    java.util.Date displayDateGT, java.util.Date displayDateLT, int status,
907                    java.util.Date reviewDate, boolean andOperator)
908                    throws com.liferay.portal.kernel.exception.SystemException {
909                    return _journalArticleLocalService.searchCount(companyId, groupId,
910                            classNameId, articleId, version, title, description, content, type,
911                            structureId, templateId, displayDateGT, displayDateLT, status,
912                            reviewDate, andOperator);
913            }
914    
915            public int searchCount(long companyId, long groupId, long classNameId,
916                    java.lang.String articleId, java.lang.Double version,
917                    java.lang.String title, java.lang.String description,
918                    java.lang.String content, java.lang.String type,
919                    java.lang.String[] structureIds, java.lang.String[] templateIds,
920                    java.util.Date displayDateGT, java.util.Date displayDateLT, int status,
921                    java.util.Date reviewDate, boolean andOperator)
922                    throws com.liferay.portal.kernel.exception.SystemException {
923                    return _journalArticleLocalService.searchCount(companyId, groupId,
924                            classNameId, articleId, version, title, description, content, type,
925                            structureIds, templateIds, displayDateGT, displayDateLT, status,
926                            reviewDate, andOperator);
927            }
928    
929            public void subscribe(long userId, long groupId)
930                    throws com.liferay.portal.kernel.exception.PortalException,
931                            com.liferay.portal.kernel.exception.SystemException {
932                    _journalArticleLocalService.subscribe(userId, groupId);
933            }
934    
935            public void unsubscribe(long userId, long groupId)
936                    throws com.liferay.portal.kernel.exception.PortalException,
937                            com.liferay.portal.kernel.exception.SystemException {
938                    _journalArticleLocalService.unsubscribe(userId, groupId);
939            }
940    
941            public com.liferay.portlet.journal.model.JournalArticle updateArticle(
942                    long userId, long groupId, java.lang.String articleId, double version,
943                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
944                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
945                    java.lang.String content, java.lang.String layoutUuid,
946                    com.liferay.portal.service.ServiceContext serviceContext)
947                    throws com.liferay.portal.kernel.exception.PortalException,
948                            com.liferay.portal.kernel.exception.SystemException {
949                    return _journalArticleLocalService.updateArticle(userId, groupId,
950                            articleId, version, titleMap, descriptionMap, content, layoutUuid,
951                            serviceContext);
952            }
953    
954            public com.liferay.portlet.journal.model.JournalArticle updateArticle(
955                    long userId, long groupId, java.lang.String articleId, double version,
956                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
957                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
958                    java.lang.String content, java.lang.String type,
959                    java.lang.String structureId, java.lang.String templateId,
960                    java.lang.String layoutUuid, int displayDateMonth, int displayDateDay,
961                    int displayDateYear, int displayDateHour, int displayDateMinute,
962                    int expirationDateMonth, int expirationDateDay, int expirationDateYear,
963                    int expirationDateHour, int expirationDateMinute, boolean neverExpire,
964                    int reviewDateMonth, int reviewDateDay, int reviewDateYear,
965                    int reviewDateHour, int reviewDateMinute, boolean neverReview,
966                    boolean indexable, boolean smallImage, java.lang.String smallImageURL,
967                    java.io.File smallImageFile,
968                    java.util.Map<java.lang.String, byte[]> images,
969                    java.lang.String articleURL,
970                    com.liferay.portal.service.ServiceContext serviceContext)
971                    throws com.liferay.portal.kernel.exception.PortalException,
972                            com.liferay.portal.kernel.exception.SystemException {
973                    return _journalArticleLocalService.updateArticle(userId, groupId,
974                            articleId, version, titleMap, descriptionMap, content, type,
975                            structureId, templateId, layoutUuid, displayDateMonth,
976                            displayDateDay, displayDateYear, displayDateHour,
977                            displayDateMinute, expirationDateMonth, expirationDateDay,
978                            expirationDateYear, expirationDateHour, expirationDateMinute,
979                            neverExpire, reviewDateMonth, reviewDateDay, reviewDateYear,
980                            reviewDateHour, reviewDateMinute, neverReview, indexable,
981                            smallImage, smallImageURL, smallImageFile, images, articleURL,
982                            serviceContext);
983            }
984    
985            public com.liferay.portlet.journal.model.JournalArticle updateArticle(
986                    long userId, long groupId, java.lang.String articleId, double version,
987                    java.lang.String content,
988                    com.liferay.portal.service.ServiceContext serviceContext)
989                    throws com.liferay.portal.kernel.exception.PortalException,
990                            com.liferay.portal.kernel.exception.SystemException {
991                    return _journalArticleLocalService.updateArticle(userId, groupId,
992                            articleId, version, content, serviceContext);
993            }
994    
995            public com.liferay.portlet.journal.model.JournalArticle updateArticleTranslation(
996                    long groupId, java.lang.String articleId, double version,
997                    java.util.Locale locale, java.lang.String title,
998                    java.lang.String description, java.lang.String content)
999                    throws com.liferay.portal.kernel.exception.PortalException,
1000                            com.liferay.portal.kernel.exception.SystemException {
1001                    return _journalArticleLocalService.updateArticleTranslation(groupId,
1002                            articleId, version, locale, title, description, content);
1003            }
1004    
1005            public void updateAsset(long userId,
1006                    com.liferay.portlet.journal.model.JournalArticle article,
1007                    long[] assetCategoryIds, java.lang.String[] assetTagNames,
1008                    long[] assetLinkEntryIds)
1009                    throws com.liferay.portal.kernel.exception.PortalException,
1010                            com.liferay.portal.kernel.exception.SystemException {
1011                    _journalArticleLocalService.updateAsset(userId, article,
1012                            assetCategoryIds, assetTagNames, assetLinkEntryIds);
1013            }
1014    
1015            public com.liferay.portlet.journal.model.JournalArticle updateContent(
1016                    long groupId, java.lang.String articleId, double version,
1017                    java.lang.String content)
1018                    throws com.liferay.portal.kernel.exception.PortalException,
1019                            com.liferay.portal.kernel.exception.SystemException {
1020                    return _journalArticleLocalService.updateContent(groupId, articleId,
1021                            version, content);
1022            }
1023    
1024            public com.liferay.portlet.journal.model.JournalArticle updateStatus(
1025                    long userId, com.liferay.portlet.journal.model.JournalArticle article,
1026                    int status, java.lang.String articleURL,
1027                    com.liferay.portal.service.ServiceContext serviceContext)
1028                    throws com.liferay.portal.kernel.exception.PortalException,
1029                            com.liferay.portal.kernel.exception.SystemException {
1030                    return _journalArticleLocalService.updateStatus(userId, article,
1031                            status, articleURL, serviceContext);
1032            }
1033    
1034            public com.liferay.portlet.journal.model.JournalArticle updateStatus(
1035                    long userId, long classPK, int status,
1036                    com.liferay.portal.service.ServiceContext serviceContext)
1037                    throws com.liferay.portal.kernel.exception.PortalException,
1038                            com.liferay.portal.kernel.exception.SystemException {
1039                    return _journalArticleLocalService.updateStatus(userId, classPK,
1040                            status, serviceContext);
1041            }
1042    
1043            public com.liferay.portlet.journal.model.JournalArticle updateStatus(
1044                    long userId, long groupId, java.lang.String articleId, double version,
1045                    int status, java.lang.String articleURL,
1046                    com.liferay.portal.service.ServiceContext serviceContext)
1047                    throws com.liferay.portal.kernel.exception.PortalException,
1048                            com.liferay.portal.kernel.exception.SystemException {
1049                    return _journalArticleLocalService.updateStatus(userId, groupId,
1050                            articleId, version, status, articleURL, serviceContext);
1051            }
1052    
1053            public void updateTemplateId(long groupId, long classNameId,
1054                    java.lang.String oldTemplateId, java.lang.String newTemplateId)
1055                    throws com.liferay.portal.kernel.exception.SystemException {
1056                    _journalArticleLocalService.updateTemplateId(groupId, classNameId,
1057                            oldTemplateId, newTemplateId);
1058            }
1059    
1060            /**
1061             * @deprecated Renamed to {@link #getWrappedService}
1062             */
1063            public JournalArticleLocalService getWrappedJournalArticleLocalService() {
1064                    return _journalArticleLocalService;
1065            }
1066    
1067            /**
1068             * @deprecated Renamed to {@link #setWrappedService}
1069             */
1070            public void setWrappedJournalArticleLocalService(
1071                    JournalArticleLocalService journalArticleLocalService) {
1072                    _journalArticleLocalService = journalArticleLocalService;
1073            }
1074    
1075            public JournalArticleLocalService getWrappedService() {
1076                    return _journalArticleLocalService;
1077            }
1078    
1079            public void setWrappedService(
1080                    JournalArticleLocalService journalArticleLocalService) {
1081                    _journalArticleLocalService = journalArticleLocalService;
1082            }
1083    
1084            private JournalArticleLocalService _journalArticleLocalService;
1085    }