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.documentlibrary.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 DLFileEntryType}.
030     * </p>
031     *
032     * @author Brian Wing Shun Chan
033     * @see DLFileEntryType
034     * @generated
035     */
036    @ProviderType
037    public class DLFileEntryTypeWrapper implements DLFileEntryType,
038            ModelWrapper<DLFileEntryType> {
039            public DLFileEntryTypeWrapper(DLFileEntryType dlFileEntryType) {
040                    _dlFileEntryType = dlFileEntryType;
041            }
042    
043            @Override
044            public Class<?> getModelClass() {
045                    return DLFileEntryType.class;
046            }
047    
048            @Override
049            public String getModelClassName() {
050                    return DLFileEntryType.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("fileEntryTypeId", getFileEntryTypeId());
059                    attributes.put("groupId", getGroupId());
060                    attributes.put("companyId", getCompanyId());
061                    attributes.put("userId", getUserId());
062                    attributes.put("userName", getUserName());
063                    attributes.put("createDate", getCreateDate());
064                    attributes.put("modifiedDate", getModifiedDate());
065                    attributes.put("fileEntryTypeKey", getFileEntryTypeKey());
066                    attributes.put("name", getName());
067                    attributes.put("description", getDescription());
068    
069                    return attributes;
070            }
071    
072            @Override
073            public void setModelAttributes(Map<String, Object> attributes) {
074                    String uuid = (String)attributes.get("uuid");
075    
076                    if (uuid != null) {
077                            setUuid(uuid);
078                    }
079    
080                    Long fileEntryTypeId = (Long)attributes.get("fileEntryTypeId");
081    
082                    if (fileEntryTypeId != null) {
083                            setFileEntryTypeId(fileEntryTypeId);
084                    }
085    
086                    Long groupId = (Long)attributes.get("groupId");
087    
088                    if (groupId != null) {
089                            setGroupId(groupId);
090                    }
091    
092                    Long companyId = (Long)attributes.get("companyId");
093    
094                    if (companyId != null) {
095                            setCompanyId(companyId);
096                    }
097    
098                    Long userId = (Long)attributes.get("userId");
099    
100                    if (userId != null) {
101                            setUserId(userId);
102                    }
103    
104                    String userName = (String)attributes.get("userName");
105    
106                    if (userName != null) {
107                            setUserName(userName);
108                    }
109    
110                    Date createDate = (Date)attributes.get("createDate");
111    
112                    if (createDate != null) {
113                            setCreateDate(createDate);
114                    }
115    
116                    Date modifiedDate = (Date)attributes.get("modifiedDate");
117    
118                    if (modifiedDate != null) {
119                            setModifiedDate(modifiedDate);
120                    }
121    
122                    String fileEntryTypeKey = (String)attributes.get("fileEntryTypeKey");
123    
124                    if (fileEntryTypeKey != null) {
125                            setFileEntryTypeKey(fileEntryTypeKey);
126                    }
127    
128                    String name = (String)attributes.get("name");
129    
130                    if (name != null) {
131                            setName(name);
132                    }
133    
134                    String description = (String)attributes.get("description");
135    
136                    if (description != null) {
137                            setDescription(description);
138                    }
139            }
140    
141            /**
142            * Returns the primary key of this document library file entry type.
143            *
144            * @return the primary key of this document library file entry type
145            */
146            @Override
147            public long getPrimaryKey() {
148                    return _dlFileEntryType.getPrimaryKey();
149            }
150    
151            /**
152            * Sets the primary key of this document library file entry type.
153            *
154            * @param primaryKey the primary key of this document library file entry type
155            */
156            @Override
157            public void setPrimaryKey(long primaryKey) {
158                    _dlFileEntryType.setPrimaryKey(primaryKey);
159            }
160    
161            /**
162            * Returns the uuid of this document library file entry type.
163            *
164            * @return the uuid of this document library file entry type
165            */
166            @Override
167            public java.lang.String getUuid() {
168                    return _dlFileEntryType.getUuid();
169            }
170    
171            /**
172            * Sets the uuid of this document library file entry type.
173            *
174            * @param uuid the uuid of this document library file entry type
175            */
176            @Override
177            public void setUuid(java.lang.String uuid) {
178                    _dlFileEntryType.setUuid(uuid);
179            }
180    
181            /**
182            * Returns the file entry type ID of this document library file entry type.
183            *
184            * @return the file entry type ID of this document library file entry type
185            */
186            @Override
187            public long getFileEntryTypeId() {
188                    return _dlFileEntryType.getFileEntryTypeId();
189            }
190    
191            /**
192            * Sets the file entry type ID of this document library file entry type.
193            *
194            * @param fileEntryTypeId the file entry type ID of this document library file entry type
195            */
196            @Override
197            public void setFileEntryTypeId(long fileEntryTypeId) {
198                    _dlFileEntryType.setFileEntryTypeId(fileEntryTypeId);
199            }
200    
201            /**
202            * Returns the group ID of this document library file entry type.
203            *
204            * @return the group ID of this document library file entry type
205            */
206            @Override
207            public long getGroupId() {
208                    return _dlFileEntryType.getGroupId();
209            }
210    
211            /**
212            * Sets the group ID of this document library file entry type.
213            *
214            * @param groupId the group ID of this document library file entry type
215            */
216            @Override
217            public void setGroupId(long groupId) {
218                    _dlFileEntryType.setGroupId(groupId);
219            }
220    
221            /**
222            * Returns the company ID of this document library file entry type.
223            *
224            * @return the company ID of this document library file entry type
225            */
226            @Override
227            public long getCompanyId() {
228                    return _dlFileEntryType.getCompanyId();
229            }
230    
231            /**
232            * Sets the company ID of this document library file entry type.
233            *
234            * @param companyId the company ID of this document library file entry type
235            */
236            @Override
237            public void setCompanyId(long companyId) {
238                    _dlFileEntryType.setCompanyId(companyId);
239            }
240    
241            /**
242            * Returns the user ID of this document library file entry type.
243            *
244            * @return the user ID of this document library file entry type
245            */
246            @Override
247            public long getUserId() {
248                    return _dlFileEntryType.getUserId();
249            }
250    
251            /**
252            * Sets the user ID of this document library file entry type.
253            *
254            * @param userId the user ID of this document library file entry type
255            */
256            @Override
257            public void setUserId(long userId) {
258                    _dlFileEntryType.setUserId(userId);
259            }
260    
261            /**
262            * Returns the user uuid of this document library file entry type.
263            *
264            * @return the user uuid of this document library file entry type
265            * @throws SystemException if a system exception occurred
266            */
267            @Override
268            public java.lang.String getUserUuid()
269                    throws com.liferay.portal.kernel.exception.SystemException {
270                    return _dlFileEntryType.getUserUuid();
271            }
272    
273            /**
274            * Sets the user uuid of this document library file entry type.
275            *
276            * @param userUuid the user uuid of this document library file entry type
277            */
278            @Override
279            public void setUserUuid(java.lang.String userUuid) {
280                    _dlFileEntryType.setUserUuid(userUuid);
281            }
282    
283            /**
284            * Returns the user name of this document library file entry type.
285            *
286            * @return the user name of this document library file entry type
287            */
288            @Override
289            public java.lang.String getUserName() {
290                    return _dlFileEntryType.getUserName();
291            }
292    
293            /**
294            * Sets the user name of this document library file entry type.
295            *
296            * @param userName the user name of this document library file entry type
297            */
298            @Override
299            public void setUserName(java.lang.String userName) {
300                    _dlFileEntryType.setUserName(userName);
301            }
302    
303            /**
304            * Returns the create date of this document library file entry type.
305            *
306            * @return the create date of this document library file entry type
307            */
308            @Override
309            public java.util.Date getCreateDate() {
310                    return _dlFileEntryType.getCreateDate();
311            }
312    
313            /**
314            * Sets the create date of this document library file entry type.
315            *
316            * @param createDate the create date of this document library file entry type
317            */
318            @Override
319            public void setCreateDate(java.util.Date createDate) {
320                    _dlFileEntryType.setCreateDate(createDate);
321            }
322    
323            /**
324            * Returns the modified date of this document library file entry type.
325            *
326            * @return the modified date of this document library file entry type
327            */
328            @Override
329            public java.util.Date getModifiedDate() {
330                    return _dlFileEntryType.getModifiedDate();
331            }
332    
333            /**
334            * Sets the modified date of this document library file entry type.
335            *
336            * @param modifiedDate the modified date of this document library file entry type
337            */
338            @Override
339            public void setModifiedDate(java.util.Date modifiedDate) {
340                    _dlFileEntryType.setModifiedDate(modifiedDate);
341            }
342    
343            /**
344            * Returns the file entry type key of this document library file entry type.
345            *
346            * @return the file entry type key of this document library file entry type
347            */
348            @Override
349            public java.lang.String getFileEntryTypeKey() {
350                    return _dlFileEntryType.getFileEntryTypeKey();
351            }
352    
353            /**
354            * Sets the file entry type key of this document library file entry type.
355            *
356            * @param fileEntryTypeKey the file entry type key of this document library file entry type
357            */
358            @Override
359            public void setFileEntryTypeKey(java.lang.String fileEntryTypeKey) {
360                    _dlFileEntryType.setFileEntryTypeKey(fileEntryTypeKey);
361            }
362    
363            /**
364            * Returns the name of this document library file entry type.
365            *
366            * @return the name of this document library file entry type
367            */
368            @Override
369            public java.lang.String getName() {
370                    return _dlFileEntryType.getName();
371            }
372    
373            /**
374            * Returns the localized name of this document library file entry type in the language. Uses the default language if no localization exists for the requested language.
375            *
376            * @param locale the locale of the language
377            * @return the localized name of this document library file entry type
378            */
379            @Override
380            public java.lang.String getName(java.util.Locale locale) {
381                    return _dlFileEntryType.getName(locale);
382            }
383    
384            /**
385            * Returns the localized name of this document library file entry type in the language, optionally using the default language if no localization exists for the requested language.
386            *
387            * @param locale the local of the language
388            * @param useDefault whether to use the default language if no localization exists for the requested language
389            * @return the localized name of this document library file entry type. If <code>useDefault</code> is <code>false</code> and no localization exists for the requested language, an empty string will be returned.
390            */
391            @Override
392            public java.lang.String getName(java.util.Locale locale, boolean useDefault) {
393                    return _dlFileEntryType.getName(locale, useDefault);
394            }
395    
396            /**
397            * Returns the localized name of this document library file entry type in the language. Uses the default language if no localization exists for the requested language.
398            *
399            * @param languageId the ID of the language
400            * @return the localized name of this document library file entry type
401            */
402            @Override
403            public java.lang.String getName(java.lang.String languageId) {
404                    return _dlFileEntryType.getName(languageId);
405            }
406    
407            /**
408            * Returns the localized name of this document library file entry type in the language, optionally using the default language if no localization exists for the requested language.
409            *
410            * @param languageId the ID of the language
411            * @param useDefault whether to use the default language if no localization exists for the requested language
412            * @return the localized name of this document library file entry type
413            */
414            @Override
415            public java.lang.String getName(java.lang.String languageId,
416                    boolean useDefault) {
417                    return _dlFileEntryType.getName(languageId, useDefault);
418            }
419    
420            @Override
421            public java.lang.String getNameCurrentLanguageId() {
422                    return _dlFileEntryType.getNameCurrentLanguageId();
423            }
424    
425            @Override
426            public java.lang.String getNameCurrentValue() {
427                    return _dlFileEntryType.getNameCurrentValue();
428            }
429    
430            /**
431            * Returns a map of the locales and localized names of this document library file entry type.
432            *
433            * @return the locales and localized names of this document library file entry type
434            */
435            @Override
436            public java.util.Map<java.util.Locale, java.lang.String> getNameMap() {
437                    return _dlFileEntryType.getNameMap();
438            }
439    
440            /**
441            * Sets the name of this document library file entry type.
442            *
443            * @param name the name of this document library file entry type
444            */
445            @Override
446            public void setName(java.lang.String name) {
447                    _dlFileEntryType.setName(name);
448            }
449    
450            /**
451            * Sets the localized name of this document library file entry type in the language.
452            *
453            * @param name the localized name of this document library file entry type
454            * @param locale the locale of the language
455            */
456            @Override
457            public void setName(java.lang.String name, java.util.Locale locale) {
458                    _dlFileEntryType.setName(name, locale);
459            }
460    
461            /**
462            * Sets the localized name of this document library file entry type in the language, and sets the default locale.
463            *
464            * @param name the localized name of this document library file entry type
465            * @param locale the locale of the language
466            * @param defaultLocale the default locale
467            */
468            @Override
469            public void setName(java.lang.String name, java.util.Locale locale,
470                    java.util.Locale defaultLocale) {
471                    _dlFileEntryType.setName(name, locale, defaultLocale);
472            }
473    
474            @Override
475            public void setNameCurrentLanguageId(java.lang.String languageId) {
476                    _dlFileEntryType.setNameCurrentLanguageId(languageId);
477            }
478    
479            /**
480            * Sets the localized names of this document library file entry type from the map of locales and localized names.
481            *
482            * @param nameMap the locales and localized names of this document library file entry type
483            */
484            @Override
485            public void setNameMap(
486                    java.util.Map<java.util.Locale, java.lang.String> nameMap) {
487                    _dlFileEntryType.setNameMap(nameMap);
488            }
489    
490            /**
491            * Sets the localized names of this document library file entry type from the map of locales and localized names, and sets the default locale.
492            *
493            * @param nameMap the locales and localized names of this document library file entry type
494            * @param defaultLocale the default locale
495            */
496            @Override
497            public void setNameMap(
498                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
499                    java.util.Locale defaultLocale) {
500                    _dlFileEntryType.setNameMap(nameMap, defaultLocale);
501            }
502    
503            /**
504            * Returns the description of this document library file entry type.
505            *
506            * @return the description of this document library file entry type
507            */
508            @Override
509            public java.lang.String getDescription() {
510                    return _dlFileEntryType.getDescription();
511            }
512    
513            /**
514            * Returns the localized description of this document library file entry type in the language. Uses the default language if no localization exists for the requested language.
515            *
516            * @param locale the locale of the language
517            * @return the localized description of this document library file entry type
518            */
519            @Override
520            public java.lang.String getDescription(java.util.Locale locale) {
521                    return _dlFileEntryType.getDescription(locale);
522            }
523    
524            /**
525            * Returns the localized description of this document library file entry type in the language, optionally using the default language if no localization exists for the requested language.
526            *
527            * @param locale the local of the language
528            * @param useDefault whether to use the default language if no localization exists for the requested language
529            * @return the localized description of this document library file entry type. If <code>useDefault</code> is <code>false</code> and no localization exists for the requested language, an empty string will be returned.
530            */
531            @Override
532            public java.lang.String getDescription(java.util.Locale locale,
533                    boolean useDefault) {
534                    return _dlFileEntryType.getDescription(locale, useDefault);
535            }
536    
537            /**
538            * Returns the localized description of this document library file entry type in the language. Uses the default language if no localization exists for the requested language.
539            *
540            * @param languageId the ID of the language
541            * @return the localized description of this document library file entry type
542            */
543            @Override
544            public java.lang.String getDescription(java.lang.String languageId) {
545                    return _dlFileEntryType.getDescription(languageId);
546            }
547    
548            /**
549            * Returns the localized description of this document library file entry type in the language, optionally using the default language if no localization exists for the requested language.
550            *
551            * @param languageId the ID of the language
552            * @param useDefault whether to use the default language if no localization exists for the requested language
553            * @return the localized description of this document library file entry type
554            */
555            @Override
556            public java.lang.String getDescription(java.lang.String languageId,
557                    boolean useDefault) {
558                    return _dlFileEntryType.getDescription(languageId, useDefault);
559            }
560    
561            @Override
562            public java.lang.String getDescriptionCurrentLanguageId() {
563                    return _dlFileEntryType.getDescriptionCurrentLanguageId();
564            }
565    
566            @Override
567            public java.lang.String getDescriptionCurrentValue() {
568                    return _dlFileEntryType.getDescriptionCurrentValue();
569            }
570    
571            /**
572            * Returns a map of the locales and localized descriptions of this document library file entry type.
573            *
574            * @return the locales and localized descriptions of this document library file entry type
575            */
576            @Override
577            public java.util.Map<java.util.Locale, java.lang.String> getDescriptionMap() {
578                    return _dlFileEntryType.getDescriptionMap();
579            }
580    
581            /**
582            * Sets the description of this document library file entry type.
583            *
584            * @param description the description of this document library file entry type
585            */
586            @Override
587            public void setDescription(java.lang.String description) {
588                    _dlFileEntryType.setDescription(description);
589            }
590    
591            /**
592            * Sets the localized description of this document library file entry type in the language.
593            *
594            * @param description the localized description of this document library file entry type
595            * @param locale the locale of the language
596            */
597            @Override
598            public void setDescription(java.lang.String description,
599                    java.util.Locale locale) {
600                    _dlFileEntryType.setDescription(description, locale);
601            }
602    
603            /**
604            * Sets the localized description of this document library file entry type in the language, and sets the default locale.
605            *
606            * @param description the localized description of this document library file entry type
607            * @param locale the locale of the language
608            * @param defaultLocale the default locale
609            */
610            @Override
611            public void setDescription(java.lang.String description,
612                    java.util.Locale locale, java.util.Locale defaultLocale) {
613                    _dlFileEntryType.setDescription(description, locale, defaultLocale);
614            }
615    
616            @Override
617            public void setDescriptionCurrentLanguageId(java.lang.String languageId) {
618                    _dlFileEntryType.setDescriptionCurrentLanguageId(languageId);
619            }
620    
621            /**
622            * Sets the localized descriptions of this document library file entry type from the map of locales and localized descriptions.
623            *
624            * @param descriptionMap the locales and localized descriptions of this document library file entry type
625            */
626            @Override
627            public void setDescriptionMap(
628                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap) {
629                    _dlFileEntryType.setDescriptionMap(descriptionMap);
630            }
631    
632            /**
633            * Sets the localized descriptions of this document library file entry type from the map of locales and localized descriptions, and sets the default locale.
634            *
635            * @param descriptionMap the locales and localized descriptions of this document library file entry type
636            * @param defaultLocale the default locale
637            */
638            @Override
639            public void setDescriptionMap(
640                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
641                    java.util.Locale defaultLocale) {
642                    _dlFileEntryType.setDescriptionMap(descriptionMap, defaultLocale);
643            }
644    
645            @Override
646            public boolean isNew() {
647                    return _dlFileEntryType.isNew();
648            }
649    
650            @Override
651            public void setNew(boolean n) {
652                    _dlFileEntryType.setNew(n);
653            }
654    
655            @Override
656            public boolean isCachedModel() {
657                    return _dlFileEntryType.isCachedModel();
658            }
659    
660            @Override
661            public void setCachedModel(boolean cachedModel) {
662                    _dlFileEntryType.setCachedModel(cachedModel);
663            }
664    
665            @Override
666            public boolean isEscapedModel() {
667                    return _dlFileEntryType.isEscapedModel();
668            }
669    
670            @Override
671            public java.io.Serializable getPrimaryKeyObj() {
672                    return _dlFileEntryType.getPrimaryKeyObj();
673            }
674    
675            @Override
676            public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
677                    _dlFileEntryType.setPrimaryKeyObj(primaryKeyObj);
678            }
679    
680            @Override
681            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
682                    return _dlFileEntryType.getExpandoBridge();
683            }
684    
685            @Override
686            public void setExpandoBridgeAttributes(
687                    com.liferay.portal.model.BaseModel<?> baseModel) {
688                    _dlFileEntryType.setExpandoBridgeAttributes(baseModel);
689            }
690    
691            @Override
692            public void setExpandoBridgeAttributes(
693                    com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
694                    _dlFileEntryType.setExpandoBridgeAttributes(expandoBridge);
695            }
696    
697            @Override
698            public void setExpandoBridgeAttributes(
699                    com.liferay.portal.service.ServiceContext serviceContext) {
700                    _dlFileEntryType.setExpandoBridgeAttributes(serviceContext);
701            }
702    
703            @Override
704            public java.lang.String[] getAvailableLanguageIds() {
705                    return _dlFileEntryType.getAvailableLanguageIds();
706            }
707    
708            @Override
709            public java.lang.String getDefaultLanguageId() {
710                    return _dlFileEntryType.getDefaultLanguageId();
711            }
712    
713            @Override
714            public void prepareLocalizedFieldsForImport()
715                    throws com.liferay.portal.LocaleException {
716                    _dlFileEntryType.prepareLocalizedFieldsForImport();
717            }
718    
719            @Override
720            public void prepareLocalizedFieldsForImport(
721                    java.util.Locale defaultImportLocale)
722                    throws com.liferay.portal.LocaleException {
723                    _dlFileEntryType.prepareLocalizedFieldsForImport(defaultImportLocale);
724            }
725    
726            @Override
727            public java.lang.Object clone() {
728                    return new DLFileEntryTypeWrapper((DLFileEntryType)_dlFileEntryType.clone());
729            }
730    
731            @Override
732            public int compareTo(
733                    com.liferay.portlet.documentlibrary.model.DLFileEntryType dlFileEntryType) {
734                    return _dlFileEntryType.compareTo(dlFileEntryType);
735            }
736    
737            @Override
738            public int hashCode() {
739                    return _dlFileEntryType.hashCode();
740            }
741    
742            @Override
743            public com.liferay.portal.model.CacheModel<com.liferay.portlet.documentlibrary.model.DLFileEntryType> toCacheModel() {
744                    return _dlFileEntryType.toCacheModel();
745            }
746    
747            @Override
748            public com.liferay.portlet.documentlibrary.model.DLFileEntryType toEscapedModel() {
749                    return new DLFileEntryTypeWrapper(_dlFileEntryType.toEscapedModel());
750            }
751    
752            @Override
753            public com.liferay.portlet.documentlibrary.model.DLFileEntryType toUnescapedModel() {
754                    return new DLFileEntryTypeWrapper(_dlFileEntryType.toUnescapedModel());
755            }
756    
757            @Override
758            public java.lang.String toString() {
759                    return _dlFileEntryType.toString();
760            }
761    
762            @Override
763            public java.lang.String toXmlString() {
764                    return _dlFileEntryType.toXmlString();
765            }
766    
767            @Override
768            public void persist()
769                    throws com.liferay.portal.kernel.exception.SystemException {
770                    _dlFileEntryType.persist();
771            }
772    
773            @Override
774            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getDDMStructures()
775                    throws com.liferay.portal.kernel.exception.SystemException {
776                    return _dlFileEntryType.getDDMStructures();
777            }
778    
779            @Override
780            public boolean isExportable() {
781                    return _dlFileEntryType.isExportable();
782            }
783    
784            @Override
785            public boolean equals(Object obj) {
786                    if (this == obj) {
787                            return true;
788                    }
789    
790                    if (!(obj instanceof DLFileEntryTypeWrapper)) {
791                            return false;
792                    }
793    
794                    DLFileEntryTypeWrapper dlFileEntryTypeWrapper = (DLFileEntryTypeWrapper)obj;
795    
796                    if (Validator.equals(_dlFileEntryType,
797                                            dlFileEntryTypeWrapper._dlFileEntryType)) {
798                            return true;
799                    }
800    
801                    return false;
802            }
803    
804            @Override
805            public StagedModelType getStagedModelType() {
806                    return _dlFileEntryType.getStagedModelType();
807            }
808    
809            /**
810             * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
811             */
812            public DLFileEntryType getWrappedDLFileEntryType() {
813                    return _dlFileEntryType;
814            }
815    
816            @Override
817            public DLFileEntryType getWrappedModel() {
818                    return _dlFileEntryType;
819            }
820    
821            @Override
822            public void resetOriginalValues() {
823                    _dlFileEntryType.resetOriginalValues();
824            }
825    
826            private DLFileEntryType _dlFileEntryType;
827    }