001    /**
002     * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.documentlibrary.model;
016    
017    import com.liferay.portal.model.ModelWrapper;
018    
019    import java.util.Date;
020    import java.util.HashMap;
021    import java.util.Map;
022    
023    /**
024     * <p>
025     * This class is a wrapper for {@link DLFileVersion}.
026     * </p>
027     *
028     * @author    Brian Wing Shun Chan
029     * @see       DLFileVersion
030     * @generated
031     */
032    public class DLFileVersionWrapper implements DLFileVersion,
033            ModelWrapper<DLFileVersion> {
034            public DLFileVersionWrapper(DLFileVersion dlFileVersion) {
035                    _dlFileVersion = dlFileVersion;
036            }
037    
038            public Class<?> getModelClass() {
039                    return DLFileVersion.class;
040            }
041    
042            public String getModelClassName() {
043                    return DLFileVersion.class.getName();
044            }
045    
046            public Map<String, Object> getModelAttributes() {
047                    Map<String, Object> attributes = new HashMap<String, Object>();
048    
049                    attributes.put("uuid", getUuid());
050                    attributes.put("fileVersionId", getFileVersionId());
051                    attributes.put("groupId", getGroupId());
052                    attributes.put("companyId", getCompanyId());
053                    attributes.put("userId", getUserId());
054                    attributes.put("userName", getUserName());
055                    attributes.put("createDate", getCreateDate());
056                    attributes.put("modifiedDate", getModifiedDate());
057                    attributes.put("repositoryId", getRepositoryId());
058                    attributes.put("folderId", getFolderId());
059                    attributes.put("fileEntryId", getFileEntryId());
060                    attributes.put("extension", getExtension());
061                    attributes.put("mimeType", getMimeType());
062                    attributes.put("title", getTitle());
063                    attributes.put("description", getDescription());
064                    attributes.put("changeLog", getChangeLog());
065                    attributes.put("extraSettings", getExtraSettings());
066                    attributes.put("fileEntryTypeId", getFileEntryTypeId());
067                    attributes.put("version", getVersion());
068                    attributes.put("size", getSize());
069                    attributes.put("status", getStatus());
070                    attributes.put("statusByUserId", getStatusByUserId());
071                    attributes.put("statusByUserName", getStatusByUserName());
072                    attributes.put("statusDate", getStatusDate());
073    
074                    return attributes;
075            }
076    
077            public void setModelAttributes(Map<String, Object> attributes) {
078                    String uuid = (String)attributes.get("uuid");
079    
080                    if (uuid != null) {
081                            setUuid(uuid);
082                    }
083    
084                    Long fileVersionId = (Long)attributes.get("fileVersionId");
085    
086                    if (fileVersionId != null) {
087                            setFileVersionId(fileVersionId);
088                    }
089    
090                    Long groupId = (Long)attributes.get("groupId");
091    
092                    if (groupId != null) {
093                            setGroupId(groupId);
094                    }
095    
096                    Long companyId = (Long)attributes.get("companyId");
097    
098                    if (companyId != null) {
099                            setCompanyId(companyId);
100                    }
101    
102                    Long userId = (Long)attributes.get("userId");
103    
104                    if (userId != null) {
105                            setUserId(userId);
106                    }
107    
108                    String userName = (String)attributes.get("userName");
109    
110                    if (userName != null) {
111                            setUserName(userName);
112                    }
113    
114                    Date createDate = (Date)attributes.get("createDate");
115    
116                    if (createDate != null) {
117                            setCreateDate(createDate);
118                    }
119    
120                    Date modifiedDate = (Date)attributes.get("modifiedDate");
121    
122                    if (modifiedDate != null) {
123                            setModifiedDate(modifiedDate);
124                    }
125    
126                    Long repositoryId = (Long)attributes.get("repositoryId");
127    
128                    if (repositoryId != null) {
129                            setRepositoryId(repositoryId);
130                    }
131    
132                    Long folderId = (Long)attributes.get("folderId");
133    
134                    if (folderId != null) {
135                            setFolderId(folderId);
136                    }
137    
138                    Long fileEntryId = (Long)attributes.get("fileEntryId");
139    
140                    if (fileEntryId != null) {
141                            setFileEntryId(fileEntryId);
142                    }
143    
144                    String extension = (String)attributes.get("extension");
145    
146                    if (extension != null) {
147                            setExtension(extension);
148                    }
149    
150                    String mimeType = (String)attributes.get("mimeType");
151    
152                    if (mimeType != null) {
153                            setMimeType(mimeType);
154                    }
155    
156                    String title = (String)attributes.get("title");
157    
158                    if (title != null) {
159                            setTitle(title);
160                    }
161    
162                    String description = (String)attributes.get("description");
163    
164                    if (description != null) {
165                            setDescription(description);
166                    }
167    
168                    String changeLog = (String)attributes.get("changeLog");
169    
170                    if (changeLog != null) {
171                            setChangeLog(changeLog);
172                    }
173    
174                    String extraSettings = (String)attributes.get("extraSettings");
175    
176                    if (extraSettings != null) {
177                            setExtraSettings(extraSettings);
178                    }
179    
180                    Long fileEntryTypeId = (Long)attributes.get("fileEntryTypeId");
181    
182                    if (fileEntryTypeId != null) {
183                            setFileEntryTypeId(fileEntryTypeId);
184                    }
185    
186                    String version = (String)attributes.get("version");
187    
188                    if (version != null) {
189                            setVersion(version);
190                    }
191    
192                    Long size = (Long)attributes.get("size");
193    
194                    if (size != null) {
195                            setSize(size);
196                    }
197    
198                    Integer status = (Integer)attributes.get("status");
199    
200                    if (status != null) {
201                            setStatus(status);
202                    }
203    
204                    Long statusByUserId = (Long)attributes.get("statusByUserId");
205    
206                    if (statusByUserId != null) {
207                            setStatusByUserId(statusByUserId);
208                    }
209    
210                    String statusByUserName = (String)attributes.get("statusByUserName");
211    
212                    if (statusByUserName != null) {
213                            setStatusByUserName(statusByUserName);
214                    }
215    
216                    Date statusDate = (Date)attributes.get("statusDate");
217    
218                    if (statusDate != null) {
219                            setStatusDate(statusDate);
220                    }
221            }
222    
223            /**
224            * Returns the primary key of this document library file version.
225            *
226            * @return the primary key of this document library file version
227            */
228            public long getPrimaryKey() {
229                    return _dlFileVersion.getPrimaryKey();
230            }
231    
232            /**
233            * Sets the primary key of this document library file version.
234            *
235            * @param primaryKey the primary key of this document library file version
236            */
237            public void setPrimaryKey(long primaryKey) {
238                    _dlFileVersion.setPrimaryKey(primaryKey);
239            }
240    
241            /**
242            * Returns the uuid of this document library file version.
243            *
244            * @return the uuid of this document library file version
245            */
246            public java.lang.String getUuid() {
247                    return _dlFileVersion.getUuid();
248            }
249    
250            /**
251            * Sets the uuid of this document library file version.
252            *
253            * @param uuid the uuid of this document library file version
254            */
255            public void setUuid(java.lang.String uuid) {
256                    _dlFileVersion.setUuid(uuid);
257            }
258    
259            /**
260            * Returns the file version ID of this document library file version.
261            *
262            * @return the file version ID of this document library file version
263            */
264            public long getFileVersionId() {
265                    return _dlFileVersion.getFileVersionId();
266            }
267    
268            /**
269            * Sets the file version ID of this document library file version.
270            *
271            * @param fileVersionId the file version ID of this document library file version
272            */
273            public void setFileVersionId(long fileVersionId) {
274                    _dlFileVersion.setFileVersionId(fileVersionId);
275            }
276    
277            /**
278            * Returns the group ID of this document library file version.
279            *
280            * @return the group ID of this document library file version
281            */
282            public long getGroupId() {
283                    return _dlFileVersion.getGroupId();
284            }
285    
286            /**
287            * Sets the group ID of this document library file version.
288            *
289            * @param groupId the group ID of this document library file version
290            */
291            public void setGroupId(long groupId) {
292                    _dlFileVersion.setGroupId(groupId);
293            }
294    
295            /**
296            * Returns the company ID of this document library file version.
297            *
298            * @return the company ID of this document library file version
299            */
300            public long getCompanyId() {
301                    return _dlFileVersion.getCompanyId();
302            }
303    
304            /**
305            * Sets the company ID of this document library file version.
306            *
307            * @param companyId the company ID of this document library file version
308            */
309            public void setCompanyId(long companyId) {
310                    _dlFileVersion.setCompanyId(companyId);
311            }
312    
313            /**
314            * Returns the user ID of this document library file version.
315            *
316            * @return the user ID of this document library file version
317            */
318            public long getUserId() {
319                    return _dlFileVersion.getUserId();
320            }
321    
322            /**
323            * Sets the user ID of this document library file version.
324            *
325            * @param userId the user ID of this document library file version
326            */
327            public void setUserId(long userId) {
328                    _dlFileVersion.setUserId(userId);
329            }
330    
331            /**
332            * Returns the user uuid of this document library file version.
333            *
334            * @return the user uuid of this document library file version
335            * @throws SystemException if a system exception occurred
336            */
337            public java.lang.String getUserUuid()
338                    throws com.liferay.portal.kernel.exception.SystemException {
339                    return _dlFileVersion.getUserUuid();
340            }
341    
342            /**
343            * Sets the user uuid of this document library file version.
344            *
345            * @param userUuid the user uuid of this document library file version
346            */
347            public void setUserUuid(java.lang.String userUuid) {
348                    _dlFileVersion.setUserUuid(userUuid);
349            }
350    
351            /**
352            * Returns the user name of this document library file version.
353            *
354            * @return the user name of this document library file version
355            */
356            public java.lang.String getUserName() {
357                    return _dlFileVersion.getUserName();
358            }
359    
360            /**
361            * Sets the user name of this document library file version.
362            *
363            * @param userName the user name of this document library file version
364            */
365            public void setUserName(java.lang.String userName) {
366                    _dlFileVersion.setUserName(userName);
367            }
368    
369            /**
370            * Returns the create date of this document library file version.
371            *
372            * @return the create date of this document library file version
373            */
374            public java.util.Date getCreateDate() {
375                    return _dlFileVersion.getCreateDate();
376            }
377    
378            /**
379            * Sets the create date of this document library file version.
380            *
381            * @param createDate the create date of this document library file version
382            */
383            public void setCreateDate(java.util.Date createDate) {
384                    _dlFileVersion.setCreateDate(createDate);
385            }
386    
387            /**
388            * Returns the modified date of this document library file version.
389            *
390            * @return the modified date of this document library file version
391            */
392            public java.util.Date getModifiedDate() {
393                    return _dlFileVersion.getModifiedDate();
394            }
395    
396            /**
397            * Sets the modified date of this document library file version.
398            *
399            * @param modifiedDate the modified date of this document library file version
400            */
401            public void setModifiedDate(java.util.Date modifiedDate) {
402                    _dlFileVersion.setModifiedDate(modifiedDate);
403            }
404    
405            /**
406            * Returns the repository ID of this document library file version.
407            *
408            * @return the repository ID of this document library file version
409            */
410            public long getRepositoryId() {
411                    return _dlFileVersion.getRepositoryId();
412            }
413    
414            /**
415            * Sets the repository ID of this document library file version.
416            *
417            * @param repositoryId the repository ID of this document library file version
418            */
419            public void setRepositoryId(long repositoryId) {
420                    _dlFileVersion.setRepositoryId(repositoryId);
421            }
422    
423            /**
424            * Returns the folder ID of this document library file version.
425            *
426            * @return the folder ID of this document library file version
427            */
428            public long getFolderId() {
429                    return _dlFileVersion.getFolderId();
430            }
431    
432            /**
433            * Sets the folder ID of this document library file version.
434            *
435            * @param folderId the folder ID of this document library file version
436            */
437            public void setFolderId(long folderId) {
438                    _dlFileVersion.setFolderId(folderId);
439            }
440    
441            /**
442            * Returns the file entry ID of this document library file version.
443            *
444            * @return the file entry ID of this document library file version
445            */
446            public long getFileEntryId() {
447                    return _dlFileVersion.getFileEntryId();
448            }
449    
450            /**
451            * Sets the file entry ID of this document library file version.
452            *
453            * @param fileEntryId the file entry ID of this document library file version
454            */
455            public void setFileEntryId(long fileEntryId) {
456                    _dlFileVersion.setFileEntryId(fileEntryId);
457            }
458    
459            /**
460            * Returns the extension of this document library file version.
461            *
462            * @return the extension of this document library file version
463            */
464            public java.lang.String getExtension() {
465                    return _dlFileVersion.getExtension();
466            }
467    
468            /**
469            * Sets the extension of this document library file version.
470            *
471            * @param extension the extension of this document library file version
472            */
473            public void setExtension(java.lang.String extension) {
474                    _dlFileVersion.setExtension(extension);
475            }
476    
477            /**
478            * Returns the mime type of this document library file version.
479            *
480            * @return the mime type of this document library file version
481            */
482            public java.lang.String getMimeType() {
483                    return _dlFileVersion.getMimeType();
484            }
485    
486            /**
487            * Sets the mime type of this document library file version.
488            *
489            * @param mimeType the mime type of this document library file version
490            */
491            public void setMimeType(java.lang.String mimeType) {
492                    _dlFileVersion.setMimeType(mimeType);
493            }
494    
495            /**
496            * Returns the title of this document library file version.
497            *
498            * @return the title of this document library file version
499            */
500            public java.lang.String getTitle() {
501                    return _dlFileVersion.getTitle();
502            }
503    
504            /**
505            * Sets the title of this document library file version.
506            *
507            * @param title the title of this document library file version
508            */
509            public void setTitle(java.lang.String title) {
510                    _dlFileVersion.setTitle(title);
511            }
512    
513            /**
514            * Returns the description of this document library file version.
515            *
516            * @return the description of this document library file version
517            */
518            public java.lang.String getDescription() {
519                    return _dlFileVersion.getDescription();
520            }
521    
522            /**
523            * Sets the description of this document library file version.
524            *
525            * @param description the description of this document library file version
526            */
527            public void setDescription(java.lang.String description) {
528                    _dlFileVersion.setDescription(description);
529            }
530    
531            /**
532            * Returns the change log of this document library file version.
533            *
534            * @return the change log of this document library file version
535            */
536            public java.lang.String getChangeLog() {
537                    return _dlFileVersion.getChangeLog();
538            }
539    
540            /**
541            * Sets the change log of this document library file version.
542            *
543            * @param changeLog the change log of this document library file version
544            */
545            public void setChangeLog(java.lang.String changeLog) {
546                    _dlFileVersion.setChangeLog(changeLog);
547            }
548    
549            /**
550            * Returns the extra settings of this document library file version.
551            *
552            * @return the extra settings of this document library file version
553            */
554            public java.lang.String getExtraSettings() {
555                    return _dlFileVersion.getExtraSettings();
556            }
557    
558            /**
559            * Sets the extra settings of this document library file version.
560            *
561            * @param extraSettings the extra settings of this document library file version
562            */
563            public void setExtraSettings(java.lang.String extraSettings) {
564                    _dlFileVersion.setExtraSettings(extraSettings);
565            }
566    
567            /**
568            * Returns the file entry type ID of this document library file version.
569            *
570            * @return the file entry type ID of this document library file version
571            */
572            public long getFileEntryTypeId() {
573                    return _dlFileVersion.getFileEntryTypeId();
574            }
575    
576            /**
577            * Sets the file entry type ID of this document library file version.
578            *
579            * @param fileEntryTypeId the file entry type ID of this document library file version
580            */
581            public void setFileEntryTypeId(long fileEntryTypeId) {
582                    _dlFileVersion.setFileEntryTypeId(fileEntryTypeId);
583            }
584    
585            /**
586            * Returns the version of this document library file version.
587            *
588            * @return the version of this document library file version
589            */
590            public java.lang.String getVersion() {
591                    return _dlFileVersion.getVersion();
592            }
593    
594            /**
595            * Sets the version of this document library file version.
596            *
597            * @param version the version of this document library file version
598            */
599            public void setVersion(java.lang.String version) {
600                    _dlFileVersion.setVersion(version);
601            }
602    
603            /**
604            * Returns the size of this document library file version.
605            *
606            * @return the size of this document library file version
607            */
608            public long getSize() {
609                    return _dlFileVersion.getSize();
610            }
611    
612            /**
613            * Sets the size of this document library file version.
614            *
615            * @param size the size of this document library file version
616            */
617            public void setSize(long size) {
618                    _dlFileVersion.setSize(size);
619            }
620    
621            /**
622            * Returns the status of this document library file version.
623            *
624            * @return the status of this document library file version
625            */
626            public int getStatus() {
627                    return _dlFileVersion.getStatus();
628            }
629    
630            /**
631            * Sets the status of this document library file version.
632            *
633            * @param status the status of this document library file version
634            */
635            public void setStatus(int status) {
636                    _dlFileVersion.setStatus(status);
637            }
638    
639            /**
640            * Returns the status by user ID of this document library file version.
641            *
642            * @return the status by user ID of this document library file version
643            */
644            public long getStatusByUserId() {
645                    return _dlFileVersion.getStatusByUserId();
646            }
647    
648            /**
649            * Sets the status by user ID of this document library file version.
650            *
651            * @param statusByUserId the status by user ID of this document library file version
652            */
653            public void setStatusByUserId(long statusByUserId) {
654                    _dlFileVersion.setStatusByUserId(statusByUserId);
655            }
656    
657            /**
658            * Returns the status by user uuid of this document library file version.
659            *
660            * @return the status by user uuid of this document library file version
661            * @throws SystemException if a system exception occurred
662            */
663            public java.lang.String getStatusByUserUuid()
664                    throws com.liferay.portal.kernel.exception.SystemException {
665                    return _dlFileVersion.getStatusByUserUuid();
666            }
667    
668            /**
669            * Sets the status by user uuid of this document library file version.
670            *
671            * @param statusByUserUuid the status by user uuid of this document library file version
672            */
673            public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
674                    _dlFileVersion.setStatusByUserUuid(statusByUserUuid);
675            }
676    
677            /**
678            * Returns the status by user name of this document library file version.
679            *
680            * @return the status by user name of this document library file version
681            */
682            public java.lang.String getStatusByUserName() {
683                    return _dlFileVersion.getStatusByUserName();
684            }
685    
686            /**
687            * Sets the status by user name of this document library file version.
688            *
689            * @param statusByUserName the status by user name of this document library file version
690            */
691            public void setStatusByUserName(java.lang.String statusByUserName) {
692                    _dlFileVersion.setStatusByUserName(statusByUserName);
693            }
694    
695            /**
696            * Returns the status date of this document library file version.
697            *
698            * @return the status date of this document library file version
699            */
700            public java.util.Date getStatusDate() {
701                    return _dlFileVersion.getStatusDate();
702            }
703    
704            /**
705            * Sets the status date of this document library file version.
706            *
707            * @param statusDate the status date of this document library file version
708            */
709            public void setStatusDate(java.util.Date statusDate) {
710                    _dlFileVersion.setStatusDate(statusDate);
711            }
712    
713            /**
714            * @deprecated Renamed to {@link #isApproved()}
715            */
716            public boolean getApproved() {
717                    return _dlFileVersion.getApproved();
718            }
719    
720            /**
721            * Returns <code>true</code> if this document library file version is approved.
722            *
723            * @return <code>true</code> if this document library file version is approved; <code>false</code> otherwise
724            */
725            public boolean isApproved() {
726                    return _dlFileVersion.isApproved();
727            }
728    
729            /**
730            * Returns <code>true</code> if this document library file version is denied.
731            *
732            * @return <code>true</code> if this document library file version is denied; <code>false</code> otherwise
733            */
734            public boolean isDenied() {
735                    return _dlFileVersion.isDenied();
736            }
737    
738            /**
739            * Returns <code>true</code> if this document library file version is a draft.
740            *
741            * @return <code>true</code> if this document library file version is a draft; <code>false</code> otherwise
742            */
743            public boolean isDraft() {
744                    return _dlFileVersion.isDraft();
745            }
746    
747            /**
748            * Returns <code>true</code> if this document library file version is expired.
749            *
750            * @return <code>true</code> if this document library file version is expired; <code>false</code> otherwise
751            */
752            public boolean isExpired() {
753                    return _dlFileVersion.isExpired();
754            }
755    
756            /**
757            * Returns <code>true</code> if this document library file version is inactive.
758            *
759            * @return <code>true</code> if this document library file version is inactive; <code>false</code> otherwise
760            */
761            public boolean isInactive() {
762                    return _dlFileVersion.isInactive();
763            }
764    
765            /**
766            * Returns <code>true</code> if this document library file version is incomplete.
767            *
768            * @return <code>true</code> if this document library file version is incomplete; <code>false</code> otherwise
769            */
770            public boolean isIncomplete() {
771                    return _dlFileVersion.isIncomplete();
772            }
773    
774            /**
775            * Returns <code>true</code> if this document library file version is pending.
776            *
777            * @return <code>true</code> if this document library file version is pending; <code>false</code> otherwise
778            */
779            public boolean isPending() {
780                    return _dlFileVersion.isPending();
781            }
782    
783            /**
784            * Returns <code>true</code> if this document library file version is scheduled.
785            *
786            * @return <code>true</code> if this document library file version is scheduled; <code>false</code> otherwise
787            */
788            public boolean isScheduled() {
789                    return _dlFileVersion.isScheduled();
790            }
791    
792            public boolean isNew() {
793                    return _dlFileVersion.isNew();
794            }
795    
796            public void setNew(boolean n) {
797                    _dlFileVersion.setNew(n);
798            }
799    
800            public boolean isCachedModel() {
801                    return _dlFileVersion.isCachedModel();
802            }
803    
804            public void setCachedModel(boolean cachedModel) {
805                    _dlFileVersion.setCachedModel(cachedModel);
806            }
807    
808            public boolean isEscapedModel() {
809                    return _dlFileVersion.isEscapedModel();
810            }
811    
812            public java.io.Serializable getPrimaryKeyObj() {
813                    return _dlFileVersion.getPrimaryKeyObj();
814            }
815    
816            public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
817                    _dlFileVersion.setPrimaryKeyObj(primaryKeyObj);
818            }
819    
820            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
821                    return _dlFileVersion.getExpandoBridge();
822            }
823    
824            public void setExpandoBridgeAttributes(
825                    com.liferay.portal.service.ServiceContext serviceContext) {
826                    _dlFileVersion.setExpandoBridgeAttributes(serviceContext);
827            }
828    
829            @Override
830            public java.lang.Object clone() {
831                    return new DLFileVersionWrapper((DLFileVersion)_dlFileVersion.clone());
832            }
833    
834            public int compareTo(
835                    com.liferay.portlet.documentlibrary.model.DLFileVersion dlFileVersion) {
836                    return _dlFileVersion.compareTo(dlFileVersion);
837            }
838    
839            @Override
840            public int hashCode() {
841                    return _dlFileVersion.hashCode();
842            }
843    
844            public com.liferay.portal.model.CacheModel<com.liferay.portlet.documentlibrary.model.DLFileVersion> toCacheModel() {
845                    return _dlFileVersion.toCacheModel();
846            }
847    
848            public com.liferay.portlet.documentlibrary.model.DLFileVersion toEscapedModel() {
849                    return new DLFileVersionWrapper(_dlFileVersion.toEscapedModel());
850            }
851    
852            @Override
853            public java.lang.String toString() {
854                    return _dlFileVersion.toString();
855            }
856    
857            public java.lang.String toXmlString() {
858                    return _dlFileVersion.toXmlString();
859            }
860    
861            public void persist()
862                    throws com.liferay.portal.kernel.exception.SystemException {
863                    _dlFileVersion.persist();
864            }
865    
866            public java.io.InputStream getContentStream(boolean incrementCounter)
867                    throws com.liferay.portal.kernel.exception.PortalException,
868                            com.liferay.portal.kernel.exception.SystemException {
869                    return _dlFileVersion.getContentStream(incrementCounter);
870            }
871    
872            public com.liferay.portal.kernel.util.UnicodeProperties getExtraSettingsProperties() {
873                    return _dlFileVersion.getExtraSettingsProperties();
874            }
875    
876            public com.liferay.portlet.documentlibrary.model.DLFileEntry getFileEntry()
877                    throws com.liferay.portal.kernel.exception.PortalException,
878                            com.liferay.portal.kernel.exception.SystemException {
879                    return _dlFileVersion.getFileEntry();
880            }
881    
882            public com.liferay.portlet.documentlibrary.model.DLFolder getFolder() {
883                    return _dlFileVersion.getFolder();
884            }
885    
886            public java.lang.String getIcon() {
887                    return _dlFileVersion.getIcon();
888            }
889    
890            public void setExtraSettingsProperties(
891                    com.liferay.portal.kernel.util.UnicodeProperties extraSettingsProperties) {
892                    _dlFileVersion.setExtraSettingsProperties(extraSettingsProperties);
893            }
894    
895            /**
896             * @deprecated Renamed to {@link #getWrappedModel}
897             */
898            public DLFileVersion getWrappedDLFileVersion() {
899                    return _dlFileVersion;
900            }
901    
902            public DLFileVersion getWrappedModel() {
903                    return _dlFileVersion;
904            }
905    
906            public void resetOriginalValues() {
907                    _dlFileVersion.resetOriginalValues();
908            }
909    
910            private DLFileVersion _dlFileVersion;
911    }