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.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 getDisplayArticleByUrlTitle(
678                    long groupId, java.lang.String urlTitle)
679                    throws com.liferay.portal.kernel.exception.PortalException,
680                            com.liferay.portal.kernel.exception.SystemException {
681                    return _journalArticleLocalService.getDisplayArticleByUrlTitle(groupId,
682                            urlTitle);
683            }
684    
685            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
686                    long resourcePrimKey)
687                    throws com.liferay.portal.kernel.exception.PortalException,
688                            com.liferay.portal.kernel.exception.SystemException {
689                    return _journalArticleLocalService.getLatestArticle(resourcePrimKey);
690            }
691    
692            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
693                    long resourcePrimKey, int status)
694                    throws com.liferay.portal.kernel.exception.PortalException,
695                            com.liferay.portal.kernel.exception.SystemException {
696                    return _journalArticleLocalService.getLatestArticle(resourcePrimKey,
697                            status);
698            }
699    
700            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
701                    long resourcePrimKey, int status, boolean preferApproved)
702                    throws com.liferay.portal.kernel.exception.PortalException,
703                            com.liferay.portal.kernel.exception.SystemException {
704                    return _journalArticleLocalService.getLatestArticle(resourcePrimKey,
705                            status, preferApproved);
706            }
707    
708            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
709                    long groupId, java.lang.String articleId)
710                    throws com.liferay.portal.kernel.exception.PortalException,
711                            com.liferay.portal.kernel.exception.SystemException {
712                    return _journalArticleLocalService.getLatestArticle(groupId, articleId);
713            }
714    
715            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
716                    long groupId, java.lang.String articleId, int status)
717                    throws com.liferay.portal.kernel.exception.PortalException,
718                            com.liferay.portal.kernel.exception.SystemException {
719                    return _journalArticleLocalService.getLatestArticle(groupId, articleId,
720                            status);
721            }
722    
723            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
724                    long groupId, java.lang.String className, long classPK)
725                    throws com.liferay.portal.kernel.exception.PortalException,
726                            com.liferay.portal.kernel.exception.SystemException {
727                    return _journalArticleLocalService.getLatestArticle(groupId, className,
728                            classPK);
729            }
730    
731            public com.liferay.portlet.journal.model.JournalArticle getLatestArticleByUrlTitle(
732                    long groupId, java.lang.String urlTitle, int status)
733                    throws com.liferay.portal.kernel.exception.PortalException,
734                            com.liferay.portal.kernel.exception.SystemException {
735                    return _journalArticleLocalService.getLatestArticleByUrlTitle(groupId,
736                            urlTitle, status);
737            }
738    
739            public double getLatestVersion(long groupId, java.lang.String articleId)
740                    throws com.liferay.portal.kernel.exception.PortalException,
741                            com.liferay.portal.kernel.exception.SystemException {
742                    return _journalArticleLocalService.getLatestVersion(groupId, articleId);
743            }
744    
745            public double getLatestVersion(long groupId, java.lang.String articleId,
746                    int status)
747                    throws com.liferay.portal.kernel.exception.PortalException,
748                            com.liferay.portal.kernel.exception.SystemException {
749                    return _journalArticleLocalService.getLatestVersion(groupId, articleId,
750                            status);
751            }
752    
753            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getStructureArticles(
754                    long groupId, java.lang.String structureId)
755                    throws com.liferay.portal.kernel.exception.SystemException {
756                    return _journalArticleLocalService.getStructureArticles(groupId,
757                            structureId);
758            }
759    
760            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getStructureArticles(
761                    long groupId, java.lang.String structureId, int start, int end,
762                    com.liferay.portal.kernel.util.OrderByComparator obc)
763                    throws com.liferay.portal.kernel.exception.SystemException {
764                    return _journalArticleLocalService.getStructureArticles(groupId,
765                            structureId, start, end, obc);
766            }
767    
768            public int getStructureArticlesCount(long groupId,
769                    java.lang.String structureId)
770                    throws com.liferay.portal.kernel.exception.SystemException {
771                    return _journalArticleLocalService.getStructureArticlesCount(groupId,
772                            structureId);
773            }
774    
775            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getTemplateArticles(
776                    long groupId, java.lang.String templateId)
777                    throws com.liferay.portal.kernel.exception.SystemException {
778                    return _journalArticleLocalService.getTemplateArticles(groupId,
779                            templateId);
780            }
781    
782            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getTemplateArticles(
783                    long groupId, java.lang.String templateId, int start, int end,
784                    com.liferay.portal.kernel.util.OrderByComparator obc)
785                    throws com.liferay.portal.kernel.exception.SystemException {
786                    return _journalArticleLocalService.getTemplateArticles(groupId,
787                            templateId, start, end, obc);
788            }
789    
790            public int getTemplateArticlesCount(long groupId,
791                    java.lang.String templateId)
792                    throws com.liferay.portal.kernel.exception.SystemException {
793                    return _journalArticleLocalService.getTemplateArticlesCount(groupId,
794                            templateId);
795            }
796    
797            public boolean hasArticle(long groupId, java.lang.String articleId)
798                    throws com.liferay.portal.kernel.exception.SystemException {
799                    return _journalArticleLocalService.hasArticle(groupId, articleId);
800            }
801    
802            public boolean isLatestVersion(long groupId, java.lang.String articleId,
803                    double version)
804                    throws com.liferay.portal.kernel.exception.PortalException,
805                            com.liferay.portal.kernel.exception.SystemException {
806                    return _journalArticleLocalService.isLatestVersion(groupId, articleId,
807                            version);
808            }
809    
810            public boolean isLatestVersion(long groupId, java.lang.String articleId,
811                    double version, int status)
812                    throws com.liferay.portal.kernel.exception.PortalException,
813                            com.liferay.portal.kernel.exception.SystemException {
814                    return _journalArticleLocalService.isLatestVersion(groupId, articleId,
815                            version, status);
816            }
817    
818            public com.liferay.portlet.journal.model.JournalArticle removeArticleLocale(
819                    long groupId, java.lang.String articleId, double version,
820                    java.lang.String languageId)
821                    throws com.liferay.portal.kernel.exception.PortalException,
822                            com.liferay.portal.kernel.exception.SystemException {
823                    return _journalArticleLocalService.removeArticleLocale(groupId,
824                            articleId, version, languageId);
825            }
826    
827            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> search(
828                    long companyId, long groupId, long classNameId,
829                    java.lang.String keywords, java.lang.Double version,
830                    java.lang.String type, java.lang.String structureId,
831                    java.lang.String templateId, java.util.Date displayDateGT,
832                    java.util.Date displayDateLT, int status, java.util.Date reviewDate,
833                    int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
834                    throws com.liferay.portal.kernel.exception.SystemException {
835                    return _journalArticleLocalService.search(companyId, groupId,
836                            classNameId, keywords, version, type, structureId, templateId,
837                            displayDateGT, displayDateLT, status, reviewDate, start, end, obc);
838            }
839    
840            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> search(
841                    long companyId, long groupId, long classNameId,
842                    java.lang.String articleId, java.lang.Double version,
843                    java.lang.String title, java.lang.String description,
844                    java.lang.String content, java.lang.String type,
845                    java.lang.String structureId, java.lang.String templateId,
846                    java.util.Date displayDateGT, java.util.Date displayDateLT, int status,
847                    java.util.Date reviewDate, boolean andOperator, int start, int end,
848                    com.liferay.portal.kernel.util.OrderByComparator obc)
849                    throws com.liferay.portal.kernel.exception.SystemException {
850                    return _journalArticleLocalService.search(companyId, groupId,
851                            classNameId, articleId, version, title, description, content, type,
852                            structureId, templateId, displayDateGT, displayDateLT, status,
853                            reviewDate, andOperator, start, end, obc);
854            }
855    
856            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> search(
857                    long companyId, long groupId, long classNameId,
858                    java.lang.String articleId, java.lang.Double version,
859                    java.lang.String title, java.lang.String description,
860                    java.lang.String content, java.lang.String type,
861                    java.lang.String[] structureIds, java.lang.String[] templateIds,
862                    java.util.Date displayDateGT, java.util.Date displayDateLT, int status,
863                    java.util.Date reviewDate, boolean andOperator, int start, int end,
864                    com.liferay.portal.kernel.util.OrderByComparator obc)
865                    throws com.liferay.portal.kernel.exception.SystemException {
866                    return _journalArticleLocalService.search(companyId, groupId,
867                            classNameId, articleId, version, title, description, content, type,
868                            structureIds, templateIds, displayDateGT, displayDateLT, status,
869                            reviewDate, andOperator, start, end, obc);
870            }
871    
872            public com.liferay.portal.kernel.search.Hits search(long companyId,
873                    long groupId, long classNameId, java.lang.String structureId,
874                    java.lang.String templateId, java.lang.String keywords,
875                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
876                    int start, int end, com.liferay.portal.kernel.search.Sort sort)
877                    throws com.liferay.portal.kernel.exception.SystemException {
878                    return _journalArticleLocalService.search(companyId, groupId,
879                            classNameId, structureId, templateId, keywords, params, start, end,
880                            sort);
881            }
882    
883            public com.liferay.portal.kernel.search.Hits search(long companyId,
884                    long groupId, long classNameId, java.lang.String articleId,
885                    java.lang.String title, java.lang.String description,
886                    java.lang.String content, java.lang.String type,
887                    java.lang.String status, java.lang.String structureId,
888                    java.lang.String templateId,
889                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
890                    boolean andSearch, int start, int end,
891                    com.liferay.portal.kernel.search.Sort sort)
892                    throws com.liferay.portal.kernel.exception.SystemException {
893                    return _journalArticleLocalService.search(companyId, groupId,
894                            classNameId, articleId, title, description, content, type, status,
895                            structureId, templateId, params, andSearch, start, end, sort);
896            }
897    
898            public int searchCount(long companyId, long groupId, long classNameId,
899                    java.lang.String keywords, java.lang.Double version,
900                    java.lang.String type, java.lang.String structureId,
901                    java.lang.String templateId, java.util.Date displayDateGT,
902                    java.util.Date displayDateLT, int status, java.util.Date reviewDate)
903                    throws com.liferay.portal.kernel.exception.SystemException {
904                    return _journalArticleLocalService.searchCount(companyId, groupId,
905                            classNameId, keywords, version, type, structureId, templateId,
906                            displayDateGT, displayDateLT, status, reviewDate);
907            }
908    
909            public int searchCount(long companyId, long groupId, long classNameId,
910                    java.lang.String articleId, java.lang.Double version,
911                    java.lang.String title, java.lang.String description,
912                    java.lang.String content, java.lang.String type,
913                    java.lang.String structureId, java.lang.String templateId,
914                    java.util.Date displayDateGT, java.util.Date displayDateLT, int status,
915                    java.util.Date reviewDate, boolean andOperator)
916                    throws com.liferay.portal.kernel.exception.SystemException {
917                    return _journalArticleLocalService.searchCount(companyId, groupId,
918                            classNameId, articleId, version, title, description, content, type,
919                            structureId, templateId, displayDateGT, displayDateLT, status,
920                            reviewDate, andOperator);
921            }
922    
923            public int searchCount(long companyId, long groupId, long classNameId,
924                    java.lang.String articleId, java.lang.Double version,
925                    java.lang.String title, java.lang.String description,
926                    java.lang.String content, java.lang.String type,
927                    java.lang.String[] structureIds, java.lang.String[] templateIds,
928                    java.util.Date displayDateGT, java.util.Date displayDateLT, int status,
929                    java.util.Date reviewDate, boolean andOperator)
930                    throws com.liferay.portal.kernel.exception.SystemException {
931                    return _journalArticleLocalService.searchCount(companyId, groupId,
932                            classNameId, articleId, version, title, description, content, type,
933                            structureIds, templateIds, displayDateGT, displayDateLT, status,
934                            reviewDate, andOperator);
935            }
936    
937            public void subscribe(long userId, long groupId)
938                    throws com.liferay.portal.kernel.exception.PortalException,
939                            com.liferay.portal.kernel.exception.SystemException {
940                    _journalArticleLocalService.subscribe(userId, groupId);
941            }
942    
943            public void unsubscribe(long userId, long groupId)
944                    throws com.liferay.portal.kernel.exception.PortalException,
945                            com.liferay.portal.kernel.exception.SystemException {
946                    _journalArticleLocalService.unsubscribe(userId, groupId);
947            }
948    
949            public com.liferay.portlet.journal.model.JournalArticle updateArticle(
950                    long userId, long groupId, java.lang.String articleId, double version,
951                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
952                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
953                    java.lang.String content, java.lang.String layoutUuid,
954                    com.liferay.portal.service.ServiceContext serviceContext)
955                    throws com.liferay.portal.kernel.exception.PortalException,
956                            com.liferay.portal.kernel.exception.SystemException {
957                    return _journalArticleLocalService.updateArticle(userId, groupId,
958                            articleId, version, titleMap, descriptionMap, content, layoutUuid,
959                            serviceContext);
960            }
961    
962            public com.liferay.portlet.journal.model.JournalArticle updateArticle(
963                    long userId, long groupId, java.lang.String articleId, double version,
964                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
965                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
966                    java.lang.String content, java.lang.String type,
967                    java.lang.String structureId, java.lang.String templateId,
968                    java.lang.String layoutUuid, int displayDateMonth, int displayDateDay,
969                    int displayDateYear, int displayDateHour, int displayDateMinute,
970                    int expirationDateMonth, int expirationDateDay, int expirationDateYear,
971                    int expirationDateHour, int expirationDateMinute, boolean neverExpire,
972                    int reviewDateMonth, int reviewDateDay, int reviewDateYear,
973                    int reviewDateHour, int reviewDateMinute, boolean neverReview,
974                    boolean indexable, boolean smallImage, java.lang.String smallImageURL,
975                    java.io.File smallImageFile,
976                    java.util.Map<java.lang.String, byte[]> images,
977                    java.lang.String articleURL,
978                    com.liferay.portal.service.ServiceContext serviceContext)
979                    throws com.liferay.portal.kernel.exception.PortalException,
980                            com.liferay.portal.kernel.exception.SystemException {
981                    return _journalArticleLocalService.updateArticle(userId, groupId,
982                            articleId, version, titleMap, descriptionMap, content, type,
983                            structureId, templateId, layoutUuid, displayDateMonth,
984                            displayDateDay, displayDateYear, displayDateHour,
985                            displayDateMinute, expirationDateMonth, expirationDateDay,
986                            expirationDateYear, expirationDateHour, expirationDateMinute,
987                            neverExpire, reviewDateMonth, reviewDateDay, reviewDateYear,
988                            reviewDateHour, reviewDateMinute, neverReview, indexable,
989                            smallImage, smallImageURL, smallImageFile, images, articleURL,
990                            serviceContext);
991            }
992    
993            public com.liferay.portlet.journal.model.JournalArticle updateArticle(
994                    long userId, long groupId, java.lang.String articleId, double version,
995                    java.lang.String content,
996                    com.liferay.portal.service.ServiceContext serviceContext)
997                    throws com.liferay.portal.kernel.exception.PortalException,
998                            com.liferay.portal.kernel.exception.SystemException {
999                    return _journalArticleLocalService.updateArticle(userId, groupId,
1000                            articleId, version, content, serviceContext);
1001            }
1002    
1003            /**
1004            * @deprecated {@link #updateArticleTranslation(long, String, double,
1005            Locale, String, String, String, Map, ServiceContext)}
1006            */
1007            public com.liferay.portlet.journal.model.JournalArticle updateArticleTranslation(
1008                    long groupId, java.lang.String articleId, double version,
1009                    java.util.Locale locale, java.lang.String title,
1010                    java.lang.String description, java.lang.String content,
1011                    java.util.Map<java.lang.String, byte[]> images)
1012                    throws com.liferay.portal.kernel.exception.PortalException,
1013                            com.liferay.portal.kernel.exception.SystemException {
1014                    return _journalArticleLocalService.updateArticleTranslation(groupId,
1015                            articleId, version, locale, title, description, content, images);
1016            }
1017    
1018            public com.liferay.portlet.journal.model.JournalArticle updateArticleTranslation(
1019                    long groupId, java.lang.String articleId, double version,
1020                    java.util.Locale locale, java.lang.String title,
1021                    java.lang.String description, java.lang.String content,
1022                    java.util.Map<java.lang.String, byte[]> images,
1023                    com.liferay.portal.service.ServiceContext serviceContext)
1024                    throws com.liferay.portal.kernel.exception.PortalException,
1025                            com.liferay.portal.kernel.exception.SystemException {
1026                    return _journalArticleLocalService.updateArticleTranslation(groupId,
1027                            articleId, version, locale, title, description, content, images,
1028                            serviceContext);
1029            }
1030    
1031            public void updateAsset(long userId,
1032                    com.liferay.portlet.journal.model.JournalArticle article,
1033                    long[] assetCategoryIds, java.lang.String[] assetTagNames,
1034                    long[] assetLinkEntryIds)
1035                    throws com.liferay.portal.kernel.exception.PortalException,
1036                            com.liferay.portal.kernel.exception.SystemException {
1037                    _journalArticleLocalService.updateAsset(userId, article,
1038                            assetCategoryIds, assetTagNames, assetLinkEntryIds);
1039            }
1040    
1041            public com.liferay.portlet.journal.model.JournalArticle updateContent(
1042                    long groupId, java.lang.String articleId, double version,
1043                    java.lang.String content)
1044                    throws com.liferay.portal.kernel.exception.PortalException,
1045                            com.liferay.portal.kernel.exception.SystemException {
1046                    return _journalArticleLocalService.updateContent(groupId, articleId,
1047                            version, content);
1048            }
1049    
1050            public com.liferay.portlet.journal.model.JournalArticle updateStatus(
1051                    long userId, com.liferay.portlet.journal.model.JournalArticle article,
1052                    int status, java.lang.String articleURL,
1053                    com.liferay.portal.service.ServiceContext serviceContext)
1054                    throws com.liferay.portal.kernel.exception.PortalException,
1055                            com.liferay.portal.kernel.exception.SystemException {
1056                    return _journalArticleLocalService.updateStatus(userId, article,
1057                            status, articleURL, serviceContext);
1058            }
1059    
1060            public com.liferay.portlet.journal.model.JournalArticle updateStatus(
1061                    long userId, long classPK, int status,
1062                    com.liferay.portal.service.ServiceContext serviceContext)
1063                    throws com.liferay.portal.kernel.exception.PortalException,
1064                            com.liferay.portal.kernel.exception.SystemException {
1065                    return _journalArticleLocalService.updateStatus(userId, classPK,
1066                            status, serviceContext);
1067            }
1068    
1069            public com.liferay.portlet.journal.model.JournalArticle updateStatus(
1070                    long userId, long groupId, java.lang.String articleId, double version,
1071                    int status, java.lang.String articleURL,
1072                    com.liferay.portal.service.ServiceContext serviceContext)
1073                    throws com.liferay.portal.kernel.exception.PortalException,
1074                            com.liferay.portal.kernel.exception.SystemException {
1075                    return _journalArticleLocalService.updateStatus(userId, groupId,
1076                            articleId, version, status, articleURL, serviceContext);
1077            }
1078    
1079            public void updateTemplateId(long groupId, long classNameId,
1080                    java.lang.String oldTemplateId, java.lang.String newTemplateId)
1081                    throws com.liferay.portal.kernel.exception.SystemException {
1082                    _journalArticleLocalService.updateTemplateId(groupId, classNameId,
1083                            oldTemplateId, newTemplateId);
1084            }
1085    
1086            /**
1087             * @deprecated Renamed to {@link #getWrappedService}
1088             */
1089            public JournalArticleLocalService getWrappedJournalArticleLocalService() {
1090                    return _journalArticleLocalService;
1091            }
1092    
1093            /**
1094             * @deprecated Renamed to {@link #setWrappedService}
1095             */
1096            public void setWrappedJournalArticleLocalService(
1097                    JournalArticleLocalService journalArticleLocalService) {
1098                    _journalArticleLocalService = journalArticleLocalService;
1099            }
1100    
1101            public JournalArticleLocalService getWrappedService() {
1102                    return _journalArticleLocalService;
1103            }
1104    
1105            public void setWrappedService(
1106                    JournalArticleLocalService journalArticleLocalService) {
1107                    _journalArticleLocalService = journalArticleLocalService;
1108            }
1109    
1110            private JournalArticleLocalService _journalArticleLocalService;
1111    }