001    /**
002     * Copyright (c) 2000-2012 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 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 DLFileEntry}.
026     * </p>
027     *
028     * @author    Brian Wing Shun Chan
029     * @see       DLFileEntry
030     * @generated
031     */
032    public class DLFileEntryWrapper implements DLFileEntry,
033            ModelWrapper<DLFileEntry> {
034            public DLFileEntryWrapper(DLFileEntry dlFileEntry) {
035                    _dlFileEntry = dlFileEntry;
036            }
037    
038            public Class<?> getModelClass() {
039                    return DLFileEntry.class;
040            }
041    
042            public String getModelClassName() {
043                    return DLFileEntry.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("fileEntryId", getFileEntryId());
051                    attributes.put("groupId", getGroupId());
052                    attributes.put("companyId", getCompanyId());
053                    attributes.put("userId", getUserId());
054                    attributes.put("userName", getUserName());
055                    attributes.put("versionUserId", getVersionUserId());
056                    attributes.put("versionUserName", getVersionUserName());
057                    attributes.put("createDate", getCreateDate());
058                    attributes.put("modifiedDate", getModifiedDate());
059                    attributes.put("classNameId", getClassNameId());
060                    attributes.put("classPK", getClassPK());
061                    attributes.put("repositoryId", getRepositoryId());
062                    attributes.put("folderId", getFolderId());
063                    attributes.put("name", getName());
064                    attributes.put("extension", getExtension());
065                    attributes.put("mimeType", getMimeType());
066                    attributes.put("title", getTitle());
067                    attributes.put("description", getDescription());
068                    attributes.put("extraSettings", getExtraSettings());
069                    attributes.put("fileEntryTypeId", getFileEntryTypeId());
070                    attributes.put("version", getVersion());
071                    attributes.put("size", getSize());
072                    attributes.put("readCount", getReadCount());
073                    attributes.put("smallImageId", getSmallImageId());
074                    attributes.put("largeImageId", getLargeImageId());
075                    attributes.put("custom1ImageId", getCustom1ImageId());
076                    attributes.put("custom2ImageId", getCustom2ImageId());
077                    attributes.put("manualCheckInRequired", getManualCheckInRequired());
078    
079                    return attributes;
080            }
081    
082            public void setModelAttributes(Map<String, Object> attributes) {
083                    String uuid = (String)attributes.get("uuid");
084    
085                    if (uuid != null) {
086                            setUuid(uuid);
087                    }
088    
089                    Long fileEntryId = (Long)attributes.get("fileEntryId");
090    
091                    if (fileEntryId != null) {
092                            setFileEntryId(fileEntryId);
093                    }
094    
095                    Long groupId = (Long)attributes.get("groupId");
096    
097                    if (groupId != null) {
098                            setGroupId(groupId);
099                    }
100    
101                    Long companyId = (Long)attributes.get("companyId");
102    
103                    if (companyId != null) {
104                            setCompanyId(companyId);
105                    }
106    
107                    Long userId = (Long)attributes.get("userId");
108    
109                    if (userId != null) {
110                            setUserId(userId);
111                    }
112    
113                    String userName = (String)attributes.get("userName");
114    
115                    if (userName != null) {
116                            setUserName(userName);
117                    }
118    
119                    Long versionUserId = (Long)attributes.get("versionUserId");
120    
121                    if (versionUserId != null) {
122                            setVersionUserId(versionUserId);
123                    }
124    
125                    String versionUserName = (String)attributes.get("versionUserName");
126    
127                    if (versionUserName != null) {
128                            setVersionUserName(versionUserName);
129                    }
130    
131                    Date createDate = (Date)attributes.get("createDate");
132    
133                    if (createDate != null) {
134                            setCreateDate(createDate);
135                    }
136    
137                    Date modifiedDate = (Date)attributes.get("modifiedDate");
138    
139                    if (modifiedDate != null) {
140                            setModifiedDate(modifiedDate);
141                    }
142    
143                    Long classNameId = (Long)attributes.get("classNameId");
144    
145                    if (classNameId != null) {
146                            setClassNameId(classNameId);
147                    }
148    
149                    Long classPK = (Long)attributes.get("classPK");
150    
151                    if (classPK != null) {
152                            setClassPK(classPK);
153                    }
154    
155                    Long repositoryId = (Long)attributes.get("repositoryId");
156    
157                    if (repositoryId != null) {
158                            setRepositoryId(repositoryId);
159                    }
160    
161                    Long folderId = (Long)attributes.get("folderId");
162    
163                    if (folderId != null) {
164                            setFolderId(folderId);
165                    }
166    
167                    String name = (String)attributes.get("name");
168    
169                    if (name != null) {
170                            setName(name);
171                    }
172    
173                    String extension = (String)attributes.get("extension");
174    
175                    if (extension != null) {
176                            setExtension(extension);
177                    }
178    
179                    String mimeType = (String)attributes.get("mimeType");
180    
181                    if (mimeType != null) {
182                            setMimeType(mimeType);
183                    }
184    
185                    String title = (String)attributes.get("title");
186    
187                    if (title != null) {
188                            setTitle(title);
189                    }
190    
191                    String description = (String)attributes.get("description");
192    
193                    if (description != null) {
194                            setDescription(description);
195                    }
196    
197                    String extraSettings = (String)attributes.get("extraSettings");
198    
199                    if (extraSettings != null) {
200                            setExtraSettings(extraSettings);
201                    }
202    
203                    Long fileEntryTypeId = (Long)attributes.get("fileEntryTypeId");
204    
205                    if (fileEntryTypeId != null) {
206                            setFileEntryTypeId(fileEntryTypeId);
207                    }
208    
209                    String version = (String)attributes.get("version");
210    
211                    if (version != null) {
212                            setVersion(version);
213                    }
214    
215                    Long size = (Long)attributes.get("size");
216    
217                    if (size != null) {
218                            setSize(size);
219                    }
220    
221                    Integer readCount = (Integer)attributes.get("readCount");
222    
223                    if (readCount != null) {
224                            setReadCount(readCount);
225                    }
226    
227                    Long smallImageId = (Long)attributes.get("smallImageId");
228    
229                    if (smallImageId != null) {
230                            setSmallImageId(smallImageId);
231                    }
232    
233                    Long largeImageId = (Long)attributes.get("largeImageId");
234    
235                    if (largeImageId != null) {
236                            setLargeImageId(largeImageId);
237                    }
238    
239                    Long custom1ImageId = (Long)attributes.get("custom1ImageId");
240    
241                    if (custom1ImageId != null) {
242                            setCustom1ImageId(custom1ImageId);
243                    }
244    
245                    Long custom2ImageId = (Long)attributes.get("custom2ImageId");
246    
247                    if (custom2ImageId != null) {
248                            setCustom2ImageId(custom2ImageId);
249                    }
250    
251                    Boolean manualCheckInRequired = (Boolean)attributes.get(
252                                    "manualCheckInRequired");
253    
254                    if (manualCheckInRequired != null) {
255                            setManualCheckInRequired(manualCheckInRequired);
256                    }
257            }
258    
259            /**
260            * Returns the primary key of this document library file entry.
261            *
262            * @return the primary key of this document library file entry
263            */
264            public long getPrimaryKey() {
265                    return _dlFileEntry.getPrimaryKey();
266            }
267    
268            /**
269            * Sets the primary key of this document library file entry.
270            *
271            * @param primaryKey the primary key of this document library file entry
272            */
273            public void setPrimaryKey(long primaryKey) {
274                    _dlFileEntry.setPrimaryKey(primaryKey);
275            }
276    
277            /**
278            * Returns the uuid of this document library file entry.
279            *
280            * @return the uuid of this document library file entry
281            */
282            public java.lang.String getUuid() {
283                    return _dlFileEntry.getUuid();
284            }
285    
286            /**
287            * Sets the uuid of this document library file entry.
288            *
289            * @param uuid the uuid of this document library file entry
290            */
291            public void setUuid(java.lang.String uuid) {
292                    _dlFileEntry.setUuid(uuid);
293            }
294    
295            /**
296            * Returns the file entry ID of this document library file entry.
297            *
298            * @return the file entry ID of this document library file entry
299            */
300            public long getFileEntryId() {
301                    return _dlFileEntry.getFileEntryId();
302            }
303    
304            /**
305            * Sets the file entry ID of this document library file entry.
306            *
307            * @param fileEntryId the file entry ID of this document library file entry
308            */
309            public void setFileEntryId(long fileEntryId) {
310                    _dlFileEntry.setFileEntryId(fileEntryId);
311            }
312    
313            /**
314            * Returns the group ID of this document library file entry.
315            *
316            * @return the group ID of this document library file entry
317            */
318            public long getGroupId() {
319                    return _dlFileEntry.getGroupId();
320            }
321    
322            /**
323            * Sets the group ID of this document library file entry.
324            *
325            * @param groupId the group ID of this document library file entry
326            */
327            public void setGroupId(long groupId) {
328                    _dlFileEntry.setGroupId(groupId);
329            }
330    
331            /**
332            * Returns the company ID of this document library file entry.
333            *
334            * @return the company ID of this document library file entry
335            */
336            public long getCompanyId() {
337                    return _dlFileEntry.getCompanyId();
338            }
339    
340            /**
341            * Sets the company ID of this document library file entry.
342            *
343            * @param companyId the company ID of this document library file entry
344            */
345            public void setCompanyId(long companyId) {
346                    _dlFileEntry.setCompanyId(companyId);
347            }
348    
349            /**
350            * Returns the user ID of this document library file entry.
351            *
352            * @return the user ID of this document library file entry
353            */
354            public long getUserId() {
355                    return _dlFileEntry.getUserId();
356            }
357    
358            /**
359            * Sets the user ID of this document library file entry.
360            *
361            * @param userId the user ID of this document library file entry
362            */
363            public void setUserId(long userId) {
364                    _dlFileEntry.setUserId(userId);
365            }
366    
367            /**
368            * Returns the user uuid of this document library file entry.
369            *
370            * @return the user uuid of this document library file entry
371            * @throws SystemException if a system exception occurred
372            */
373            public java.lang.String getUserUuid()
374                    throws com.liferay.portal.kernel.exception.SystemException {
375                    return _dlFileEntry.getUserUuid();
376            }
377    
378            /**
379            * Sets the user uuid of this document library file entry.
380            *
381            * @param userUuid the user uuid of this document library file entry
382            */
383            public void setUserUuid(java.lang.String userUuid) {
384                    _dlFileEntry.setUserUuid(userUuid);
385            }
386    
387            /**
388            * Returns the user name of this document library file entry.
389            *
390            * @return the user name of this document library file entry
391            */
392            public java.lang.String getUserName() {
393                    return _dlFileEntry.getUserName();
394            }
395    
396            /**
397            * Sets the user name of this document library file entry.
398            *
399            * @param userName the user name of this document library file entry
400            */
401            public void setUserName(java.lang.String userName) {
402                    _dlFileEntry.setUserName(userName);
403            }
404    
405            /**
406            * Returns the version user ID of this document library file entry.
407            *
408            * @return the version user ID of this document library file entry
409            */
410            public long getVersionUserId() {
411                    return _dlFileEntry.getVersionUserId();
412            }
413    
414            /**
415            * Sets the version user ID of this document library file entry.
416            *
417            * @param versionUserId the version user ID of this document library file entry
418            */
419            public void setVersionUserId(long versionUserId) {
420                    _dlFileEntry.setVersionUserId(versionUserId);
421            }
422    
423            /**
424            * Returns the version user uuid of this document library file entry.
425            *
426            * @return the version user uuid of this document library file entry
427            * @throws SystemException if a system exception occurred
428            */
429            public java.lang.String getVersionUserUuid()
430                    throws com.liferay.portal.kernel.exception.SystemException {
431                    return _dlFileEntry.getVersionUserUuid();
432            }
433    
434            /**
435            * Sets the version user uuid of this document library file entry.
436            *
437            * @param versionUserUuid the version user uuid of this document library file entry
438            */
439            public void setVersionUserUuid(java.lang.String versionUserUuid) {
440                    _dlFileEntry.setVersionUserUuid(versionUserUuid);
441            }
442    
443            /**
444            * Returns the version user name of this document library file entry.
445            *
446            * @return the version user name of this document library file entry
447            */
448            public java.lang.String getVersionUserName() {
449                    return _dlFileEntry.getVersionUserName();
450            }
451    
452            /**
453            * Sets the version user name of this document library file entry.
454            *
455            * @param versionUserName the version user name of this document library file entry
456            */
457            public void setVersionUserName(java.lang.String versionUserName) {
458                    _dlFileEntry.setVersionUserName(versionUserName);
459            }
460    
461            /**
462            * Returns the create date of this document library file entry.
463            *
464            * @return the create date of this document library file entry
465            */
466            public java.util.Date getCreateDate() {
467                    return _dlFileEntry.getCreateDate();
468            }
469    
470            /**
471            * Sets the create date of this document library file entry.
472            *
473            * @param createDate the create date of this document library file entry
474            */
475            public void setCreateDate(java.util.Date createDate) {
476                    _dlFileEntry.setCreateDate(createDate);
477            }
478    
479            /**
480            * Returns the modified date of this document library file entry.
481            *
482            * @return the modified date of this document library file entry
483            */
484            public java.util.Date getModifiedDate() {
485                    return _dlFileEntry.getModifiedDate();
486            }
487    
488            /**
489            * Sets the modified date of this document library file entry.
490            *
491            * @param modifiedDate the modified date of this document library file entry
492            */
493            public void setModifiedDate(java.util.Date modifiedDate) {
494                    _dlFileEntry.setModifiedDate(modifiedDate);
495            }
496    
497            /**
498            * Returns the fully qualified class name of this document library file entry.
499            *
500            * @return the fully qualified class name of this document library file entry
501            */
502            public java.lang.String getClassName() {
503                    return _dlFileEntry.getClassName();
504            }
505    
506            public void setClassName(java.lang.String className) {
507                    _dlFileEntry.setClassName(className);
508            }
509    
510            /**
511            * Returns the class name ID of this document library file entry.
512            *
513            * @return the class name ID of this document library file entry
514            */
515            public long getClassNameId() {
516                    return _dlFileEntry.getClassNameId();
517            }
518    
519            /**
520            * Sets the class name ID of this document library file entry.
521            *
522            * @param classNameId the class name ID of this document library file entry
523            */
524            public void setClassNameId(long classNameId) {
525                    _dlFileEntry.setClassNameId(classNameId);
526            }
527    
528            /**
529            * Returns the class p k of this document library file entry.
530            *
531            * @return the class p k of this document library file entry
532            */
533            public long getClassPK() {
534                    return _dlFileEntry.getClassPK();
535            }
536    
537            /**
538            * Sets the class p k of this document library file entry.
539            *
540            * @param classPK the class p k of this document library file entry
541            */
542            public void setClassPK(long classPK) {
543                    _dlFileEntry.setClassPK(classPK);
544            }
545    
546            /**
547            * Returns the repository ID of this document library file entry.
548            *
549            * @return the repository ID of this document library file entry
550            */
551            public long getRepositoryId() {
552                    return _dlFileEntry.getRepositoryId();
553            }
554    
555            /**
556            * Sets the repository ID of this document library file entry.
557            *
558            * @param repositoryId the repository ID of this document library file entry
559            */
560            public void setRepositoryId(long repositoryId) {
561                    _dlFileEntry.setRepositoryId(repositoryId);
562            }
563    
564            /**
565            * Returns the folder ID of this document library file entry.
566            *
567            * @return the folder ID of this document library file entry
568            */
569            public long getFolderId() {
570                    return _dlFileEntry.getFolderId();
571            }
572    
573            /**
574            * Sets the folder ID of this document library file entry.
575            *
576            * @param folderId the folder ID of this document library file entry
577            */
578            public void setFolderId(long folderId) {
579                    _dlFileEntry.setFolderId(folderId);
580            }
581    
582            /**
583            * Returns the name of this document library file entry.
584            *
585            * @return the name of this document library file entry
586            */
587            public java.lang.String getName() {
588                    return _dlFileEntry.getName();
589            }
590    
591            /**
592            * Sets the name of this document library file entry.
593            *
594            * @param name the name of this document library file entry
595            */
596            public void setName(java.lang.String name) {
597                    _dlFileEntry.setName(name);
598            }
599    
600            /**
601            * Returns the extension of this document library file entry.
602            *
603            * @return the extension of this document library file entry
604            */
605            public java.lang.String getExtension() {
606                    return _dlFileEntry.getExtension();
607            }
608    
609            /**
610            * Sets the extension of this document library file entry.
611            *
612            * @param extension the extension of this document library file entry
613            */
614            public void setExtension(java.lang.String extension) {
615                    _dlFileEntry.setExtension(extension);
616            }
617    
618            /**
619            * Returns the mime type of this document library file entry.
620            *
621            * @return the mime type of this document library file entry
622            */
623            public java.lang.String getMimeType() {
624                    return _dlFileEntry.getMimeType();
625            }
626    
627            /**
628            * Sets the mime type of this document library file entry.
629            *
630            * @param mimeType the mime type of this document library file entry
631            */
632            public void setMimeType(java.lang.String mimeType) {
633                    _dlFileEntry.setMimeType(mimeType);
634            }
635    
636            /**
637            * Returns the title of this document library file entry.
638            *
639            * @return the title of this document library file entry
640            */
641            public java.lang.String getTitle() {
642                    return _dlFileEntry.getTitle();
643            }
644    
645            /**
646            * Sets the title of this document library file entry.
647            *
648            * @param title the title of this document library file entry
649            */
650            public void setTitle(java.lang.String title) {
651                    _dlFileEntry.setTitle(title);
652            }
653    
654            /**
655            * Returns the description of this document library file entry.
656            *
657            * @return the description of this document library file entry
658            */
659            public java.lang.String getDescription() {
660                    return _dlFileEntry.getDescription();
661            }
662    
663            /**
664            * Sets the description of this document library file entry.
665            *
666            * @param description the description of this document library file entry
667            */
668            public void setDescription(java.lang.String description) {
669                    _dlFileEntry.setDescription(description);
670            }
671    
672            /**
673            * Returns the extra settings of this document library file entry.
674            *
675            * @return the extra settings of this document library file entry
676            */
677            public java.lang.String getExtraSettings() {
678                    return _dlFileEntry.getExtraSettings();
679            }
680    
681            /**
682            * Sets the extra settings of this document library file entry.
683            *
684            * @param extraSettings the extra settings of this document library file entry
685            */
686            public void setExtraSettings(java.lang.String extraSettings) {
687                    _dlFileEntry.setExtraSettings(extraSettings);
688            }
689    
690            /**
691            * Returns the file entry type ID of this document library file entry.
692            *
693            * @return the file entry type ID of this document library file entry
694            */
695            public long getFileEntryTypeId() {
696                    return _dlFileEntry.getFileEntryTypeId();
697            }
698    
699            /**
700            * Sets the file entry type ID of this document library file entry.
701            *
702            * @param fileEntryTypeId the file entry type ID of this document library file entry
703            */
704            public void setFileEntryTypeId(long fileEntryTypeId) {
705                    _dlFileEntry.setFileEntryTypeId(fileEntryTypeId);
706            }
707    
708            /**
709            * Returns the version of this document library file entry.
710            *
711            * @return the version of this document library file entry
712            */
713            public java.lang.String getVersion() {
714                    return _dlFileEntry.getVersion();
715            }
716    
717            /**
718            * Sets the version of this document library file entry.
719            *
720            * @param version the version of this document library file entry
721            */
722            public void setVersion(java.lang.String version) {
723                    _dlFileEntry.setVersion(version);
724            }
725    
726            /**
727            * Returns the size of this document library file entry.
728            *
729            * @return the size of this document library file entry
730            */
731            public long getSize() {
732                    return _dlFileEntry.getSize();
733            }
734    
735            /**
736            * Sets the size of this document library file entry.
737            *
738            * @param size the size of this document library file entry
739            */
740            public void setSize(long size) {
741                    _dlFileEntry.setSize(size);
742            }
743    
744            /**
745            * Returns the read count of this document library file entry.
746            *
747            * @return the read count of this document library file entry
748            */
749            public int getReadCount() {
750                    return _dlFileEntry.getReadCount();
751            }
752    
753            /**
754            * Sets the read count of this document library file entry.
755            *
756            * @param readCount the read count of this document library file entry
757            */
758            public void setReadCount(int readCount) {
759                    _dlFileEntry.setReadCount(readCount);
760            }
761    
762            /**
763            * Returns the small image ID of this document library file entry.
764            *
765            * @return the small image ID of this document library file entry
766            */
767            public long getSmallImageId() {
768                    return _dlFileEntry.getSmallImageId();
769            }
770    
771            /**
772            * Sets the small image ID of this document library file entry.
773            *
774            * @param smallImageId the small image ID of this document library file entry
775            */
776            public void setSmallImageId(long smallImageId) {
777                    _dlFileEntry.setSmallImageId(smallImageId);
778            }
779    
780            /**
781            * Returns the large image ID of this document library file entry.
782            *
783            * @return the large image ID of this document library file entry
784            */
785            public long getLargeImageId() {
786                    return _dlFileEntry.getLargeImageId();
787            }
788    
789            /**
790            * Sets the large image ID of this document library file entry.
791            *
792            * @param largeImageId the large image ID of this document library file entry
793            */
794            public void setLargeImageId(long largeImageId) {
795                    _dlFileEntry.setLargeImageId(largeImageId);
796            }
797    
798            /**
799            * Returns the custom1 image ID of this document library file entry.
800            *
801            * @return the custom1 image ID of this document library file entry
802            */
803            public long getCustom1ImageId() {
804                    return _dlFileEntry.getCustom1ImageId();
805            }
806    
807            /**
808            * Sets the custom1 image ID of this document library file entry.
809            *
810            * @param custom1ImageId the custom1 image ID of this document library file entry
811            */
812            public void setCustom1ImageId(long custom1ImageId) {
813                    _dlFileEntry.setCustom1ImageId(custom1ImageId);
814            }
815    
816            /**
817            * Returns the custom2 image ID of this document library file entry.
818            *
819            * @return the custom2 image ID of this document library file entry
820            */
821            public long getCustom2ImageId() {
822                    return _dlFileEntry.getCustom2ImageId();
823            }
824    
825            /**
826            * Sets the custom2 image ID of this document library file entry.
827            *
828            * @param custom2ImageId the custom2 image ID of this document library file entry
829            */
830            public void setCustom2ImageId(long custom2ImageId) {
831                    _dlFileEntry.setCustom2ImageId(custom2ImageId);
832            }
833    
834            /**
835            * Returns the manual check in required of this document library file entry.
836            *
837            * @return the manual check in required of this document library file entry
838            */
839            public boolean getManualCheckInRequired() {
840                    return _dlFileEntry.getManualCheckInRequired();
841            }
842    
843            /**
844            * Returns <code>true</code> if this document library file entry is manual check in required.
845            *
846            * @return <code>true</code> if this document library file entry is manual check in required; <code>false</code> otherwise
847            */
848            public boolean isManualCheckInRequired() {
849                    return _dlFileEntry.isManualCheckInRequired();
850            }
851    
852            /**
853            * Sets whether this document library file entry is manual check in required.
854            *
855            * @param manualCheckInRequired the manual check in required of this document library file entry
856            */
857            public void setManualCheckInRequired(boolean manualCheckInRequired) {
858                    _dlFileEntry.setManualCheckInRequired(manualCheckInRequired);
859            }
860    
861            public boolean isNew() {
862                    return _dlFileEntry.isNew();
863            }
864    
865            public void setNew(boolean n) {
866                    _dlFileEntry.setNew(n);
867            }
868    
869            public boolean isCachedModel() {
870                    return _dlFileEntry.isCachedModel();
871            }
872    
873            public void setCachedModel(boolean cachedModel) {
874                    _dlFileEntry.setCachedModel(cachedModel);
875            }
876    
877            public boolean isEscapedModel() {
878                    return _dlFileEntry.isEscapedModel();
879            }
880    
881            public java.io.Serializable getPrimaryKeyObj() {
882                    return _dlFileEntry.getPrimaryKeyObj();
883            }
884    
885            public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
886                    _dlFileEntry.setPrimaryKeyObj(primaryKeyObj);
887            }
888    
889            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
890                    return _dlFileEntry.getExpandoBridge();
891            }
892    
893            public void setExpandoBridgeAttributes(
894                    com.liferay.portal.service.ServiceContext serviceContext) {
895                    _dlFileEntry.setExpandoBridgeAttributes(serviceContext);
896            }
897    
898            @Override
899            public java.lang.Object clone() {
900                    return new DLFileEntryWrapper((DLFileEntry)_dlFileEntry.clone());
901            }
902    
903            public int compareTo(
904                    com.liferay.portlet.documentlibrary.model.DLFileEntry dlFileEntry) {
905                    return _dlFileEntry.compareTo(dlFileEntry);
906            }
907    
908            @Override
909            public int hashCode() {
910                    return _dlFileEntry.hashCode();
911            }
912    
913            public com.liferay.portal.model.CacheModel<com.liferay.portlet.documentlibrary.model.DLFileEntry> toCacheModel() {
914                    return _dlFileEntry.toCacheModel();
915            }
916    
917            public com.liferay.portlet.documentlibrary.model.DLFileEntry toEscapedModel() {
918                    return new DLFileEntryWrapper(_dlFileEntry.toEscapedModel());
919            }
920    
921            public com.liferay.portlet.documentlibrary.model.DLFileEntry toUnescapedModel() {
922                    return new DLFileEntryWrapper(_dlFileEntry.toUnescapedModel());
923            }
924    
925            @Override
926            public java.lang.String toString() {
927                    return _dlFileEntry.toString();
928            }
929    
930            public java.lang.String toXmlString() {
931                    return _dlFileEntry.toXmlString();
932            }
933    
934            public void persist()
935                    throws com.liferay.portal.kernel.exception.SystemException {
936                    _dlFileEntry.persist();
937            }
938    
939            public java.io.InputStream getContentStream()
940                    throws com.liferay.portal.kernel.exception.PortalException,
941                            com.liferay.portal.kernel.exception.SystemException {
942                    return _dlFileEntry.getContentStream();
943            }
944    
945            public java.io.InputStream getContentStream(java.lang.String version)
946                    throws com.liferay.portal.kernel.exception.PortalException,
947                            com.liferay.portal.kernel.exception.SystemException {
948                    return _dlFileEntry.getContentStream(version);
949            }
950    
951            public long getDataRepositoryId() {
952                    return _dlFileEntry.getDataRepositoryId();
953            }
954    
955            public com.liferay.portal.kernel.util.UnicodeProperties getExtraSettingsProperties() {
956                    return _dlFileEntry.getExtraSettingsProperties();
957            }
958    
959            public java.util.Map<java.lang.String, com.liferay.portlet.dynamicdatamapping.storage.Fields> getFieldsMap(
960                    long fileVersionId)
961                    throws com.liferay.portal.kernel.exception.PortalException,
962                            com.liferay.portal.kernel.exception.SystemException {
963                    return _dlFileEntry.getFieldsMap(fileVersionId);
964            }
965    
966            public com.liferay.portlet.documentlibrary.model.DLFileVersion getFileVersion()
967                    throws com.liferay.portal.kernel.exception.PortalException,
968                            com.liferay.portal.kernel.exception.SystemException {
969                    return _dlFileEntry.getFileVersion();
970            }
971    
972            public com.liferay.portlet.documentlibrary.model.DLFileVersion getFileVersion(
973                    java.lang.String version)
974                    throws com.liferay.portal.kernel.exception.PortalException,
975                            com.liferay.portal.kernel.exception.SystemException {
976                    return _dlFileEntry.getFileVersion(version);
977            }
978    
979            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileVersion> getFileVersions(
980                    int status) throws com.liferay.portal.kernel.exception.SystemException {
981                    return _dlFileEntry.getFileVersions(status);
982            }
983    
984            public int getFileVersionsCount(int status)
985                    throws com.liferay.portal.kernel.exception.SystemException {
986                    return _dlFileEntry.getFileVersionsCount(status);
987            }
988    
989            public com.liferay.portlet.documentlibrary.model.DLFolder getFolder() {
990                    return _dlFileEntry.getFolder();
991            }
992    
993            public java.lang.String getIcon() {
994                    return _dlFileEntry.getIcon();
995            }
996    
997            public com.liferay.portlet.documentlibrary.model.DLFileVersion getLatestFileVersion(
998                    boolean trusted)
999                    throws com.liferay.portal.kernel.exception.PortalException,
1000                            com.liferay.portal.kernel.exception.SystemException {
1001                    return _dlFileEntry.getLatestFileVersion(trusted);
1002            }
1003    
1004            public com.liferay.portal.model.Lock getLock() {
1005                    return _dlFileEntry.getLock();
1006            }
1007    
1008            public java.lang.String getLuceneProperties() {
1009                    return _dlFileEntry.getLuceneProperties();
1010            }
1011    
1012            public com.liferay.portlet.documentlibrary.model.DLFolder getTrashContainer() {
1013                    return _dlFileEntry.getTrashContainer();
1014            }
1015    
1016            public boolean hasLock() {
1017                    return _dlFileEntry.hasLock();
1018            }
1019    
1020            public boolean isCheckedOut() {
1021                    return _dlFileEntry.isCheckedOut();
1022            }
1023    
1024            public boolean isInHiddenFolder() {
1025                    return _dlFileEntry.isInHiddenFolder();
1026            }
1027    
1028            public boolean isInTrashContainer() {
1029                    return _dlFileEntry.isInTrashContainer();
1030            }
1031    
1032            public void setExtraSettingsProperties(
1033                    com.liferay.portal.kernel.util.UnicodeProperties extraSettingsProperties) {
1034                    _dlFileEntry.setExtraSettingsProperties(extraSettingsProperties);
1035            }
1036    
1037            /**
1038             * @deprecated Renamed to {@link #getWrappedModel}
1039             */
1040            public DLFileEntry getWrappedDLFileEntry() {
1041                    return _dlFileEntry;
1042            }
1043    
1044            public DLFileEntry getWrappedModel() {
1045                    return _dlFileEntry;
1046            }
1047    
1048            public void resetOriginalValues() {
1049                    _dlFileEntry.resetOriginalValues();
1050            }
1051    
1052            private DLFileEntry _dlFileEntry;
1053    }