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