1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.documentlibrary.model;
16  
17  /**
18   * <a href="DLFileEntrySoap.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link DLFileEntry}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       DLFileEntry
31   * @generated
32   */
33  public class DLFileEntryWrapper implements DLFileEntry {
34      public DLFileEntryWrapper(DLFileEntry dlFileEntry) {
35          _dlFileEntry = dlFileEntry;
36      }
37  
38      public long getPrimaryKey() {
39          return _dlFileEntry.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _dlFileEntry.setPrimaryKey(pk);
44      }
45  
46      public java.lang.String getUuid() {
47          return _dlFileEntry.getUuid();
48      }
49  
50      public void setUuid(java.lang.String uuid) {
51          _dlFileEntry.setUuid(uuid);
52      }
53  
54      public long getFileEntryId() {
55          return _dlFileEntry.getFileEntryId();
56      }
57  
58      public void setFileEntryId(long fileEntryId) {
59          _dlFileEntry.setFileEntryId(fileEntryId);
60      }
61  
62      public long getGroupId() {
63          return _dlFileEntry.getGroupId();
64      }
65  
66      public void setGroupId(long groupId) {
67          _dlFileEntry.setGroupId(groupId);
68      }
69  
70      public long getCompanyId() {
71          return _dlFileEntry.getCompanyId();
72      }
73  
74      public void setCompanyId(long companyId) {
75          _dlFileEntry.setCompanyId(companyId);
76      }
77  
78      public long getUserId() {
79          return _dlFileEntry.getUserId();
80      }
81  
82      public void setUserId(long userId) {
83          _dlFileEntry.setUserId(userId);
84      }
85  
86      public java.lang.String getUserUuid()
87          throws com.liferay.portal.SystemException {
88          return _dlFileEntry.getUserUuid();
89      }
90  
91      public void setUserUuid(java.lang.String userUuid) {
92          _dlFileEntry.setUserUuid(userUuid);
93      }
94  
95      public java.lang.String getUserName() {
96          return _dlFileEntry.getUserName();
97      }
98  
99      public void setUserName(java.lang.String userName) {
100         _dlFileEntry.setUserName(userName);
101     }
102 
103     public long getVersionUserId() {
104         return _dlFileEntry.getVersionUserId();
105     }
106 
107     public void setVersionUserId(long versionUserId) {
108         _dlFileEntry.setVersionUserId(versionUserId);
109     }
110 
111     public java.lang.String getVersionUserUuid()
112         throws com.liferay.portal.SystemException {
113         return _dlFileEntry.getVersionUserUuid();
114     }
115 
116     public void setVersionUserUuid(java.lang.String versionUserUuid) {
117         _dlFileEntry.setVersionUserUuid(versionUserUuid);
118     }
119 
120     public java.lang.String getVersionUserName() {
121         return _dlFileEntry.getVersionUserName();
122     }
123 
124     public void setVersionUserName(java.lang.String versionUserName) {
125         _dlFileEntry.setVersionUserName(versionUserName);
126     }
127 
128     public java.util.Date getCreateDate() {
129         return _dlFileEntry.getCreateDate();
130     }
131 
132     public void setCreateDate(java.util.Date createDate) {
133         _dlFileEntry.setCreateDate(createDate);
134     }
135 
136     public java.util.Date getModifiedDate() {
137         return _dlFileEntry.getModifiedDate();
138     }
139 
140     public void setModifiedDate(java.util.Date modifiedDate) {
141         _dlFileEntry.setModifiedDate(modifiedDate);
142     }
143 
144     public long getFolderId() {
145         return _dlFileEntry.getFolderId();
146     }
147 
148     public void setFolderId(long folderId) {
149         _dlFileEntry.setFolderId(folderId);
150     }
151 
152     public java.lang.String getName() {
153         return _dlFileEntry.getName();
154     }
155 
156     public void setName(java.lang.String name) {
157         _dlFileEntry.setName(name);
158     }
159 
160     public java.lang.String getTitle() {
161         return _dlFileEntry.getTitle();
162     }
163 
164     public void setTitle(java.lang.String title) {
165         _dlFileEntry.setTitle(title);
166     }
167 
168     public java.lang.String getDescription() {
169         return _dlFileEntry.getDescription();
170     }
171 
172     public void setDescription(java.lang.String description) {
173         _dlFileEntry.setDescription(description);
174     }
175 
176     public double getVersion() {
177         return _dlFileEntry.getVersion();
178     }
179 
180     public void setVersion(double version) {
181         _dlFileEntry.setVersion(version);
182     }
183 
184     public int getSize() {
185         return _dlFileEntry.getSize();
186     }
187 
188     public void setSize(int size) {
189         _dlFileEntry.setSize(size);
190     }
191 
192     public int getReadCount() {
193         return _dlFileEntry.getReadCount();
194     }
195 
196     public void setReadCount(int readCount) {
197         _dlFileEntry.setReadCount(readCount);
198     }
199 
200     public java.lang.String getExtraSettings() {
201         return _dlFileEntry.getExtraSettings();
202     }
203 
204     public void setExtraSettings(java.lang.String extraSettings) {
205         _dlFileEntry.setExtraSettings(extraSettings);
206     }
207 
208     public boolean isNew() {
209         return _dlFileEntry.isNew();
210     }
211 
212     public boolean setNew(boolean n) {
213         return _dlFileEntry.setNew(n);
214     }
215 
216     public boolean isCachedModel() {
217         return _dlFileEntry.isCachedModel();
218     }
219 
220     public void setCachedModel(boolean cachedModel) {
221         _dlFileEntry.setCachedModel(cachedModel);
222     }
223 
224     public boolean isEscapedModel() {
225         return _dlFileEntry.isEscapedModel();
226     }
227 
228     public void setEscapedModel(boolean escapedModel) {
229         _dlFileEntry.setEscapedModel(escapedModel);
230     }
231 
232     public java.io.Serializable getPrimaryKeyObj() {
233         return _dlFileEntry.getPrimaryKeyObj();
234     }
235 
236     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
237         return _dlFileEntry.getExpandoBridge();
238     }
239 
240     public void setExpandoBridgeAttributes(
241         com.liferay.portal.service.ServiceContext serviceContext) {
242         _dlFileEntry.setExpandoBridgeAttributes(serviceContext);
243     }
244 
245     public java.lang.Object clone() {
246         return _dlFileEntry.clone();
247     }
248 
249     public int compareTo(
250         com.liferay.portlet.documentlibrary.model.DLFileEntry dlFileEntry) {
251         return _dlFileEntry.compareTo(dlFileEntry);
252     }
253 
254     public int hashCode() {
255         return _dlFileEntry.hashCode();
256     }
257 
258     public com.liferay.portlet.documentlibrary.model.DLFileEntry toEscapedModel() {
259         return _dlFileEntry.toEscapedModel();
260     }
261 
262     public java.lang.String toString() {
263         return _dlFileEntry.toString();
264     }
265 
266     public java.lang.String toXmlString() {
267         return _dlFileEntry.toXmlString();
268     }
269 
270     public com.liferay.portal.kernel.util.UnicodeProperties getExtraSettingsProperties() {
271         return _dlFileEntry.getExtraSettingsProperties();
272     }
273 
274     public com.liferay.portlet.documentlibrary.model.DLFolder getFolder() {
275         return _dlFileEntry.getFolder();
276     }
277 
278     public com.liferay.portal.model.Lock getLock() {
279         return _dlFileEntry.getLock();
280     }
281 
282     public java.lang.String getLuceneProperties() {
283         return _dlFileEntry.getLuceneProperties();
284     }
285 
286     public java.lang.String getTitleWithExtension() {
287         return _dlFileEntry.getTitleWithExtension();
288     }
289 
290     public boolean hasLock(long userId) {
291         return _dlFileEntry.hasLock(userId);
292     }
293 
294     public boolean isLocked() {
295         return _dlFileEntry.isLocked();
296     }
297 
298     public void setExtraSettingsProperties(
299         com.liferay.portal.kernel.util.UnicodeProperties extraSettingsProperties) {
300         _dlFileEntry.setExtraSettingsProperties(extraSettingsProperties);
301     }
302 
303     public DLFileEntry getWrappedDLFileEntry() {
304         return _dlFileEntry;
305     }
306 
307     private DLFileEntry _dlFileEntry;
308 }