001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.documentlibrary.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link DLFileEntry}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       DLFileEntry
025     * @generated
026     */
027    public class DLFileEntryWrapper implements DLFileEntry {
028            public DLFileEntryWrapper(DLFileEntry dlFileEntry) {
029                    _dlFileEntry = dlFileEntry;
030            }
031    
032            public long getPrimaryKey() {
033                    return _dlFileEntry.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _dlFileEntry.setPrimaryKey(pk);
038            }
039    
040            public java.lang.String getUuid() {
041                    return _dlFileEntry.getUuid();
042            }
043    
044            public void setUuid(java.lang.String uuid) {
045                    _dlFileEntry.setUuid(uuid);
046            }
047    
048            public long getFileEntryId() {
049                    return _dlFileEntry.getFileEntryId();
050            }
051    
052            public void setFileEntryId(long fileEntryId) {
053                    _dlFileEntry.setFileEntryId(fileEntryId);
054            }
055    
056            public long getGroupId() {
057                    return _dlFileEntry.getGroupId();
058            }
059    
060            public void setGroupId(long groupId) {
061                    _dlFileEntry.setGroupId(groupId);
062            }
063    
064            public long getCompanyId() {
065                    return _dlFileEntry.getCompanyId();
066            }
067    
068            public void setCompanyId(long companyId) {
069                    _dlFileEntry.setCompanyId(companyId);
070            }
071    
072            public long getUserId() {
073                    return _dlFileEntry.getUserId();
074            }
075    
076            public void setUserId(long userId) {
077                    _dlFileEntry.setUserId(userId);
078            }
079    
080            public java.lang.String getUserUuid()
081                    throws com.liferay.portal.kernel.exception.SystemException {
082                    return _dlFileEntry.getUserUuid();
083            }
084    
085            public void setUserUuid(java.lang.String userUuid) {
086                    _dlFileEntry.setUserUuid(userUuid);
087            }
088    
089            public java.lang.String getUserName() {
090                    return _dlFileEntry.getUserName();
091            }
092    
093            public void setUserName(java.lang.String userName) {
094                    _dlFileEntry.setUserName(userName);
095            }
096    
097            public long getVersionUserId() {
098                    return _dlFileEntry.getVersionUserId();
099            }
100    
101            public void setVersionUserId(long versionUserId) {
102                    _dlFileEntry.setVersionUserId(versionUserId);
103            }
104    
105            public java.lang.String getVersionUserUuid()
106                    throws com.liferay.portal.kernel.exception.SystemException {
107                    return _dlFileEntry.getVersionUserUuid();
108            }
109    
110            public void setVersionUserUuid(java.lang.String versionUserUuid) {
111                    _dlFileEntry.setVersionUserUuid(versionUserUuid);
112            }
113    
114            public java.lang.String getVersionUserName() {
115                    return _dlFileEntry.getVersionUserName();
116            }
117    
118            public void setVersionUserName(java.lang.String versionUserName) {
119                    _dlFileEntry.setVersionUserName(versionUserName);
120            }
121    
122            public java.util.Date getCreateDate() {
123                    return _dlFileEntry.getCreateDate();
124            }
125    
126            public void setCreateDate(java.util.Date createDate) {
127                    _dlFileEntry.setCreateDate(createDate);
128            }
129    
130            public java.util.Date getModifiedDate() {
131                    return _dlFileEntry.getModifiedDate();
132            }
133    
134            public void setModifiedDate(java.util.Date modifiedDate) {
135                    _dlFileEntry.setModifiedDate(modifiedDate);
136            }
137    
138            public long getFolderId() {
139                    return _dlFileEntry.getFolderId();
140            }
141    
142            public void setFolderId(long folderId) {
143                    _dlFileEntry.setFolderId(folderId);
144            }
145    
146            public java.lang.String getName() {
147                    return _dlFileEntry.getName();
148            }
149    
150            public void setName(java.lang.String name) {
151                    _dlFileEntry.setName(name);
152            }
153    
154            public java.lang.String getExtension() {
155                    return _dlFileEntry.getExtension();
156            }
157    
158            public void setExtension(java.lang.String extension) {
159                    _dlFileEntry.setExtension(extension);
160            }
161    
162            public java.lang.String getTitle() {
163                    return _dlFileEntry.getTitle();
164            }
165    
166            public void setTitle(java.lang.String title) {
167                    _dlFileEntry.setTitle(title);
168            }
169    
170            public java.lang.String getDescription() {
171                    return _dlFileEntry.getDescription();
172            }
173    
174            public void setDescription(java.lang.String description) {
175                    _dlFileEntry.setDescription(description);
176            }
177    
178            public java.lang.String getExtraSettings() {
179                    return _dlFileEntry.getExtraSettings();
180            }
181    
182            public void setExtraSettings(java.lang.String extraSettings) {
183                    _dlFileEntry.setExtraSettings(extraSettings);
184            }
185    
186            public java.lang.String getVersion() {
187                    return _dlFileEntry.getVersion();
188            }
189    
190            public void setVersion(java.lang.String version) {
191                    _dlFileEntry.setVersion(version);
192            }
193    
194            public long getSize() {
195                    return _dlFileEntry.getSize();
196            }
197    
198            public void setSize(long size) {
199                    _dlFileEntry.setSize(size);
200            }
201    
202            public int getReadCount() {
203                    return _dlFileEntry.getReadCount();
204            }
205    
206            public void setReadCount(int readCount) {
207                    _dlFileEntry.setReadCount(readCount);
208            }
209    
210            public com.liferay.portlet.documentlibrary.model.DLFileEntry toEscapedModel() {
211                    return _dlFileEntry.toEscapedModel();
212            }
213    
214            public boolean isNew() {
215                    return _dlFileEntry.isNew();
216            }
217    
218            public void setNew(boolean n) {
219                    _dlFileEntry.setNew(n);
220            }
221    
222            public boolean isCachedModel() {
223                    return _dlFileEntry.isCachedModel();
224            }
225    
226            public void setCachedModel(boolean cachedModel) {
227                    _dlFileEntry.setCachedModel(cachedModel);
228            }
229    
230            public boolean isEscapedModel() {
231                    return _dlFileEntry.isEscapedModel();
232            }
233    
234            public void setEscapedModel(boolean escapedModel) {
235                    _dlFileEntry.setEscapedModel(escapedModel);
236            }
237    
238            public java.io.Serializable getPrimaryKeyObj() {
239                    return _dlFileEntry.getPrimaryKeyObj();
240            }
241    
242            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
243                    return _dlFileEntry.getExpandoBridge();
244            }
245    
246            public void setExpandoBridgeAttributes(
247                    com.liferay.portal.service.ServiceContext serviceContext) {
248                    _dlFileEntry.setExpandoBridgeAttributes(serviceContext);
249            }
250    
251            public java.lang.Object clone() {
252                    return _dlFileEntry.clone();
253            }
254    
255            public int compareTo(
256                    com.liferay.portlet.documentlibrary.model.DLFileEntry dlFileEntry) {
257                    return _dlFileEntry.compareTo(dlFileEntry);
258            }
259    
260            public int hashCode() {
261                    return _dlFileEntry.hashCode();
262            }
263    
264            public java.lang.String toString() {
265                    return _dlFileEntry.toString();
266            }
267    
268            public java.lang.String toXmlString() {
269                    return _dlFileEntry.toXmlString();
270            }
271    
272            public com.liferay.portal.kernel.util.UnicodeProperties getExtraSettingsProperties() {
273                    return _dlFileEntry.getExtraSettingsProperties();
274            }
275    
276            public com.liferay.portlet.documentlibrary.model.DLFileVersion getFileVersion()
277                    throws com.liferay.portal.kernel.exception.PortalException,
278                            com.liferay.portal.kernel.exception.SystemException {
279                    return _dlFileEntry.getFileVersion();
280            }
281    
282            public com.liferay.portlet.documentlibrary.model.DLFolder getFolder() {
283                    return _dlFileEntry.getFolder();
284            }
285    
286            public java.lang.String getIcon() {
287                    return _dlFileEntry.getIcon();
288            }
289    
290            public com.liferay.portlet.documentlibrary.model.DLFileVersion getLatestFileVersion()
291                    throws com.liferay.portal.kernel.exception.PortalException,
292                            com.liferay.portal.kernel.exception.SystemException {
293                    return _dlFileEntry.getLatestFileVersion();
294            }
295    
296            public com.liferay.portal.model.Lock getLock() {
297                    return _dlFileEntry.getLock();
298            }
299    
300            public java.lang.String getLuceneProperties() {
301                    return _dlFileEntry.getLuceneProperties();
302            }
303    
304            public long getRepositoryId() {
305                    return _dlFileEntry.getRepositoryId();
306            }
307    
308            public boolean hasLock(long userId) {
309                    return _dlFileEntry.hasLock(userId);
310            }
311    
312            public boolean isLocked() {
313                    return _dlFileEntry.isLocked();
314            }
315    
316            public void setExtraSettingsProperties(
317                    com.liferay.portal.kernel.util.UnicodeProperties extraSettingsProperties) {
318                    _dlFileEntry.setExtraSettingsProperties(extraSettingsProperties);
319            }
320    
321            public DLFileEntry getWrappedDLFileEntry() {
322                    return _dlFileEntry;
323            }
324    
325            private DLFileEntry _dlFileEntry;
326    }