1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.documentlibrary.model;
24  
25  
26  /**
27   * <a href="DLFileEntrySoap.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link DLFileEntry}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       DLFileEntry
40   * @generated
41   */
42  public class DLFileEntryWrapper implements DLFileEntry {
43      public DLFileEntryWrapper(DLFileEntry dlFileEntry) {
44          _dlFileEntry = dlFileEntry;
45      }
46  
47      public long getPrimaryKey() {
48          return _dlFileEntry.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _dlFileEntry.setPrimaryKey(pk);
53      }
54  
55      public java.lang.String getUuid() {
56          return _dlFileEntry.getUuid();
57      }
58  
59      public void setUuid(java.lang.String uuid) {
60          _dlFileEntry.setUuid(uuid);
61      }
62  
63      public long getFileEntryId() {
64          return _dlFileEntry.getFileEntryId();
65      }
66  
67      public void setFileEntryId(long fileEntryId) {
68          _dlFileEntry.setFileEntryId(fileEntryId);
69      }
70  
71      public long getGroupId() {
72          return _dlFileEntry.getGroupId();
73      }
74  
75      public void setGroupId(long groupId) {
76          _dlFileEntry.setGroupId(groupId);
77      }
78  
79      public long getCompanyId() {
80          return _dlFileEntry.getCompanyId();
81      }
82  
83      public void setCompanyId(long companyId) {
84          _dlFileEntry.setCompanyId(companyId);
85      }
86  
87      public long getUserId() {
88          return _dlFileEntry.getUserId();
89      }
90  
91      public void setUserId(long userId) {
92          _dlFileEntry.setUserId(userId);
93      }
94  
95      public java.lang.String getUserUuid()
96          throws com.liferay.portal.SystemException {
97          return _dlFileEntry.getUserUuid();
98      }
99  
100     public void setUserUuid(java.lang.String userUuid) {
101         _dlFileEntry.setUserUuid(userUuid);
102     }
103 
104     public java.lang.String getUserName() {
105         return _dlFileEntry.getUserName();
106     }
107 
108     public void setUserName(java.lang.String userName) {
109         _dlFileEntry.setUserName(userName);
110     }
111 
112     public long getVersionUserId() {
113         return _dlFileEntry.getVersionUserId();
114     }
115 
116     public void setVersionUserId(long versionUserId) {
117         _dlFileEntry.setVersionUserId(versionUserId);
118     }
119 
120     public java.lang.String getVersionUserUuid()
121         throws com.liferay.portal.SystemException {
122         return _dlFileEntry.getVersionUserUuid();
123     }
124 
125     public void setVersionUserUuid(java.lang.String versionUserUuid) {
126         _dlFileEntry.setVersionUserUuid(versionUserUuid);
127     }
128 
129     public java.lang.String getVersionUserName() {
130         return _dlFileEntry.getVersionUserName();
131     }
132 
133     public void setVersionUserName(java.lang.String versionUserName) {
134         _dlFileEntry.setVersionUserName(versionUserName);
135     }
136 
137     public java.util.Date getCreateDate() {
138         return _dlFileEntry.getCreateDate();
139     }
140 
141     public void setCreateDate(java.util.Date createDate) {
142         _dlFileEntry.setCreateDate(createDate);
143     }
144 
145     public java.util.Date getModifiedDate() {
146         return _dlFileEntry.getModifiedDate();
147     }
148 
149     public void setModifiedDate(java.util.Date modifiedDate) {
150         _dlFileEntry.setModifiedDate(modifiedDate);
151     }
152 
153     public long getFolderId() {
154         return _dlFileEntry.getFolderId();
155     }
156 
157     public void setFolderId(long folderId) {
158         _dlFileEntry.setFolderId(folderId);
159     }
160 
161     public java.lang.String getName() {
162         return _dlFileEntry.getName();
163     }
164 
165     public void setName(java.lang.String name) {
166         _dlFileEntry.setName(name);
167     }
168 
169     public java.lang.String getTitle() {
170         return _dlFileEntry.getTitle();
171     }
172 
173     public void setTitle(java.lang.String title) {
174         _dlFileEntry.setTitle(title);
175     }
176 
177     public java.lang.String getDescription() {
178         return _dlFileEntry.getDescription();
179     }
180 
181     public void setDescription(java.lang.String description) {
182         _dlFileEntry.setDescription(description);
183     }
184 
185     public double getVersion() {
186         return _dlFileEntry.getVersion();
187     }
188 
189     public void setVersion(double version) {
190         _dlFileEntry.setVersion(version);
191     }
192 
193     public int getSize() {
194         return _dlFileEntry.getSize();
195     }
196 
197     public void setSize(int 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 java.lang.String getExtraSettings() {
210         return _dlFileEntry.getExtraSettings();
211     }
212 
213     public void setExtraSettings(java.lang.String extraSettings) {
214         _dlFileEntry.setExtraSettings(extraSettings);
215     }
216 
217     public com.liferay.portlet.documentlibrary.model.DLFileEntry toEscapedModel() {
218         return _dlFileEntry.toEscapedModel();
219     }
220 
221     public boolean isNew() {
222         return _dlFileEntry.isNew();
223     }
224 
225     public boolean setNew(boolean n) {
226         return _dlFileEntry.setNew(n);
227     }
228 
229     public boolean isCachedModel() {
230         return _dlFileEntry.isCachedModel();
231     }
232 
233     public void setCachedModel(boolean cachedModel) {
234         _dlFileEntry.setCachedModel(cachedModel);
235     }
236 
237     public boolean isEscapedModel() {
238         return _dlFileEntry.isEscapedModel();
239     }
240 
241     public void setEscapedModel(boolean escapedModel) {
242         _dlFileEntry.setEscapedModel(escapedModel);
243     }
244 
245     public java.io.Serializable getPrimaryKeyObj() {
246         return _dlFileEntry.getPrimaryKeyObj();
247     }
248 
249     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
250         return _dlFileEntry.getExpandoBridge();
251     }
252 
253     public void setExpandoBridgeAttributes(
254         com.liferay.portal.service.ServiceContext serviceContext) {
255         _dlFileEntry.setExpandoBridgeAttributes(serviceContext);
256     }
257 
258     public java.lang.Object clone() {
259         return _dlFileEntry.clone();
260     }
261 
262     public int compareTo(
263         com.liferay.portlet.documentlibrary.model.DLFileEntry dlFileEntry) {
264         return _dlFileEntry.compareTo(dlFileEntry);
265     }
266 
267     public int hashCode() {
268         return _dlFileEntry.hashCode();
269     }
270 
271     public java.lang.String toString() {
272         return _dlFileEntry.toString();
273     }
274 
275     public java.lang.String toXmlString() {
276         return _dlFileEntry.toXmlString();
277     }
278 
279     public java.util.Properties getExtraSettingsProperties() {
280         return _dlFileEntry.getExtraSettingsProperties();
281     }
282 
283     public com.liferay.portlet.documentlibrary.model.DLFolder getFolder() {
284         return _dlFileEntry.getFolder();
285     }
286 
287     public com.liferay.portal.model.Lock getLock() {
288         return _dlFileEntry.getLock();
289     }
290 
291     public java.lang.String getLuceneProperties() {
292         return _dlFileEntry.getLuceneProperties();
293     }
294 
295     public java.lang.String getTitleWithExtension() {
296         return _dlFileEntry.getTitleWithExtension();
297     }
298 
299     public boolean hasLock(long userId) {
300         return _dlFileEntry.hasLock(userId);
301     }
302 
303     public boolean isLocked() {
304         return _dlFileEntry.isLocked();
305     }
306 
307     public void setExtraSettingsProperties(
308         java.util.Properties extraSettingsProperties) {
309         _dlFileEntry.setExtraSettingsProperties(extraSettingsProperties);
310     }
311 
312     public DLFileEntry getWrappedDLFileEntry() {
313         return _dlFileEntry;
314     }
315 
316     private DLFileEntry _dlFileEntry;
317 }