001    /**
002     * Copyright (c) 2000-2010 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            public com.liferay.portlet.journal.model.JournalArticle addJournalArticle(
034                    com.liferay.portlet.journal.model.JournalArticle journalArticle)
035                    throws com.liferay.portal.kernel.exception.SystemException {
036                    return _journalArticleLocalService.addJournalArticle(journalArticle);
037            }
038    
039            public com.liferay.portlet.journal.model.JournalArticle createJournalArticle(
040                    long id) {
041                    return _journalArticleLocalService.createJournalArticle(id);
042            }
043    
044            public void deleteJournalArticle(long id)
045                    throws com.liferay.portal.kernel.exception.PortalException,
046                            com.liferay.portal.kernel.exception.SystemException {
047                    _journalArticleLocalService.deleteJournalArticle(id);
048            }
049    
050            public void deleteJournalArticle(
051                    com.liferay.portlet.journal.model.JournalArticle journalArticle)
052                    throws com.liferay.portal.kernel.exception.SystemException {
053                    _journalArticleLocalService.deleteJournalArticle(journalArticle);
054            }
055    
056            @SuppressWarnings("unchecked")
057            public java.util.List dynamicQuery(
058                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
059                    throws com.liferay.portal.kernel.exception.SystemException {
060                    return _journalArticleLocalService.dynamicQuery(dynamicQuery);
061            }
062    
063            @SuppressWarnings("unchecked")
064            public java.util.List dynamicQuery(
065                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
066                    int end) throws com.liferay.portal.kernel.exception.SystemException {
067                    return _journalArticleLocalService.dynamicQuery(dynamicQuery, start, end);
068            }
069    
070            @SuppressWarnings("unchecked")
071            public java.util.List dynamicQuery(
072                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
073                    int end,
074                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
075                    throws com.liferay.portal.kernel.exception.SystemException {
076                    return _journalArticleLocalService.dynamicQuery(dynamicQuery, start,
077                            end, orderByComparator);
078            }
079    
080            public long dynamicQueryCount(
081                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
082                    throws com.liferay.portal.kernel.exception.SystemException {
083                    return _journalArticleLocalService.dynamicQueryCount(dynamicQuery);
084            }
085    
086            public com.liferay.portlet.journal.model.JournalArticle getJournalArticle(
087                    long id)
088                    throws com.liferay.portal.kernel.exception.PortalException,
089                            com.liferay.portal.kernel.exception.SystemException {
090                    return _journalArticleLocalService.getJournalArticle(id);
091            }
092    
093            public com.liferay.portlet.journal.model.JournalArticle getJournalArticleByUuidAndGroupId(
094                    java.lang.String uuid, long groupId)
095                    throws com.liferay.portal.kernel.exception.PortalException,
096                            com.liferay.portal.kernel.exception.SystemException {
097                    return _journalArticleLocalService.getJournalArticleByUuidAndGroupId(uuid,
098                            groupId);
099            }
100    
101            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getJournalArticles(
102                    int start, int end)
103                    throws com.liferay.portal.kernel.exception.SystemException {
104                    return _journalArticleLocalService.getJournalArticles(start, end);
105            }
106    
107            public int getJournalArticlesCount()
108                    throws com.liferay.portal.kernel.exception.SystemException {
109                    return _journalArticleLocalService.getJournalArticlesCount();
110            }
111    
112            public com.liferay.portlet.journal.model.JournalArticle updateJournalArticle(
113                    com.liferay.portlet.journal.model.JournalArticle journalArticle)
114                    throws com.liferay.portal.kernel.exception.SystemException {
115                    return _journalArticleLocalService.updateJournalArticle(journalArticle);
116            }
117    
118            public com.liferay.portlet.journal.model.JournalArticle updateJournalArticle(
119                    com.liferay.portlet.journal.model.JournalArticle journalArticle,
120                    boolean merge)
121                    throws com.liferay.portal.kernel.exception.SystemException {
122                    return _journalArticleLocalService.updateJournalArticle(journalArticle,
123                            merge);
124            }
125    
126            public com.liferay.portlet.journal.model.JournalArticle addArticle(
127                    long userId, long groupId, java.lang.String articleId,
128                    boolean autoArticleId, double version, java.lang.String title,
129                    java.lang.String description, java.lang.String content,
130                    java.lang.String type, java.lang.String structureId,
131                    java.lang.String templateId, int displayDateMonth, int displayDateDay,
132                    int displayDateYear, int displayDateHour, int displayDateMinute,
133                    int expirationDateMonth, int expirationDateDay, int expirationDateYear,
134                    int expirationDateHour, int expirationDateMinute, boolean neverExpire,
135                    int reviewDateMonth, int reviewDateDay, int reviewDateYear,
136                    int reviewDateHour, int reviewDateMinute, boolean neverReview,
137                    boolean indexable, boolean smallImage, java.lang.String smallImageURL,
138                    java.io.File smallFile, java.util.Map<java.lang.String, byte[]> images,
139                    java.lang.String articleURL,
140                    com.liferay.portal.service.ServiceContext serviceContext)
141                    throws com.liferay.portal.kernel.exception.PortalException,
142                            com.liferay.portal.kernel.exception.SystemException {
143                    return _journalArticleLocalService.addArticle(userId, groupId,
144                            articleId, autoArticleId, version, title, description, content,
145                            type, structureId, templateId, displayDateMonth, displayDateDay,
146                            displayDateYear, displayDateHour, displayDateMinute,
147                            expirationDateMonth, expirationDateDay, expirationDateYear,
148                            expirationDateHour, expirationDateMinute, neverExpire,
149                            reviewDateMonth, reviewDateDay, reviewDateYear, reviewDateHour,
150                            reviewDateMinute, neverReview, indexable, smallImage,
151                            smallImageURL, smallFile, images, articleURL, serviceContext);
152            }
153    
154            public void addArticleResources(
155                    com.liferay.portlet.journal.model.JournalArticle article,
156                    boolean addCommunityPermissions, boolean addGuestPermissions)
157                    throws com.liferay.portal.kernel.exception.PortalException,
158                            com.liferay.portal.kernel.exception.SystemException {
159                    _journalArticleLocalService.addArticleResources(article,
160                            addCommunityPermissions, addGuestPermissions);
161            }
162    
163            public void addArticleResources(
164                    com.liferay.portlet.journal.model.JournalArticle article,
165                    java.lang.String[] communityPermissions,
166                    java.lang.String[] guestPermissions)
167                    throws com.liferay.portal.kernel.exception.PortalException,
168                            com.liferay.portal.kernel.exception.SystemException {
169                    _journalArticleLocalService.addArticleResources(article,
170                            communityPermissions, guestPermissions);
171            }
172    
173            public void addArticleResources(long groupId, java.lang.String articleId,
174                    boolean addCommunityPermissions, boolean addGuestPermissions)
175                    throws com.liferay.portal.kernel.exception.PortalException,
176                            com.liferay.portal.kernel.exception.SystemException {
177                    _journalArticleLocalService.addArticleResources(groupId, articleId,
178                            addCommunityPermissions, addGuestPermissions);
179            }
180    
181            public void addArticleResources(long groupId, java.lang.String articleId,
182                    java.lang.String[] communityPermissions,
183                    java.lang.String[] guestPermissions)
184                    throws com.liferay.portal.kernel.exception.PortalException,
185                            com.liferay.portal.kernel.exception.SystemException {
186                    _journalArticleLocalService.addArticleResources(groupId, articleId,
187                            communityPermissions, guestPermissions);
188            }
189    
190            public com.liferay.portlet.journal.model.JournalArticle checkArticleResourcePrimKey(
191                    long groupId, java.lang.String articleId, double version)
192                    throws com.liferay.portal.kernel.exception.PortalException,
193                            com.liferay.portal.kernel.exception.SystemException {
194                    return _journalArticleLocalService.checkArticleResourcePrimKey(groupId,
195                            articleId, version);
196            }
197    
198            public void checkArticles()
199                    throws com.liferay.portal.kernel.exception.PortalException,
200                            com.liferay.portal.kernel.exception.SystemException {
201                    _journalArticleLocalService.checkArticles();
202            }
203    
204            public void checkNewLine(long groupId, java.lang.String articleId,
205                    double version)
206                    throws com.liferay.portal.kernel.exception.PortalException,
207                            com.liferay.portal.kernel.exception.SystemException {
208                    _journalArticleLocalService.checkNewLine(groupId, articleId, version);
209            }
210    
211            public void checkStructure(long groupId, java.lang.String articleId,
212                    double version)
213                    throws com.liferay.portal.kernel.exception.PortalException,
214                            com.liferay.portal.kernel.exception.SystemException {
215                    _journalArticleLocalService.checkStructure(groupId, articleId, version);
216            }
217    
218            public com.liferay.portlet.journal.model.JournalArticle copyArticle(
219                    long userId, long groupId, java.lang.String oldArticleId,
220                    java.lang.String newArticleId, boolean autoArticleId, double version)
221                    throws com.liferay.portal.kernel.exception.PortalException,
222                            com.liferay.portal.kernel.exception.SystemException {
223                    return _journalArticleLocalService.copyArticle(userId, groupId,
224                            oldArticleId, newArticleId, autoArticleId, version);
225            }
226    
227            public void deleteArticle(
228                    com.liferay.portlet.journal.model.JournalArticle article,
229                    java.lang.String articleURL,
230                    com.liferay.portal.service.ServiceContext serviceContext)
231                    throws com.liferay.portal.kernel.exception.PortalException,
232                            com.liferay.portal.kernel.exception.SystemException {
233                    _journalArticleLocalService.deleteArticle(article, articleURL,
234                            serviceContext);
235            }
236    
237            public void deleteArticle(long groupId, java.lang.String articleId,
238                    double version, java.lang.String articleURL,
239                    com.liferay.portal.service.ServiceContext serviceContext)
240                    throws com.liferay.portal.kernel.exception.PortalException,
241                            com.liferay.portal.kernel.exception.SystemException {
242                    _journalArticleLocalService.deleteArticle(groupId, articleId, version,
243                            articleURL, serviceContext);
244            }
245    
246            public void deleteArticle(long groupId, java.lang.String articleId,
247                    com.liferay.portal.service.ServiceContext serviceContext)
248                    throws com.liferay.portal.kernel.exception.PortalException,
249                            com.liferay.portal.kernel.exception.SystemException {
250                    _journalArticleLocalService.deleteArticle(groupId, articleId,
251                            serviceContext);
252            }
253    
254            public void deleteArticles(long groupId)
255                    throws com.liferay.portal.kernel.exception.PortalException,
256                            com.liferay.portal.kernel.exception.SystemException {
257                    _journalArticleLocalService.deleteArticles(groupId);
258            }
259    
260            public com.liferay.portlet.journal.model.JournalArticle expireArticle(
261                    long userId, long groupId, java.lang.String articleId, double version,
262                    java.lang.String articleURL,
263                    com.liferay.portal.service.ServiceContext serviceContext)
264                    throws com.liferay.portal.kernel.exception.PortalException,
265                            com.liferay.portal.kernel.exception.SystemException {
266                    return _journalArticleLocalService.expireArticle(userId, groupId,
267                            articleId, version, articleURL, serviceContext);
268            }
269    
270            public com.liferay.portlet.journal.model.JournalArticle getArticle(long id)
271                    throws com.liferay.portal.kernel.exception.PortalException,
272                            com.liferay.portal.kernel.exception.SystemException {
273                    return _journalArticleLocalService.getArticle(id);
274            }
275    
276            public com.liferay.portlet.journal.model.JournalArticle getArticle(
277                    long groupId, java.lang.String articleId)
278                    throws com.liferay.portal.kernel.exception.PortalException,
279                            com.liferay.portal.kernel.exception.SystemException {
280                    return _journalArticleLocalService.getArticle(groupId, articleId);
281            }
282    
283            public com.liferay.portlet.journal.model.JournalArticle getArticle(
284                    long groupId, java.lang.String articleId, double version)
285                    throws com.liferay.portal.kernel.exception.PortalException,
286                            com.liferay.portal.kernel.exception.SystemException {
287                    return _journalArticleLocalService.getArticle(groupId, articleId,
288                            version);
289            }
290    
291            public com.liferay.portlet.journal.model.JournalArticle getArticleByUrlTitle(
292                    long groupId, java.lang.String urlTitle)
293                    throws com.liferay.portal.kernel.exception.PortalException,
294                            com.liferay.portal.kernel.exception.SystemException {
295                    return _journalArticleLocalService.getArticleByUrlTitle(groupId,
296                            urlTitle);
297            }
298    
299            public java.lang.String getArticleContent(
300                    com.liferay.portlet.journal.model.JournalArticle article,
301                    java.lang.String templateId, java.lang.String viewMode,
302                    java.lang.String languageId,
303                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
304                    throws com.liferay.portal.kernel.exception.PortalException,
305                            com.liferay.portal.kernel.exception.SystemException {
306                    return _journalArticleLocalService.getArticleContent(article,
307                            templateId, viewMode, languageId, themeDisplay);
308            }
309    
310            public java.lang.String getArticleContent(long groupId,
311                    java.lang.String articleId, double version, java.lang.String viewMode,
312                    java.lang.String templateId, java.lang.String languageId,
313                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
314                    throws com.liferay.portal.kernel.exception.PortalException,
315                            com.liferay.portal.kernel.exception.SystemException {
316                    return _journalArticleLocalService.getArticleContent(groupId,
317                            articleId, version, viewMode, templateId, languageId, themeDisplay);
318            }
319    
320            public java.lang.String getArticleContent(long groupId,
321                    java.lang.String articleId, double version, java.lang.String viewMode,
322                    java.lang.String languageId,
323                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
324                    throws com.liferay.portal.kernel.exception.PortalException,
325                            com.liferay.portal.kernel.exception.SystemException {
326                    return _journalArticleLocalService.getArticleContent(groupId,
327                            articleId, version, viewMode, languageId, themeDisplay);
328            }
329    
330            public java.lang.String getArticleContent(long groupId,
331                    java.lang.String articleId, java.lang.String viewMode,
332                    java.lang.String templateId, java.lang.String languageId,
333                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
334                    throws com.liferay.portal.kernel.exception.PortalException,
335                            com.liferay.portal.kernel.exception.SystemException {
336                    return _journalArticleLocalService.getArticleContent(groupId,
337                            articleId, viewMode, templateId, languageId, themeDisplay);
338            }
339    
340            public java.lang.String getArticleContent(long groupId,
341                    java.lang.String articleId, java.lang.String viewMode,
342                    java.lang.String languageId,
343                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
344                    throws com.liferay.portal.kernel.exception.PortalException,
345                            com.liferay.portal.kernel.exception.SystemException {
346                    return _journalArticleLocalService.getArticleContent(groupId,
347                            articleId, viewMode, languageId, themeDisplay);
348            }
349    
350            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
351                    com.liferay.portlet.journal.model.JournalArticle article,
352                    java.lang.String templateId, java.lang.String viewMode,
353                    java.lang.String languageId, int page, java.lang.String xmlRequest,
354                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
355                    throws com.liferay.portal.kernel.exception.PortalException,
356                            com.liferay.portal.kernel.exception.SystemException {
357                    return _journalArticleLocalService.getArticleDisplay(article,
358                            templateId, viewMode, languageId, page, xmlRequest, themeDisplay);
359            }
360    
361            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
362                    long groupId, java.lang.String articleId, double version,
363                    java.lang.String templateId, java.lang.String viewMode,
364                    java.lang.String languageId, int page, java.lang.String xmlRequest,
365                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
366                    throws com.liferay.portal.kernel.exception.PortalException,
367                            com.liferay.portal.kernel.exception.SystemException {
368                    return _journalArticleLocalService.getArticleDisplay(groupId,
369                            articleId, version, templateId, viewMode, languageId, page,
370                            xmlRequest, themeDisplay);
371            }
372    
373            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
374                    long groupId, java.lang.String articleId, double version,
375                    java.lang.String templateId, java.lang.String viewMode,
376                    java.lang.String languageId,
377                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
378                    throws com.liferay.portal.kernel.exception.PortalException,
379                            com.liferay.portal.kernel.exception.SystemException {
380                    return _journalArticleLocalService.getArticleDisplay(groupId,
381                            articleId, version, templateId, viewMode, languageId, themeDisplay);
382            }
383    
384            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
385                    long groupId, java.lang.String articleId, java.lang.String viewMode,
386                    java.lang.String languageId, int page, java.lang.String xmlRequest,
387                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
388                    throws com.liferay.portal.kernel.exception.PortalException,
389                            com.liferay.portal.kernel.exception.SystemException {
390                    return _journalArticleLocalService.getArticleDisplay(groupId,
391                            articleId, viewMode, languageId, page, xmlRequest, themeDisplay);
392            }
393    
394            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
395                    long groupId, java.lang.String articleId, java.lang.String templateId,
396                    java.lang.String viewMode, java.lang.String languageId, int page,
397                    java.lang.String xmlRequest,
398                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
399                    throws com.liferay.portal.kernel.exception.PortalException,
400                            com.liferay.portal.kernel.exception.SystemException {
401                    return _journalArticleLocalService.getArticleDisplay(groupId,
402                            articleId, templateId, viewMode, languageId, page, xmlRequest,
403                            themeDisplay);
404            }
405    
406            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
407                    long groupId, java.lang.String articleId, java.lang.String templateId,
408                    java.lang.String viewMode, java.lang.String languageId,
409                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
410                    throws com.liferay.portal.kernel.exception.PortalException,
411                            com.liferay.portal.kernel.exception.SystemException {
412                    return _journalArticleLocalService.getArticleDisplay(groupId,
413                            articleId, templateId, viewMode, languageId, themeDisplay);
414            }
415    
416            public com.liferay.portlet.journal.model.JournalArticleDisplay getArticleDisplay(
417                    long groupId, java.lang.String articleId, java.lang.String viewMode,
418                    java.lang.String languageId,
419                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
420                    throws com.liferay.portal.kernel.exception.PortalException,
421                            com.liferay.portal.kernel.exception.SystemException {
422                    return _journalArticleLocalService.getArticleDisplay(groupId,
423                            articleId, viewMode, languageId, themeDisplay);
424            }
425    
426            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getArticles()
427                    throws com.liferay.portal.kernel.exception.SystemException {
428                    return _journalArticleLocalService.getArticles();
429            }
430    
431            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getArticles(
432                    long groupId)
433                    throws com.liferay.portal.kernel.exception.SystemException {
434                    return _journalArticleLocalService.getArticles(groupId);
435            }
436    
437            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getArticles(
438                    long groupId, int start, int end)
439                    throws com.liferay.portal.kernel.exception.SystemException {
440                    return _journalArticleLocalService.getArticles(groupId, start, end);
441            }
442    
443            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getArticles(
444                    long groupId, int start, int end,
445                    com.liferay.portal.kernel.util.OrderByComparator obc)
446                    throws com.liferay.portal.kernel.exception.SystemException {
447                    return _journalArticleLocalService.getArticles(groupId, start, end, obc);
448            }
449    
450            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getArticles(
451                    long groupId, java.lang.String articleId)
452                    throws com.liferay.portal.kernel.exception.SystemException {
453                    return _journalArticleLocalService.getArticles(groupId, articleId);
454            }
455    
456            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getArticlesBySmallImageId(
457                    long smallImageId)
458                    throws com.liferay.portal.kernel.exception.SystemException {
459                    return _journalArticleLocalService.getArticlesBySmallImageId(smallImageId);
460            }
461    
462            public int getArticlesCount(long groupId)
463                    throws com.liferay.portal.kernel.exception.SystemException {
464                    return _journalArticleLocalService.getArticlesCount(groupId);
465            }
466    
467            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getCompanyArticles(
468                    long companyId, int status, int start, int end)
469                    throws com.liferay.portal.kernel.exception.SystemException {
470                    return _journalArticleLocalService.getCompanyArticles(companyId,
471                            status, start, end);
472            }
473    
474            public int getCompanyArticlesCount(long companyId, int status)
475                    throws com.liferay.portal.kernel.exception.SystemException {
476                    return _journalArticleLocalService.getCompanyArticlesCount(companyId,
477                            status);
478            }
479    
480            public com.liferay.portlet.journal.model.JournalArticle getDisplayArticle(
481                    long groupId, java.lang.String articleId)
482                    throws com.liferay.portal.kernel.exception.PortalException,
483                            com.liferay.portal.kernel.exception.SystemException {
484                    return _journalArticleLocalService.getDisplayArticle(groupId, articleId);
485            }
486    
487            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
488                    long resourcePrimKey)
489                    throws com.liferay.portal.kernel.exception.PortalException,
490                            com.liferay.portal.kernel.exception.SystemException {
491                    return _journalArticleLocalService.getLatestArticle(resourcePrimKey);
492            }
493    
494            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
495                    long resourcePrimKey, int status)
496                    throws com.liferay.portal.kernel.exception.PortalException,
497                            com.liferay.portal.kernel.exception.SystemException {
498                    return _journalArticleLocalService.getLatestArticle(resourcePrimKey,
499                            status);
500            }
501    
502            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
503                    long resourcePrimKey, int status, boolean preferApproved)
504                    throws com.liferay.portal.kernel.exception.PortalException,
505                            com.liferay.portal.kernel.exception.SystemException {
506                    return _journalArticleLocalService.getLatestArticle(resourcePrimKey,
507                            status, preferApproved);
508            }
509    
510            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
511                    long groupId, java.lang.String articleId)
512                    throws com.liferay.portal.kernel.exception.PortalException,
513                            com.liferay.portal.kernel.exception.SystemException {
514                    return _journalArticleLocalService.getLatestArticle(groupId, articleId);
515            }
516    
517            public com.liferay.portlet.journal.model.JournalArticle getLatestArticle(
518                    long groupId, java.lang.String articleId, int status)
519                    throws com.liferay.portal.kernel.exception.PortalException,
520                            com.liferay.portal.kernel.exception.SystemException {
521                    return _journalArticleLocalService.getLatestArticle(groupId, articleId,
522                            status);
523            }
524    
525            public com.liferay.portlet.journal.model.JournalArticle getLatestArticleByUrlTitle(
526                    long groupId, java.lang.String urlTitle, int status)
527                    throws com.liferay.portal.kernel.exception.PortalException,
528                            com.liferay.portal.kernel.exception.SystemException {
529                    return _journalArticleLocalService.getLatestArticleByUrlTitle(groupId,
530                            urlTitle, status);
531            }
532    
533            public double getLatestVersion(long groupId, java.lang.String articleId)
534                    throws com.liferay.portal.kernel.exception.PortalException,
535                            com.liferay.portal.kernel.exception.SystemException {
536                    return _journalArticleLocalService.getLatestVersion(groupId, articleId);
537            }
538    
539            public double getLatestVersion(long groupId, java.lang.String articleId,
540                    int status)
541                    throws com.liferay.portal.kernel.exception.PortalException,
542                            com.liferay.portal.kernel.exception.SystemException {
543                    return _journalArticleLocalService.getLatestVersion(groupId, articleId,
544                            status);
545            }
546    
547            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getStructureArticles(
548                    long groupId, java.lang.String structureId)
549                    throws com.liferay.portal.kernel.exception.SystemException {
550                    return _journalArticleLocalService.getStructureArticles(groupId,
551                            structureId);
552            }
553    
554            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getStructureArticles(
555                    long groupId, java.lang.String structureId, int start, int end,
556                    com.liferay.portal.kernel.util.OrderByComparator obc)
557                    throws com.liferay.portal.kernel.exception.SystemException {
558                    return _journalArticleLocalService.getStructureArticles(groupId,
559                            structureId, start, end, obc);
560            }
561    
562            public int getStructureArticlesCount(long groupId,
563                    java.lang.String structureId)
564                    throws com.liferay.portal.kernel.exception.SystemException {
565                    return _journalArticleLocalService.getStructureArticlesCount(groupId,
566                            structureId);
567            }
568    
569            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getTemplateArticles(
570                    long groupId, java.lang.String templateId)
571                    throws com.liferay.portal.kernel.exception.SystemException {
572                    return _journalArticleLocalService.getTemplateArticles(groupId,
573                            templateId);
574            }
575    
576            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> getTemplateArticles(
577                    long groupId, java.lang.String templateId, int start, int end,
578                    com.liferay.portal.kernel.util.OrderByComparator obc)
579                    throws com.liferay.portal.kernel.exception.SystemException {
580                    return _journalArticleLocalService.getTemplateArticles(groupId,
581                            templateId, start, end, obc);
582            }
583    
584            public int getTemplateArticlesCount(long groupId,
585                    java.lang.String templateId)
586                    throws com.liferay.portal.kernel.exception.SystemException {
587                    return _journalArticleLocalService.getTemplateArticlesCount(groupId,
588                            templateId);
589            }
590    
591            public boolean hasArticle(long groupId, java.lang.String articleId)
592                    throws com.liferay.portal.kernel.exception.SystemException {
593                    return _journalArticleLocalService.hasArticle(groupId, articleId);
594            }
595    
596            public boolean isLatestVersion(long groupId, java.lang.String articleId,
597                    double version)
598                    throws com.liferay.portal.kernel.exception.PortalException,
599                            com.liferay.portal.kernel.exception.SystemException {
600                    return _journalArticleLocalService.isLatestVersion(groupId, articleId,
601                            version);
602            }
603    
604            public boolean isLatestVersion(long groupId, java.lang.String articleId,
605                    double version, int status)
606                    throws com.liferay.portal.kernel.exception.PortalException,
607                            com.liferay.portal.kernel.exception.SystemException {
608                    return _journalArticleLocalService.isLatestVersion(groupId, articleId,
609                            version, status);
610            }
611    
612            public com.liferay.portlet.journal.model.JournalArticle removeArticleLocale(
613                    long groupId, java.lang.String articleId, double version,
614                    java.lang.String languageId)
615                    throws com.liferay.portal.kernel.exception.PortalException,
616                            com.liferay.portal.kernel.exception.SystemException {
617                    return _journalArticleLocalService.removeArticleLocale(groupId,
618                            articleId, version, languageId);
619            }
620    
621            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> search(
622                    long companyId, long groupId, java.lang.String keywords,
623                    java.lang.Double version, java.lang.String type,
624                    java.lang.String structureId, java.lang.String templateId,
625                    java.util.Date displayDateGT, java.util.Date displayDateLT, int status,
626                    java.util.Date reviewDate, int start, int end,
627                    com.liferay.portal.kernel.util.OrderByComparator obc)
628                    throws com.liferay.portal.kernel.exception.SystemException {
629                    return _journalArticleLocalService.search(companyId, groupId, keywords,
630                            version, type, structureId, templateId, displayDateGT,
631                            displayDateLT, status, reviewDate, start, end, obc);
632            }
633    
634            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> search(
635                    long companyId, long groupId, java.lang.String articleId,
636                    java.lang.Double version, java.lang.String title,
637                    java.lang.String description, java.lang.String content,
638                    java.lang.String type, java.lang.String structureId,
639                    java.lang.String templateId, java.util.Date displayDateGT,
640                    java.util.Date displayDateLT, int status, java.util.Date reviewDate,
641                    boolean andOperator, int start, int end,
642                    com.liferay.portal.kernel.util.OrderByComparator obc)
643                    throws com.liferay.portal.kernel.exception.SystemException {
644                    return _journalArticleLocalService.search(companyId, groupId,
645                            articleId, version, title, description, content, type, structureId,
646                            templateId, displayDateGT, displayDateLT, status, reviewDate,
647                            andOperator, start, end, obc);
648            }
649    
650            public java.util.List<com.liferay.portlet.journal.model.JournalArticle> search(
651                    long companyId, long groupId, java.lang.String articleId,
652                    java.lang.Double version, java.lang.String title,
653                    java.lang.String description, java.lang.String content,
654                    java.lang.String type, java.lang.String[] structureIds,
655                    java.lang.String[] templateIds, java.util.Date displayDateGT,
656                    java.util.Date displayDateLT, int status, java.util.Date reviewDate,
657                    boolean andOperator, int start, int end,
658                    com.liferay.portal.kernel.util.OrderByComparator obc)
659                    throws com.liferay.portal.kernel.exception.SystemException {
660                    return _journalArticleLocalService.search(companyId, groupId,
661                            articleId, version, title, description, content, type,
662                            structureIds, templateIds, displayDateGT, displayDateLT, status,
663                            reviewDate, andOperator, start, end, obc);
664            }
665    
666            public int searchCount(long companyId, long groupId,
667                    java.lang.String keywords, java.lang.Double version,
668                    java.lang.String type, java.lang.String structureId,
669                    java.lang.String templateId, java.util.Date displayDateGT,
670                    java.util.Date displayDateLT, int status, java.util.Date reviewDate)
671                    throws com.liferay.portal.kernel.exception.SystemException {
672                    return _journalArticleLocalService.searchCount(companyId, groupId,
673                            keywords, version, type, structureId, templateId, displayDateGT,
674                            displayDateLT, status, reviewDate);
675            }
676    
677            public int searchCount(long companyId, long groupId,
678                    java.lang.String articleId, java.lang.Double version,
679                    java.lang.String title, java.lang.String description,
680                    java.lang.String content, java.lang.String type,
681                    java.lang.String structureId, java.lang.String templateId,
682                    java.util.Date displayDateGT, java.util.Date displayDateLT, int status,
683                    java.util.Date reviewDate, boolean andOperator)
684                    throws com.liferay.portal.kernel.exception.SystemException {
685                    return _journalArticleLocalService.searchCount(companyId, groupId,
686                            articleId, version, title, description, content, type, structureId,
687                            templateId, displayDateGT, displayDateLT, status, reviewDate,
688                            andOperator);
689            }
690    
691            public int searchCount(long companyId, long groupId,
692                    java.lang.String articleId, java.lang.Double version,
693                    java.lang.String title, java.lang.String description,
694                    java.lang.String content, java.lang.String type,
695                    java.lang.String[] structureIds, java.lang.String[] templateIds,
696                    java.util.Date displayDateGT, java.util.Date displayDateLT, int status,
697                    java.util.Date reviewDate, boolean andOperator)
698                    throws com.liferay.portal.kernel.exception.SystemException {
699                    return _journalArticleLocalService.searchCount(companyId, groupId,
700                            articleId, version, title, description, content, type,
701                            structureIds, templateIds, displayDateGT, displayDateLT, status,
702                            reviewDate, andOperator);
703            }
704    
705            public com.liferay.portlet.journal.model.JournalArticle updateArticle(
706                    long userId, long groupId, java.lang.String articleId, double version,
707                    java.lang.String content)
708                    throws com.liferay.portal.kernel.exception.PortalException,
709                            com.liferay.portal.kernel.exception.SystemException {
710                    return _journalArticleLocalService.updateArticle(userId, groupId,
711                            articleId, version, content);
712            }
713    
714            public com.liferay.portlet.journal.model.JournalArticle updateArticle(
715                    long userId, long groupId, java.lang.String articleId, double version,
716                    java.lang.String title, java.lang.String description,
717                    java.lang.String content, java.lang.String type,
718                    java.lang.String structureId, java.lang.String templateId,
719                    int displayDateMonth, int displayDateDay, int displayDateYear,
720                    int displayDateHour, int displayDateMinute, int expirationDateMonth,
721                    int expirationDateDay, int expirationDateYear, int expirationDateHour,
722                    int expirationDateMinute, boolean neverExpire, int reviewDateMonth,
723                    int reviewDateDay, int reviewDateYear, int reviewDateHour,
724                    int reviewDateMinute, boolean neverReview, boolean indexable,
725                    boolean smallImage, java.lang.String smallImageURL,
726                    java.io.File smallFile, java.util.Map<java.lang.String, byte[]> images,
727                    java.lang.String articleURL,
728                    com.liferay.portal.service.ServiceContext serviceContext)
729                    throws com.liferay.portal.kernel.exception.PortalException,
730                            com.liferay.portal.kernel.exception.SystemException {
731                    return _journalArticleLocalService.updateArticle(userId, groupId,
732                            articleId, version, title, description, content, type, structureId,
733                            templateId, displayDateMonth, displayDateDay, displayDateYear,
734                            displayDateHour, displayDateMinute, expirationDateMonth,
735                            expirationDateDay, expirationDateYear, expirationDateHour,
736                            expirationDateMinute, neverExpire, reviewDateMonth, reviewDateDay,
737                            reviewDateYear, reviewDateHour, reviewDateMinute, neverReview,
738                            indexable, smallImage, smallImageURL, smallFile, images,
739                            articleURL, serviceContext);
740            }
741    
742            public void updateAsset(long userId,
743                    com.liferay.portlet.journal.model.JournalArticle article,
744                    long[] assetCategoryIds, java.lang.String[] assetTagNames)
745                    throws com.liferay.portal.kernel.exception.PortalException,
746                            com.liferay.portal.kernel.exception.SystemException {
747                    _journalArticleLocalService.updateAsset(userId, article,
748                            assetCategoryIds, assetTagNames);
749            }
750    
751            public com.liferay.portlet.journal.model.JournalArticle updateContent(
752                    long groupId, java.lang.String articleId, double version,
753                    java.lang.String content)
754                    throws com.liferay.portal.kernel.exception.PortalException,
755                            com.liferay.portal.kernel.exception.SystemException {
756                    return _journalArticleLocalService.updateContent(groupId, articleId,
757                            version, content);
758            }
759    
760            public com.liferay.portlet.journal.model.JournalArticle updateStatus(
761                    long userId, com.liferay.portlet.journal.model.JournalArticle article,
762                    int status, java.lang.String articleURL,
763                    com.liferay.portal.service.ServiceContext serviceContext)
764                    throws com.liferay.portal.kernel.exception.PortalException,
765                            com.liferay.portal.kernel.exception.SystemException {
766                    return _journalArticleLocalService.updateStatus(userId, article,
767                            status, articleURL, serviceContext);
768            }
769    
770            public com.liferay.portlet.journal.model.JournalArticle updateStatus(
771                    long userId, long classPK, int status,
772                    com.liferay.portal.service.ServiceContext serviceContext)
773                    throws com.liferay.portal.kernel.exception.PortalException,
774                            com.liferay.portal.kernel.exception.SystemException {
775                    return _journalArticleLocalService.updateStatus(userId, classPK,
776                            status, serviceContext);
777            }
778    
779            public com.liferay.portlet.journal.model.JournalArticle updateStatus(
780                    long userId, long groupId, java.lang.String articleId, double version,
781                    int status, java.lang.String articleURL,
782                    com.liferay.portal.service.ServiceContext serviceContext)
783                    throws com.liferay.portal.kernel.exception.PortalException,
784                            com.liferay.portal.kernel.exception.SystemException {
785                    return _journalArticleLocalService.updateStatus(userId, groupId,
786                            articleId, version, status, articleURL, serviceContext);
787            }
788    
789            public JournalArticleLocalService getWrappedJournalArticleLocalService() {
790                    return _journalArticleLocalService;
791            }
792    
793            private JournalArticleLocalService _journalArticleLocalService;
794    }