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