001    /**
002     * Copyright (c) 2000-2013 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.model;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.kernel.lar.StagedModelType;
020    import com.liferay.portal.kernel.util.Validator;
021    import com.liferay.portal.model.ModelWrapper;
022    
023    import java.util.Date;
024    import java.util.HashMap;
025    import java.util.Map;
026    
027    /**
028     * <p>
029     * This class is a wrapper for {@link JournalArticle}.
030     * </p>
031     *
032     * @author Brian Wing Shun Chan
033     * @see JournalArticle
034     * @generated
035     */
036    @ProviderType
037    public class JournalArticleWrapper implements JournalArticle,
038            ModelWrapper<JournalArticle> {
039            public JournalArticleWrapper(JournalArticle journalArticle) {
040                    _journalArticle = journalArticle;
041            }
042    
043            @Override
044            public Class<?> getModelClass() {
045                    return JournalArticle.class;
046            }
047    
048            @Override
049            public String getModelClassName() {
050                    return JournalArticle.class.getName();
051            }
052    
053            @Override
054            public Map<String, Object> getModelAttributes() {
055                    Map<String, Object> attributes = new HashMap<String, Object>();
056    
057                    attributes.put("uuid", getUuid());
058                    attributes.put("id", getId());
059                    attributes.put("resourcePrimKey", getResourcePrimKey());
060                    attributes.put("groupId", getGroupId());
061                    attributes.put("companyId", getCompanyId());
062                    attributes.put("userId", getUserId());
063                    attributes.put("userName", getUserName());
064                    attributes.put("createDate", getCreateDate());
065                    attributes.put("modifiedDate", getModifiedDate());
066                    attributes.put("folderId", getFolderId());
067                    attributes.put("classNameId", getClassNameId());
068                    attributes.put("classPK", getClassPK());
069                    attributes.put("treePath", getTreePath());
070                    attributes.put("articleId", getArticleId());
071                    attributes.put("version", getVersion());
072                    attributes.put("title", getTitle());
073                    attributes.put("urlTitle", getUrlTitle());
074                    attributes.put("description", getDescription());
075                    attributes.put("content", getContent());
076                    attributes.put("type", getType());
077                    attributes.put("structureId", getStructureId());
078                    attributes.put("templateId", getTemplateId());
079                    attributes.put("layoutUuid", getLayoutUuid());
080                    attributes.put("displayDate", getDisplayDate());
081                    attributes.put("expirationDate", getExpirationDate());
082                    attributes.put("reviewDate", getReviewDate());
083                    attributes.put("indexable", getIndexable());
084                    attributes.put("smallImage", getSmallImage());
085                    attributes.put("smallImageId", getSmallImageId());
086                    attributes.put("smallImageURL", getSmallImageURL());
087                    attributes.put("status", getStatus());
088                    attributes.put("statusByUserId", getStatusByUserId());
089                    attributes.put("statusByUserName", getStatusByUserName());
090                    attributes.put("statusDate", getStatusDate());
091    
092                    return attributes;
093            }
094    
095            @Override
096            public void setModelAttributes(Map<String, Object> attributes) {
097                    String uuid = (String)attributes.get("uuid");
098    
099                    if (uuid != null) {
100                            setUuid(uuid);
101                    }
102    
103                    Long id = (Long)attributes.get("id");
104    
105                    if (id != null) {
106                            setId(id);
107                    }
108    
109                    Long resourcePrimKey = (Long)attributes.get("resourcePrimKey");
110    
111                    if (resourcePrimKey != null) {
112                            setResourcePrimKey(resourcePrimKey);
113                    }
114    
115                    Long groupId = (Long)attributes.get("groupId");
116    
117                    if (groupId != null) {
118                            setGroupId(groupId);
119                    }
120    
121                    Long companyId = (Long)attributes.get("companyId");
122    
123                    if (companyId != null) {
124                            setCompanyId(companyId);
125                    }
126    
127                    Long userId = (Long)attributes.get("userId");
128    
129                    if (userId != null) {
130                            setUserId(userId);
131                    }
132    
133                    String userName = (String)attributes.get("userName");
134    
135                    if (userName != null) {
136                            setUserName(userName);
137                    }
138    
139                    Date createDate = (Date)attributes.get("createDate");
140    
141                    if (createDate != null) {
142                            setCreateDate(createDate);
143                    }
144    
145                    Date modifiedDate = (Date)attributes.get("modifiedDate");
146    
147                    if (modifiedDate != null) {
148                            setModifiedDate(modifiedDate);
149                    }
150    
151                    Long folderId = (Long)attributes.get("folderId");
152    
153                    if (folderId != null) {
154                            setFolderId(folderId);
155                    }
156    
157                    Long classNameId = (Long)attributes.get("classNameId");
158    
159                    if (classNameId != null) {
160                            setClassNameId(classNameId);
161                    }
162    
163                    Long classPK = (Long)attributes.get("classPK");
164    
165                    if (classPK != null) {
166                            setClassPK(classPK);
167                    }
168    
169                    String treePath = (String)attributes.get("treePath");
170    
171                    if (treePath != null) {
172                            setTreePath(treePath);
173                    }
174    
175                    String articleId = (String)attributes.get("articleId");
176    
177                    if (articleId != null) {
178                            setArticleId(articleId);
179                    }
180    
181                    Double version = (Double)attributes.get("version");
182    
183                    if (version != null) {
184                            setVersion(version);
185                    }
186    
187                    String title = (String)attributes.get("title");
188    
189                    if (title != null) {
190                            setTitle(title);
191                    }
192    
193                    String urlTitle = (String)attributes.get("urlTitle");
194    
195                    if (urlTitle != null) {
196                            setUrlTitle(urlTitle);
197                    }
198    
199                    String description = (String)attributes.get("description");
200    
201                    if (description != null) {
202                            setDescription(description);
203                    }
204    
205                    String content = (String)attributes.get("content");
206    
207                    if (content != null) {
208                            setContent(content);
209                    }
210    
211                    String type = (String)attributes.get("type");
212    
213                    if (type != null) {
214                            setType(type);
215                    }
216    
217                    String structureId = (String)attributes.get("structureId");
218    
219                    if (structureId != null) {
220                            setStructureId(structureId);
221                    }
222    
223                    String templateId = (String)attributes.get("templateId");
224    
225                    if (templateId != null) {
226                            setTemplateId(templateId);
227                    }
228    
229                    String layoutUuid = (String)attributes.get("layoutUuid");
230    
231                    if (layoutUuid != null) {
232                            setLayoutUuid(layoutUuid);
233                    }
234    
235                    Date displayDate = (Date)attributes.get("displayDate");
236    
237                    if (displayDate != null) {
238                            setDisplayDate(displayDate);
239                    }
240    
241                    Date expirationDate = (Date)attributes.get("expirationDate");
242    
243                    if (expirationDate != null) {
244                            setExpirationDate(expirationDate);
245                    }
246    
247                    Date reviewDate = (Date)attributes.get("reviewDate");
248    
249                    if (reviewDate != null) {
250                            setReviewDate(reviewDate);
251                    }
252    
253                    Boolean indexable = (Boolean)attributes.get("indexable");
254    
255                    if (indexable != null) {
256                            setIndexable(indexable);
257                    }
258    
259                    Boolean smallImage = (Boolean)attributes.get("smallImage");
260    
261                    if (smallImage != null) {
262                            setSmallImage(smallImage);
263                    }
264    
265                    Long smallImageId = (Long)attributes.get("smallImageId");
266    
267                    if (smallImageId != null) {
268                            setSmallImageId(smallImageId);
269                    }
270    
271                    String smallImageURL = (String)attributes.get("smallImageURL");
272    
273                    if (smallImageURL != null) {
274                            setSmallImageURL(smallImageURL);
275                    }
276    
277                    Integer status = (Integer)attributes.get("status");
278    
279                    if (status != null) {
280                            setStatus(status);
281                    }
282    
283                    Long statusByUserId = (Long)attributes.get("statusByUserId");
284    
285                    if (statusByUserId != null) {
286                            setStatusByUserId(statusByUserId);
287                    }
288    
289                    String statusByUserName = (String)attributes.get("statusByUserName");
290    
291                    if (statusByUserName != null) {
292                            setStatusByUserName(statusByUserName);
293                    }
294    
295                    Date statusDate = (Date)attributes.get("statusDate");
296    
297                    if (statusDate != null) {
298                            setStatusDate(statusDate);
299                    }
300            }
301    
302            /**
303            * Returns the primary key of this journal article.
304            *
305            * @return the primary key of this journal article
306            */
307            @Override
308            public long getPrimaryKey() {
309                    return _journalArticle.getPrimaryKey();
310            }
311    
312            /**
313            * Sets the primary key of this journal article.
314            *
315            * @param primaryKey the primary key of this journal article
316            */
317            @Override
318            public void setPrimaryKey(long primaryKey) {
319                    _journalArticle.setPrimaryKey(primaryKey);
320            }
321    
322            /**
323            * Returns the uuid of this journal article.
324            *
325            * @return the uuid of this journal article
326            */
327            @Override
328            public java.lang.String getUuid() {
329                    return _journalArticle.getUuid();
330            }
331    
332            /**
333            * Sets the uuid of this journal article.
334            *
335            * @param uuid the uuid of this journal article
336            */
337            @Override
338            public void setUuid(java.lang.String uuid) {
339                    _journalArticle.setUuid(uuid);
340            }
341    
342            /**
343            * Returns the ID of this journal article.
344            *
345            * @return the ID of this journal article
346            */
347            @Override
348            public long getId() {
349                    return _journalArticle.getId();
350            }
351    
352            /**
353            * Sets the ID of this journal article.
354            *
355            * @param id the ID of this journal article
356            */
357            @Override
358            public void setId(long id) {
359                    _journalArticle.setId(id);
360            }
361    
362            /**
363            * Returns the resource prim key of this journal article.
364            *
365            * @return the resource prim key of this journal article
366            */
367            @Override
368            public long getResourcePrimKey() {
369                    return _journalArticle.getResourcePrimKey();
370            }
371    
372            /**
373            * Sets the resource prim key of this journal article.
374            *
375            * @param resourcePrimKey the resource prim key of this journal article
376            */
377            @Override
378            public void setResourcePrimKey(long resourcePrimKey) {
379                    _journalArticle.setResourcePrimKey(resourcePrimKey);
380            }
381    
382            @Override
383            public boolean isResourceMain() {
384                    return _journalArticle.isResourceMain();
385            }
386    
387            /**
388            * Returns the group ID of this journal article.
389            *
390            * @return the group ID of this journal article
391            */
392            @Override
393            public long getGroupId() {
394                    return _journalArticle.getGroupId();
395            }
396    
397            /**
398            * Sets the group ID of this journal article.
399            *
400            * @param groupId the group ID of this journal article
401            */
402            @Override
403            public void setGroupId(long groupId) {
404                    _journalArticle.setGroupId(groupId);
405            }
406    
407            /**
408            * Returns the company ID of this journal article.
409            *
410            * @return the company ID of this journal article
411            */
412            @Override
413            public long getCompanyId() {
414                    return _journalArticle.getCompanyId();
415            }
416    
417            /**
418            * Sets the company ID of this journal article.
419            *
420            * @param companyId the company ID of this journal article
421            */
422            @Override
423            public void setCompanyId(long companyId) {
424                    _journalArticle.setCompanyId(companyId);
425            }
426    
427            /**
428            * Returns the user ID of this journal article.
429            *
430            * @return the user ID of this journal article
431            */
432            @Override
433            public long getUserId() {
434                    return _journalArticle.getUserId();
435            }
436    
437            /**
438            * Sets the user ID of this journal article.
439            *
440            * @param userId the user ID of this journal article
441            */
442            @Override
443            public void setUserId(long userId) {
444                    _journalArticle.setUserId(userId);
445            }
446    
447            /**
448            * Returns the user uuid of this journal article.
449            *
450            * @return the user uuid of this journal article
451            * @throws SystemException if a system exception occurred
452            */
453            @Override
454            public java.lang.String getUserUuid()
455                    throws com.liferay.portal.kernel.exception.SystemException {
456                    return _journalArticle.getUserUuid();
457            }
458    
459            /**
460            * Sets the user uuid of this journal article.
461            *
462            * @param userUuid the user uuid of this journal article
463            */
464            @Override
465            public void setUserUuid(java.lang.String userUuid) {
466                    _journalArticle.setUserUuid(userUuid);
467            }
468    
469            /**
470            * Returns the user name of this journal article.
471            *
472            * @return the user name of this journal article
473            */
474            @Override
475            public java.lang.String getUserName() {
476                    return _journalArticle.getUserName();
477            }
478    
479            /**
480            * Sets the user name of this journal article.
481            *
482            * @param userName the user name of this journal article
483            */
484            @Override
485            public void setUserName(java.lang.String userName) {
486                    _journalArticle.setUserName(userName);
487            }
488    
489            /**
490            * Returns the create date of this journal article.
491            *
492            * @return the create date of this journal article
493            */
494            @Override
495            public java.util.Date getCreateDate() {
496                    return _journalArticle.getCreateDate();
497            }
498    
499            /**
500            * Sets the create date of this journal article.
501            *
502            * @param createDate the create date of this journal article
503            */
504            @Override
505            public void setCreateDate(java.util.Date createDate) {
506                    _journalArticle.setCreateDate(createDate);
507            }
508    
509            /**
510            * Returns the modified date of this journal article.
511            *
512            * @return the modified date of this journal article
513            */
514            @Override
515            public java.util.Date getModifiedDate() {
516                    return _journalArticle.getModifiedDate();
517            }
518    
519            /**
520            * Sets the modified date of this journal article.
521            *
522            * @param modifiedDate the modified date of this journal article
523            */
524            @Override
525            public void setModifiedDate(java.util.Date modifiedDate) {
526                    _journalArticle.setModifiedDate(modifiedDate);
527            }
528    
529            /**
530            * Returns the folder ID of this journal article.
531            *
532            * @return the folder ID of this journal article
533            */
534            @Override
535            public long getFolderId() {
536                    return _journalArticle.getFolderId();
537            }
538    
539            /**
540            * Sets the folder ID of this journal article.
541            *
542            * @param folderId the folder ID of this journal article
543            */
544            @Override
545            public void setFolderId(long folderId) {
546                    _journalArticle.setFolderId(folderId);
547            }
548    
549            /**
550            * Returns the fully qualified class name of this journal article.
551            *
552            * @return the fully qualified class name of this journal article
553            */
554            @Override
555            public java.lang.String getClassName() {
556                    return _journalArticle.getClassName();
557            }
558    
559            @Override
560            public void setClassName(java.lang.String className) {
561                    _journalArticle.setClassName(className);
562            }
563    
564            /**
565            * Returns the class name ID of this journal article.
566            *
567            * @return the class name ID of this journal article
568            */
569            @Override
570            public long getClassNameId() {
571                    return _journalArticle.getClassNameId();
572            }
573    
574            /**
575            * Sets the class name ID of this journal article.
576            *
577            * @param classNameId the class name ID of this journal article
578            */
579            @Override
580            public void setClassNameId(long classNameId) {
581                    _journalArticle.setClassNameId(classNameId);
582            }
583    
584            /**
585            * Returns the class p k of this journal article.
586            *
587            * @return the class p k of this journal article
588            */
589            @Override
590            public long getClassPK() {
591                    return _journalArticle.getClassPK();
592            }
593    
594            /**
595            * Sets the class p k of this journal article.
596            *
597            * @param classPK the class p k of this journal article
598            */
599            @Override
600            public void setClassPK(long classPK) {
601                    _journalArticle.setClassPK(classPK);
602            }
603    
604            /**
605            * Returns the tree path of this journal article.
606            *
607            * @return the tree path of this journal article
608            */
609            @Override
610            public java.lang.String getTreePath() {
611                    return _journalArticle.getTreePath();
612            }
613    
614            /**
615            * Sets the tree path of this journal article.
616            *
617            * @param treePath the tree path of this journal article
618            */
619            @Override
620            public void setTreePath(java.lang.String treePath) {
621                    _journalArticle.setTreePath(treePath);
622            }
623    
624            /**
625            * Returns the article ID of this journal article.
626            *
627            * @return the article ID of this journal article
628            */
629            @Override
630            public java.lang.String getArticleId() {
631                    return _journalArticle.getArticleId();
632            }
633    
634            /**
635            * Sets the article ID of this journal article.
636            *
637            * @param articleId the article ID of this journal article
638            */
639            @Override
640            public void setArticleId(java.lang.String articleId) {
641                    _journalArticle.setArticleId(articleId);
642            }
643    
644            /**
645            * Returns the version of this journal article.
646            *
647            * @return the version of this journal article
648            */
649            @Override
650            public double getVersion() {
651                    return _journalArticle.getVersion();
652            }
653    
654            /**
655            * Sets the version of this journal article.
656            *
657            * @param version the version of this journal article
658            */
659            @Override
660            public void setVersion(double version) {
661                    _journalArticle.setVersion(version);
662            }
663    
664            /**
665            * Returns the title of this journal article.
666            *
667            * @return the title of this journal article
668            */
669            @Override
670            public java.lang.String getTitle() {
671                    return _journalArticle.getTitle();
672            }
673    
674            /**
675            * Returns the localized title of this journal article in the language. Uses the default language if no localization exists for the requested language.
676            *
677            * @param locale the locale of the language
678            * @return the localized title of this journal article
679            */
680            @Override
681            public java.lang.String getTitle(java.util.Locale locale) {
682                    return _journalArticle.getTitle(locale);
683            }
684    
685            /**
686            * Returns the localized title of this journal article in the language, optionally using the default language if no localization exists for the requested language.
687            *
688            * @param locale the local of the language
689            * @param useDefault whether to use the default language if no localization exists for the requested language
690            * @return the localized title of this journal article. If <code>useDefault</code> is <code>false</code> and no localization exists for the requested language, an empty string will be returned.
691            */
692            @Override
693            public java.lang.String getTitle(java.util.Locale locale, boolean useDefault) {
694                    return _journalArticle.getTitle(locale, useDefault);
695            }
696    
697            /**
698            * Returns the localized title of this journal article in the language. Uses the default language if no localization exists for the requested language.
699            *
700            * @param languageId the ID of the language
701            * @return the localized title of this journal article
702            */
703            @Override
704            public java.lang.String getTitle(java.lang.String languageId) {
705                    return _journalArticle.getTitle(languageId);
706            }
707    
708            /**
709            * Returns the localized title of this journal article in the language, optionally using the default language if no localization exists for the requested language.
710            *
711            * @param languageId the ID of the language
712            * @param useDefault whether to use the default language if no localization exists for the requested language
713            * @return the localized title of this journal article
714            */
715            @Override
716            public java.lang.String getTitle(java.lang.String languageId,
717                    boolean useDefault) {
718                    return _journalArticle.getTitle(languageId, useDefault);
719            }
720    
721            @Override
722            public java.lang.String getTitleCurrentLanguageId() {
723                    return _journalArticle.getTitleCurrentLanguageId();
724            }
725    
726            @Override
727            public java.lang.String getTitleCurrentValue() {
728                    return _journalArticle.getTitleCurrentValue();
729            }
730    
731            /**
732            * Returns a map of the locales and localized titles of this journal article.
733            *
734            * @return the locales and localized titles of this journal article
735            */
736            @Override
737            public java.util.Map<java.util.Locale, java.lang.String> getTitleMap() {
738                    return _journalArticle.getTitleMap();
739            }
740    
741            /**
742            * Sets the title of this journal article.
743            *
744            * @param title the title of this journal article
745            */
746            @Override
747            public void setTitle(java.lang.String title) {
748                    _journalArticle.setTitle(title);
749            }
750    
751            /**
752            * Sets the localized title of this journal article in the language.
753            *
754            * @param title the localized title of this journal article
755            * @param locale the locale of the language
756            */
757            @Override
758            public void setTitle(java.lang.String title, java.util.Locale locale) {
759                    _journalArticle.setTitle(title, locale);
760            }
761    
762            /**
763            * Sets the localized title of this journal article in the language, and sets the default locale.
764            *
765            * @param title the localized title of this journal article
766            * @param locale the locale of the language
767            * @param defaultLocale the default locale
768            */
769            @Override
770            public void setTitle(java.lang.String title, java.util.Locale locale,
771                    java.util.Locale defaultLocale) {
772                    _journalArticle.setTitle(title, locale, defaultLocale);
773            }
774    
775            @Override
776            public void setTitleCurrentLanguageId(java.lang.String languageId) {
777                    _journalArticle.setTitleCurrentLanguageId(languageId);
778            }
779    
780            /**
781            * Sets the localized titles of this journal article from the map of locales and localized titles.
782            *
783            * @param titleMap the locales and localized titles of this journal article
784            */
785            @Override
786            public void setTitleMap(
787                    java.util.Map<java.util.Locale, java.lang.String> titleMap) {
788                    _journalArticle.setTitleMap(titleMap);
789            }
790    
791            /**
792            * Sets the localized titles of this journal article from the map of locales and localized titles, and sets the default locale.
793            *
794            * @param titleMap the locales and localized titles of this journal article
795            * @param defaultLocale the default locale
796            */
797            @Override
798            public void setTitleMap(
799                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
800                    java.util.Locale defaultLocale) {
801                    _journalArticle.setTitleMap(titleMap, defaultLocale);
802            }
803    
804            /**
805            * Returns the url title of this journal article.
806            *
807            * @return the url title of this journal article
808            */
809            @Override
810            public java.lang.String getUrlTitle() {
811                    return _journalArticle.getUrlTitle();
812            }
813    
814            /**
815            * Sets the url title of this journal article.
816            *
817            * @param urlTitle the url title of this journal article
818            */
819            @Override
820            public void setUrlTitle(java.lang.String urlTitle) {
821                    _journalArticle.setUrlTitle(urlTitle);
822            }
823    
824            /**
825            * Returns the description of this journal article.
826            *
827            * @return the description of this journal article
828            */
829            @Override
830            public java.lang.String getDescription() {
831                    return _journalArticle.getDescription();
832            }
833    
834            /**
835            * Returns the localized description of this journal article in the language. Uses the default language if no localization exists for the requested language.
836            *
837            * @param locale the locale of the language
838            * @return the localized description of this journal article
839            */
840            @Override
841            public java.lang.String getDescription(java.util.Locale locale) {
842                    return _journalArticle.getDescription(locale);
843            }
844    
845            /**
846            * Returns the localized description of this journal article in the language, optionally using the default language if no localization exists for the requested language.
847            *
848            * @param locale the local of the language
849            * @param useDefault whether to use the default language if no localization exists for the requested language
850            * @return the localized description of this journal article. If <code>useDefault</code> is <code>false</code> and no localization exists for the requested language, an empty string will be returned.
851            */
852            @Override
853            public java.lang.String getDescription(java.util.Locale locale,
854                    boolean useDefault) {
855                    return _journalArticle.getDescription(locale, useDefault);
856            }
857    
858            /**
859            * Returns the localized description of this journal article in the language. Uses the default language if no localization exists for the requested language.
860            *
861            * @param languageId the ID of the language
862            * @return the localized description of this journal article
863            */
864            @Override
865            public java.lang.String getDescription(java.lang.String languageId) {
866                    return _journalArticle.getDescription(languageId);
867            }
868    
869            /**
870            * Returns the localized description of this journal article in the language, optionally using the default language if no localization exists for the requested language.
871            *
872            * @param languageId the ID of the language
873            * @param useDefault whether to use the default language if no localization exists for the requested language
874            * @return the localized description of this journal article
875            */
876            @Override
877            public java.lang.String getDescription(java.lang.String languageId,
878                    boolean useDefault) {
879                    return _journalArticle.getDescription(languageId, useDefault);
880            }
881    
882            @Override
883            public java.lang.String getDescriptionCurrentLanguageId() {
884                    return _journalArticle.getDescriptionCurrentLanguageId();
885            }
886    
887            @Override
888            public java.lang.String getDescriptionCurrentValue() {
889                    return _journalArticle.getDescriptionCurrentValue();
890            }
891    
892            /**
893            * Returns a map of the locales and localized descriptions of this journal article.
894            *
895            * @return the locales and localized descriptions of this journal article
896            */
897            @Override
898            public java.util.Map<java.util.Locale, java.lang.String> getDescriptionMap() {
899                    return _journalArticle.getDescriptionMap();
900            }
901    
902            /**
903            * Sets the description of this journal article.
904            *
905            * @param description the description of this journal article
906            */
907            @Override
908            public void setDescription(java.lang.String description) {
909                    _journalArticle.setDescription(description);
910            }
911    
912            /**
913            * Sets the localized description of this journal article in the language.
914            *
915            * @param description the localized description of this journal article
916            * @param locale the locale of the language
917            */
918            @Override
919            public void setDescription(java.lang.String description,
920                    java.util.Locale locale) {
921                    _journalArticle.setDescription(description, locale);
922            }
923    
924            /**
925            * Sets the localized description of this journal article in the language, and sets the default locale.
926            *
927            * @param description the localized description of this journal article
928            * @param locale the locale of the language
929            * @param defaultLocale the default locale
930            */
931            @Override
932            public void setDescription(java.lang.String description,
933                    java.util.Locale locale, java.util.Locale defaultLocale) {
934                    _journalArticle.setDescription(description, locale, defaultLocale);
935            }
936    
937            @Override
938            public void setDescriptionCurrentLanguageId(java.lang.String languageId) {
939                    _journalArticle.setDescriptionCurrentLanguageId(languageId);
940            }
941    
942            /**
943            * Sets the localized descriptions of this journal article from the map of locales and localized descriptions.
944            *
945            * @param descriptionMap the locales and localized descriptions of this journal article
946            */
947            @Override
948            public void setDescriptionMap(
949                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap) {
950                    _journalArticle.setDescriptionMap(descriptionMap);
951            }
952    
953            /**
954            * Sets the localized descriptions of this journal article from the map of locales and localized descriptions, and sets the default locale.
955            *
956            * @param descriptionMap the locales and localized descriptions of this journal article
957            * @param defaultLocale the default locale
958            */
959            @Override
960            public void setDescriptionMap(
961                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
962                    java.util.Locale defaultLocale) {
963                    _journalArticle.setDescriptionMap(descriptionMap, defaultLocale);
964            }
965    
966            /**
967            * Returns the content of this journal article.
968            *
969            * @return the content of this journal article
970            */
971            @Override
972            public java.lang.String getContent() {
973                    return _journalArticle.getContent();
974            }
975    
976            /**
977            * Sets the content of this journal article.
978            *
979            * @param content the content of this journal article
980            */
981            @Override
982            public void setContent(java.lang.String content) {
983                    _journalArticle.setContent(content);
984            }
985    
986            /**
987            * Returns the type of this journal article.
988            *
989            * @return the type of this journal article
990            */
991            @Override
992            public java.lang.String getType() {
993                    return _journalArticle.getType();
994            }
995    
996            /**
997            * Sets the type of this journal article.
998            *
999            * @param type the type of this journal article
1000            */
1001            @Override
1002            public void setType(java.lang.String type) {
1003                    _journalArticle.setType(type);
1004            }
1005    
1006            /**
1007            * Returns the structure ID of this journal article.
1008            *
1009            * @return the structure ID of this journal article
1010            */
1011            @Override
1012            public java.lang.String getStructureId() {
1013                    return _journalArticle.getStructureId();
1014            }
1015    
1016            /**
1017            * Sets the structure ID of this journal article.
1018            *
1019            * @param structureId the structure ID of this journal article
1020            */
1021            @Override
1022            public void setStructureId(java.lang.String structureId) {
1023                    _journalArticle.setStructureId(structureId);
1024            }
1025    
1026            /**
1027            * Returns the template ID of this journal article.
1028            *
1029            * @return the template ID of this journal article
1030            */
1031            @Override
1032            public java.lang.String getTemplateId() {
1033                    return _journalArticle.getTemplateId();
1034            }
1035    
1036            /**
1037            * Sets the template ID of this journal article.
1038            *
1039            * @param templateId the template ID of this journal article
1040            */
1041            @Override
1042            public void setTemplateId(java.lang.String templateId) {
1043                    _journalArticle.setTemplateId(templateId);
1044            }
1045    
1046            /**
1047            * Returns the layout uuid of this journal article.
1048            *
1049            * @return the layout uuid of this journal article
1050            */
1051            @Override
1052            public java.lang.String getLayoutUuid() {
1053                    return _journalArticle.getLayoutUuid();
1054            }
1055    
1056            /**
1057            * Sets the layout uuid of this journal article.
1058            *
1059            * @param layoutUuid the layout uuid of this journal article
1060            */
1061            @Override
1062            public void setLayoutUuid(java.lang.String layoutUuid) {
1063                    _journalArticle.setLayoutUuid(layoutUuid);
1064            }
1065    
1066            /**
1067            * Returns the display date of this journal article.
1068            *
1069            * @return the display date of this journal article
1070            */
1071            @Override
1072            public java.util.Date getDisplayDate() {
1073                    return _journalArticle.getDisplayDate();
1074            }
1075    
1076            /**
1077            * Sets the display date of this journal article.
1078            *
1079            * @param displayDate the display date of this journal article
1080            */
1081            @Override
1082            public void setDisplayDate(java.util.Date displayDate) {
1083                    _journalArticle.setDisplayDate(displayDate);
1084            }
1085    
1086            /**
1087            * Returns the expiration date of this journal article.
1088            *
1089            * @return the expiration date of this journal article
1090            */
1091            @Override
1092            public java.util.Date getExpirationDate() {
1093                    return _journalArticle.getExpirationDate();
1094            }
1095    
1096            /**
1097            * Sets the expiration date of this journal article.
1098            *
1099            * @param expirationDate the expiration date of this journal article
1100            */
1101            @Override
1102            public void setExpirationDate(java.util.Date expirationDate) {
1103                    _journalArticle.setExpirationDate(expirationDate);
1104            }
1105    
1106            /**
1107            * Returns the review date of this journal article.
1108            *
1109            * @return the review date of this journal article
1110            */
1111            @Override
1112            public java.util.Date getReviewDate() {
1113                    return _journalArticle.getReviewDate();
1114            }
1115    
1116            /**
1117            * Sets the review date of this journal article.
1118            *
1119            * @param reviewDate the review date of this journal article
1120            */
1121            @Override
1122            public void setReviewDate(java.util.Date reviewDate) {
1123                    _journalArticle.setReviewDate(reviewDate);
1124            }
1125    
1126            /**
1127            * Returns the indexable of this journal article.
1128            *
1129            * @return the indexable of this journal article
1130            */
1131            @Override
1132            public boolean getIndexable() {
1133                    return _journalArticle.getIndexable();
1134            }
1135    
1136            /**
1137            * Returns <code>true</code> if this journal article is indexable.
1138            *
1139            * @return <code>true</code> if this journal article is indexable; <code>false</code> otherwise
1140            */
1141            @Override
1142            public boolean isIndexable() {
1143                    return _journalArticle.isIndexable();
1144            }
1145    
1146            /**
1147            * Sets whether this journal article is indexable.
1148            *
1149            * @param indexable the indexable of this journal article
1150            */
1151            @Override
1152            public void setIndexable(boolean indexable) {
1153                    _journalArticle.setIndexable(indexable);
1154            }
1155    
1156            /**
1157            * Returns the small image of this journal article.
1158            *
1159            * @return the small image of this journal article
1160            */
1161            @Override
1162            public boolean getSmallImage() {
1163                    return _journalArticle.getSmallImage();
1164            }
1165    
1166            /**
1167            * Returns <code>true</code> if this journal article is small image.
1168            *
1169            * @return <code>true</code> if this journal article is small image; <code>false</code> otherwise
1170            */
1171            @Override
1172            public boolean isSmallImage() {
1173                    return _journalArticle.isSmallImage();
1174            }
1175    
1176            /**
1177            * Sets whether this journal article is small image.
1178            *
1179            * @param smallImage the small image of this journal article
1180            */
1181            @Override
1182            public void setSmallImage(boolean smallImage) {
1183                    _journalArticle.setSmallImage(smallImage);
1184            }
1185    
1186            /**
1187            * Returns the small image ID of this journal article.
1188            *
1189            * @return the small image ID of this journal article
1190            */
1191            @Override
1192            public long getSmallImageId() {
1193                    return _journalArticle.getSmallImageId();
1194            }
1195    
1196            /**
1197            * Sets the small image ID of this journal article.
1198            *
1199            * @param smallImageId the small image ID of this journal article
1200            */
1201            @Override
1202            public void setSmallImageId(long smallImageId) {
1203                    _journalArticle.setSmallImageId(smallImageId);
1204            }
1205    
1206            /**
1207            * Returns the small image u r l of this journal article.
1208            *
1209            * @return the small image u r l of this journal article
1210            */
1211            @Override
1212            public java.lang.String getSmallImageURL() {
1213                    return _journalArticle.getSmallImageURL();
1214            }
1215    
1216            /**
1217            * Sets the small image u r l of this journal article.
1218            *
1219            * @param smallImageURL the small image u r l of this journal article
1220            */
1221            @Override
1222            public void setSmallImageURL(java.lang.String smallImageURL) {
1223                    _journalArticle.setSmallImageURL(smallImageURL);
1224            }
1225    
1226            /**
1227            * Returns the status of this journal article.
1228            *
1229            * @return the status of this journal article
1230            */
1231            @Override
1232            public int getStatus() {
1233                    return _journalArticle.getStatus();
1234            }
1235    
1236            /**
1237            * Sets the status of this journal article.
1238            *
1239            * @param status the status of this journal article
1240            */
1241            @Override
1242            public void setStatus(int status) {
1243                    _journalArticle.setStatus(status);
1244            }
1245    
1246            /**
1247            * Returns the status by user ID of this journal article.
1248            *
1249            * @return the status by user ID of this journal article
1250            */
1251            @Override
1252            public long getStatusByUserId() {
1253                    return _journalArticle.getStatusByUserId();
1254            }
1255    
1256            /**
1257            * Sets the status by user ID of this journal article.
1258            *
1259            * @param statusByUserId the status by user ID of this journal article
1260            */
1261            @Override
1262            public void setStatusByUserId(long statusByUserId) {
1263                    _journalArticle.setStatusByUserId(statusByUserId);
1264            }
1265    
1266            /**
1267            * Returns the status by user uuid of this journal article.
1268            *
1269            * @return the status by user uuid of this journal article
1270            * @throws SystemException if a system exception occurred
1271            */
1272            @Override
1273            public java.lang.String getStatusByUserUuid()
1274                    throws com.liferay.portal.kernel.exception.SystemException {
1275                    return _journalArticle.getStatusByUserUuid();
1276            }
1277    
1278            /**
1279            * Sets the status by user uuid of this journal article.
1280            *
1281            * @param statusByUserUuid the status by user uuid of this journal article
1282            */
1283            @Override
1284            public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
1285                    _journalArticle.setStatusByUserUuid(statusByUserUuid);
1286            }
1287    
1288            /**
1289            * Returns the status by user name of this journal article.
1290            *
1291            * @return the status by user name of this journal article
1292            */
1293            @Override
1294            public java.lang.String getStatusByUserName() {
1295                    return _journalArticle.getStatusByUserName();
1296            }
1297    
1298            /**
1299            * Sets the status by user name of this journal article.
1300            *
1301            * @param statusByUserName the status by user name of this journal article
1302            */
1303            @Override
1304            public void setStatusByUserName(java.lang.String statusByUserName) {
1305                    _journalArticle.setStatusByUserName(statusByUserName);
1306            }
1307    
1308            /**
1309            * Returns the status date of this journal article.
1310            *
1311            * @return the status date of this journal article
1312            */
1313            @Override
1314            public java.util.Date getStatusDate() {
1315                    return _journalArticle.getStatusDate();
1316            }
1317    
1318            /**
1319            * Sets the status date of this journal article.
1320            *
1321            * @param statusDate the status date of this journal article
1322            */
1323            @Override
1324            public void setStatusDate(java.util.Date statusDate) {
1325                    _journalArticle.setStatusDate(statusDate);
1326            }
1327    
1328            /**
1329            * Returns the trash entry created when this journal article was moved to the Recycle Bin. The trash entry may belong to one of the ancestors of this journal article.
1330            *
1331            * @return the trash entry created when this journal article was moved to the Recycle Bin
1332            * @throws SystemException if a system exception occurred
1333            */
1334            @Override
1335            public com.liferay.portlet.trash.model.TrashEntry getTrashEntry()
1336                    throws com.liferay.portal.kernel.exception.PortalException,
1337                            com.liferay.portal.kernel.exception.SystemException {
1338                    return _journalArticle.getTrashEntry();
1339            }
1340    
1341            /**
1342            * Returns the class primary key of the trash entry for this journal article.
1343            *
1344            * @return the class primary key of the trash entry for this journal article
1345            */
1346            @Override
1347            public long getTrashEntryClassPK() {
1348                    return _journalArticle.getTrashEntryClassPK();
1349            }
1350    
1351            /**
1352            * Returns the trash handler for this journal article.
1353            *
1354            * @return the trash handler for this journal article
1355            */
1356            @Override
1357            public com.liferay.portal.kernel.trash.TrashHandler getTrashHandler() {
1358                    return _journalArticle.getTrashHandler();
1359            }
1360    
1361            /**
1362            * Returns <code>true</code> if this journal article is in the Recycle Bin.
1363            *
1364            * @return <code>true</code> if this journal article is in the Recycle Bin; <code>false</code> otherwise
1365            */
1366            @Override
1367            public boolean isInTrash() {
1368                    return _journalArticle.isInTrash();
1369            }
1370    
1371            /**
1372            * Returns <code>true</code> if the parent of this journal article is in the Recycle Bin.
1373            *
1374            * @return <code>true</code> if the parent of this journal article is in the Recycle Bin; <code>false</code> otherwise
1375            * @throws SystemException if a system exception occurred
1376            */
1377            @Override
1378            public boolean isInTrashContainer() {
1379                    return _journalArticle.isInTrashContainer();
1380            }
1381    
1382            /**
1383            * @deprecated As of 6.1.0, replaced by {@link #isApproved()}
1384            */
1385            @Override
1386            public boolean getApproved() {
1387                    return _journalArticle.getApproved();
1388            }
1389    
1390            /**
1391            * Returns <code>true</code> if this journal article is approved.
1392            *
1393            * @return <code>true</code> if this journal article is approved; <code>false</code> otherwise
1394            */
1395            @Override
1396            public boolean isApproved() {
1397                    return _journalArticle.isApproved();
1398            }
1399    
1400            /**
1401            * Returns <code>true</code> if this journal article is denied.
1402            *
1403            * @return <code>true</code> if this journal article is denied; <code>false</code> otherwise
1404            */
1405            @Override
1406            public boolean isDenied() {
1407                    return _journalArticle.isDenied();
1408            }
1409    
1410            /**
1411            * Returns <code>true</code> if this journal article is a draft.
1412            *
1413            * @return <code>true</code> if this journal article is a draft; <code>false</code> otherwise
1414            */
1415            @Override
1416            public boolean isDraft() {
1417                    return _journalArticle.isDraft();
1418            }
1419    
1420            /**
1421            * Returns <code>true</code> if this journal article is expired.
1422            *
1423            * @return <code>true</code> if this journal article is expired; <code>false</code> otherwise
1424            */
1425            @Override
1426            public boolean isExpired() {
1427                    return _journalArticle.isExpired();
1428            }
1429    
1430            /**
1431            * Returns <code>true</code> if this journal article is inactive.
1432            *
1433            * @return <code>true</code> if this journal article is inactive; <code>false</code> otherwise
1434            */
1435            @Override
1436            public boolean isInactive() {
1437                    return _journalArticle.isInactive();
1438            }
1439    
1440            /**
1441            * Returns <code>true</code> if this journal article is incomplete.
1442            *
1443            * @return <code>true</code> if this journal article is incomplete; <code>false</code> otherwise
1444            */
1445            @Override
1446            public boolean isIncomplete() {
1447                    return _journalArticle.isIncomplete();
1448            }
1449    
1450            /**
1451            * Returns <code>true</code> if this journal article is pending.
1452            *
1453            * @return <code>true</code> if this journal article is pending; <code>false</code> otherwise
1454            */
1455            @Override
1456            public boolean isPending() {
1457                    return _journalArticle.isPending();
1458            }
1459    
1460            /**
1461            * Returns <code>true</code> if this journal article is scheduled.
1462            *
1463            * @return <code>true</code> if this journal article is scheduled; <code>false</code> otherwise
1464            */
1465            @Override
1466            public boolean isScheduled() {
1467                    return _journalArticle.isScheduled();
1468            }
1469    
1470            @Override
1471            public boolean isNew() {
1472                    return _journalArticle.isNew();
1473            }
1474    
1475            @Override
1476            public void setNew(boolean n) {
1477                    _journalArticle.setNew(n);
1478            }
1479    
1480            @Override
1481            public boolean isCachedModel() {
1482                    return _journalArticle.isCachedModel();
1483            }
1484    
1485            @Override
1486            public void setCachedModel(boolean cachedModel) {
1487                    _journalArticle.setCachedModel(cachedModel);
1488            }
1489    
1490            @Override
1491            public boolean isEscapedModel() {
1492                    return _journalArticle.isEscapedModel();
1493            }
1494    
1495            @Override
1496            public java.io.Serializable getPrimaryKeyObj() {
1497                    return _journalArticle.getPrimaryKeyObj();
1498            }
1499    
1500            @Override
1501            public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
1502                    _journalArticle.setPrimaryKeyObj(primaryKeyObj);
1503            }
1504    
1505            @Override
1506            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
1507                    return _journalArticle.getExpandoBridge();
1508            }
1509    
1510            @Override
1511            public void setExpandoBridgeAttributes(
1512                    com.liferay.portal.model.BaseModel<?> baseModel) {
1513                    _journalArticle.setExpandoBridgeAttributes(baseModel);
1514            }
1515    
1516            @Override
1517            public void setExpandoBridgeAttributes(
1518                    com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
1519                    _journalArticle.setExpandoBridgeAttributes(expandoBridge);
1520            }
1521    
1522            @Override
1523            public void setExpandoBridgeAttributes(
1524                    com.liferay.portal.service.ServiceContext serviceContext) {
1525                    _journalArticle.setExpandoBridgeAttributes(serviceContext);
1526            }
1527    
1528            @Override
1529            public java.lang.String[] getAvailableLanguageIds() {
1530                    return _journalArticle.getAvailableLanguageIds();
1531            }
1532    
1533            @Override
1534            public java.lang.String getDefaultLanguageId() {
1535                    return _journalArticle.getDefaultLanguageId();
1536            }
1537    
1538            @Override
1539            public void prepareLocalizedFieldsForImport()
1540                    throws com.liferay.portal.LocaleException {
1541                    _journalArticle.prepareLocalizedFieldsForImport();
1542            }
1543    
1544            @Override
1545            public void prepareLocalizedFieldsForImport(
1546                    java.util.Locale defaultImportLocale)
1547                    throws com.liferay.portal.LocaleException {
1548                    _journalArticle.prepareLocalizedFieldsForImport(defaultImportLocale);
1549            }
1550    
1551            @Override
1552            public java.lang.Object clone() {
1553                    return new JournalArticleWrapper((JournalArticle)_journalArticle.clone());
1554            }
1555    
1556            @Override
1557            public int compareTo(
1558                    com.liferay.portlet.journal.model.JournalArticle journalArticle) {
1559                    return _journalArticle.compareTo(journalArticle);
1560            }
1561    
1562            @Override
1563            public int hashCode() {
1564                    return _journalArticle.hashCode();
1565            }
1566    
1567            @Override
1568            public com.liferay.portal.model.CacheModel<com.liferay.portlet.journal.model.JournalArticle> toCacheModel() {
1569                    return _journalArticle.toCacheModel();
1570            }
1571    
1572            @Override
1573            public com.liferay.portlet.journal.model.JournalArticle toEscapedModel() {
1574                    return new JournalArticleWrapper(_journalArticle.toEscapedModel());
1575            }
1576    
1577            @Override
1578            public com.liferay.portlet.journal.model.JournalArticle toUnescapedModel() {
1579                    return new JournalArticleWrapper(_journalArticle.toUnescapedModel());
1580            }
1581    
1582            @Override
1583            public java.lang.String toString() {
1584                    return _journalArticle.toString();
1585            }
1586    
1587            @Override
1588            public java.lang.String toXmlString() {
1589                    return _journalArticle.toXmlString();
1590            }
1591    
1592            @Override
1593            public void persist()
1594                    throws com.liferay.portal.kernel.exception.SystemException {
1595                    _journalArticle.persist();
1596            }
1597    
1598            @Override
1599            public void updateTreePath(java.lang.String treePath)
1600                    throws com.liferay.portal.kernel.exception.SystemException {
1601                    _journalArticle.updateTreePath(treePath);
1602            }
1603    
1604            @Override
1605            public java.lang.String buildTreePath()
1606                    throws com.liferay.portal.kernel.exception.PortalException,
1607                            com.liferay.portal.kernel.exception.SystemException {
1608                    return _journalArticle.buildTreePath();
1609            }
1610    
1611            @Override
1612            public java.lang.String getArticleImageURL(
1613                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
1614                    return _journalArticle.getArticleImageURL(themeDisplay);
1615            }
1616    
1617            @Override
1618            public com.liferay.portlet.journal.model.JournalArticleResource getArticleResource()
1619                    throws com.liferay.portal.kernel.exception.PortalException,
1620                            com.liferay.portal.kernel.exception.SystemException {
1621                    return _journalArticle.getArticleResource();
1622            }
1623    
1624            @Override
1625            public java.lang.String getArticleResourceUuid()
1626                    throws com.liferay.portal.kernel.exception.PortalException,
1627                            com.liferay.portal.kernel.exception.SystemException {
1628                    return _journalArticle.getArticleResourceUuid();
1629            }
1630    
1631            /**
1632            * @deprecated As of 6.2.0, replaced by {@link #getAvailableLanguageIds}
1633            */
1634            @Override
1635            public java.lang.String[] getAvailableLocales() {
1636                    return _journalArticle.getAvailableLocales();
1637            }
1638    
1639            @Override
1640            public java.lang.String getContentByLocale(java.lang.String languageId) {
1641                    return _journalArticle.getContentByLocale(languageId);
1642            }
1643    
1644            /**
1645            * @deprecated As of 6.2.0, replaced by {@link #getDefaultLanguageId}
1646            */
1647            @Override
1648            public java.lang.String getDefaultLocale() {
1649                    return _journalArticle.getDefaultLocale();
1650            }
1651    
1652            @Override
1653            public com.liferay.portlet.journal.model.JournalFolder getFolder()
1654                    throws com.liferay.portal.kernel.exception.PortalException,
1655                            com.liferay.portal.kernel.exception.SystemException {
1656                    return _journalArticle.getFolder();
1657            }
1658    
1659            @Override
1660            public java.lang.String getSmallImageType()
1661                    throws com.liferay.portal.kernel.exception.PortalException,
1662                            com.liferay.portal.kernel.exception.SystemException {
1663                    return _journalArticle.getSmallImageType();
1664            }
1665    
1666            @Override
1667            public boolean hasApprovedVersion()
1668                    throws com.liferay.portal.kernel.exception.SystemException {
1669                    return _journalArticle.hasApprovedVersion();
1670            }
1671    
1672            @Override
1673            public boolean isInTrashExplicitly()
1674                    throws com.liferay.portal.kernel.exception.SystemException {
1675                    return _journalArticle.isInTrashExplicitly();
1676            }
1677    
1678            @Override
1679            public boolean isTemplateDriven() {
1680                    return _journalArticle.isTemplateDriven();
1681            }
1682    
1683            @Override
1684            public void setSmallImageType(java.lang.String smallImageType) {
1685                    _journalArticle.setSmallImageType(smallImageType);
1686            }
1687    
1688            @Override
1689            public boolean equals(Object obj) {
1690                    if (this == obj) {
1691                            return true;
1692                    }
1693    
1694                    if (!(obj instanceof JournalArticleWrapper)) {
1695                            return false;
1696                    }
1697    
1698                    JournalArticleWrapper journalArticleWrapper = (JournalArticleWrapper)obj;
1699    
1700                    if (Validator.equals(_journalArticle,
1701                                            journalArticleWrapper._journalArticle)) {
1702                            return true;
1703                    }
1704    
1705                    return false;
1706            }
1707    
1708            @Override
1709            public StagedModelType getStagedModelType() {
1710                    return _journalArticle.getStagedModelType();
1711            }
1712    
1713            /**
1714             * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
1715             */
1716            public JournalArticle getWrappedJournalArticle() {
1717                    return _journalArticle;
1718            }
1719    
1720            @Override
1721            public JournalArticle getWrappedModel() {
1722                    return _journalArticle;
1723            }
1724    
1725            @Override
1726            public void resetOriginalValues() {
1727                    _journalArticle.resetOriginalValues();
1728            }
1729    
1730            private JournalArticle _journalArticle;
1731    }