001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.documentlibrary.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link DLFileShortcut}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       DLFileShortcut
024     * @generated
025     */
026    public class DLFileShortcutWrapper implements DLFileShortcut {
027            public DLFileShortcutWrapper(DLFileShortcut dlFileShortcut) {
028                    _dlFileShortcut = dlFileShortcut;
029            }
030    
031            /**
032            * Gets the primary key of this d l file shortcut.
033            *
034            * @return the primary key of this d l file shortcut
035            */
036            public long getPrimaryKey() {
037                    return _dlFileShortcut.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this d l file shortcut
042            *
043            * @param pk the primary key of this d l file shortcut
044            */
045            public void setPrimaryKey(long pk) {
046                    _dlFileShortcut.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the uuid of this d l file shortcut.
051            *
052            * @return the uuid of this d l file shortcut
053            */
054            public java.lang.String getUuid() {
055                    return _dlFileShortcut.getUuid();
056            }
057    
058            /**
059            * Sets the uuid of this d l file shortcut.
060            *
061            * @param uuid the uuid of this d l file shortcut
062            */
063            public void setUuid(java.lang.String uuid) {
064                    _dlFileShortcut.setUuid(uuid);
065            }
066    
067            /**
068            * Gets the file shortcut id of this d l file shortcut.
069            *
070            * @return the file shortcut id of this d l file shortcut
071            */
072            public long getFileShortcutId() {
073                    return _dlFileShortcut.getFileShortcutId();
074            }
075    
076            /**
077            * Sets the file shortcut id of this d l file shortcut.
078            *
079            * @param fileShortcutId the file shortcut id of this d l file shortcut
080            */
081            public void setFileShortcutId(long fileShortcutId) {
082                    _dlFileShortcut.setFileShortcutId(fileShortcutId);
083            }
084    
085            /**
086            * Gets the group id of this d l file shortcut.
087            *
088            * @return the group id of this d l file shortcut
089            */
090            public long getGroupId() {
091                    return _dlFileShortcut.getGroupId();
092            }
093    
094            /**
095            * Sets the group id of this d l file shortcut.
096            *
097            * @param groupId the group id of this d l file shortcut
098            */
099            public void setGroupId(long groupId) {
100                    _dlFileShortcut.setGroupId(groupId);
101            }
102    
103            /**
104            * Gets the company id of this d l file shortcut.
105            *
106            * @return the company id of this d l file shortcut
107            */
108            public long getCompanyId() {
109                    return _dlFileShortcut.getCompanyId();
110            }
111    
112            /**
113            * Sets the company id of this d l file shortcut.
114            *
115            * @param companyId the company id of this d l file shortcut
116            */
117            public void setCompanyId(long companyId) {
118                    _dlFileShortcut.setCompanyId(companyId);
119            }
120    
121            /**
122            * Gets the user id of this d l file shortcut.
123            *
124            * @return the user id of this d l file shortcut
125            */
126            public long getUserId() {
127                    return _dlFileShortcut.getUserId();
128            }
129    
130            /**
131            * Sets the user id of this d l file shortcut.
132            *
133            * @param userId the user id of this d l file shortcut
134            */
135            public void setUserId(long userId) {
136                    _dlFileShortcut.setUserId(userId);
137            }
138    
139            /**
140            * Gets the user uuid of this d l file shortcut.
141            *
142            * @return the user uuid of this d l file shortcut
143            * @throws SystemException if a system exception occurred
144            */
145            public java.lang.String getUserUuid()
146                    throws com.liferay.portal.kernel.exception.SystemException {
147                    return _dlFileShortcut.getUserUuid();
148            }
149    
150            /**
151            * Sets the user uuid of this d l file shortcut.
152            *
153            * @param userUuid the user uuid of this d l file shortcut
154            */
155            public void setUserUuid(java.lang.String userUuid) {
156                    _dlFileShortcut.setUserUuid(userUuid);
157            }
158    
159            /**
160            * Gets the user name of this d l file shortcut.
161            *
162            * @return the user name of this d l file shortcut
163            */
164            public java.lang.String getUserName() {
165                    return _dlFileShortcut.getUserName();
166            }
167    
168            /**
169            * Sets the user name of this d l file shortcut.
170            *
171            * @param userName the user name of this d l file shortcut
172            */
173            public void setUserName(java.lang.String userName) {
174                    _dlFileShortcut.setUserName(userName);
175            }
176    
177            /**
178            * Gets the create date of this d l file shortcut.
179            *
180            * @return the create date of this d l file shortcut
181            */
182            public java.util.Date getCreateDate() {
183                    return _dlFileShortcut.getCreateDate();
184            }
185    
186            /**
187            * Sets the create date of this d l file shortcut.
188            *
189            * @param createDate the create date of this d l file shortcut
190            */
191            public void setCreateDate(java.util.Date createDate) {
192                    _dlFileShortcut.setCreateDate(createDate);
193            }
194    
195            /**
196            * Gets the modified date of this d l file shortcut.
197            *
198            * @return the modified date of this d l file shortcut
199            */
200            public java.util.Date getModifiedDate() {
201                    return _dlFileShortcut.getModifiedDate();
202            }
203    
204            /**
205            * Sets the modified date of this d l file shortcut.
206            *
207            * @param modifiedDate the modified date of this d l file shortcut
208            */
209            public void setModifiedDate(java.util.Date modifiedDate) {
210                    _dlFileShortcut.setModifiedDate(modifiedDate);
211            }
212    
213            /**
214            * Gets the folder id of this d l file shortcut.
215            *
216            * @return the folder id of this d l file shortcut
217            */
218            public long getFolderId() {
219                    return _dlFileShortcut.getFolderId();
220            }
221    
222            /**
223            * Sets the folder id of this d l file shortcut.
224            *
225            * @param folderId the folder id of this d l file shortcut
226            */
227            public void setFolderId(long folderId) {
228                    _dlFileShortcut.setFolderId(folderId);
229            }
230    
231            /**
232            * Gets the to folder id of this d l file shortcut.
233            *
234            * @return the to folder id of this d l file shortcut
235            */
236            public long getToFolderId() {
237                    return _dlFileShortcut.getToFolderId();
238            }
239    
240            /**
241            * Sets the to folder id of this d l file shortcut.
242            *
243            * @param toFolderId the to folder id of this d l file shortcut
244            */
245            public void setToFolderId(long toFolderId) {
246                    _dlFileShortcut.setToFolderId(toFolderId);
247            }
248    
249            /**
250            * Gets the to name of this d l file shortcut.
251            *
252            * @return the to name of this d l file shortcut
253            */
254            public java.lang.String getToName() {
255                    return _dlFileShortcut.getToName();
256            }
257    
258            /**
259            * Sets the to name of this d l file shortcut.
260            *
261            * @param toName the to name of this d l file shortcut
262            */
263            public void setToName(java.lang.String toName) {
264                    _dlFileShortcut.setToName(toName);
265            }
266    
267            /**
268            * Gets the status of this d l file shortcut.
269            *
270            * @return the status of this d l file shortcut
271            */
272            public int getStatus() {
273                    return _dlFileShortcut.getStatus();
274            }
275    
276            /**
277            * Sets the status of this d l file shortcut.
278            *
279            * @param status the status of this d l file shortcut
280            */
281            public void setStatus(int status) {
282                    _dlFileShortcut.setStatus(status);
283            }
284    
285            /**
286            * Gets the status by user id of this d l file shortcut.
287            *
288            * @return the status by user id of this d l file shortcut
289            */
290            public long getStatusByUserId() {
291                    return _dlFileShortcut.getStatusByUserId();
292            }
293    
294            /**
295            * Sets the status by user id of this d l file shortcut.
296            *
297            * @param statusByUserId the status by user id of this d l file shortcut
298            */
299            public void setStatusByUserId(long statusByUserId) {
300                    _dlFileShortcut.setStatusByUserId(statusByUserId);
301            }
302    
303            /**
304            * Gets the status by user uuid of this d l file shortcut.
305            *
306            * @return the status by user uuid of this d l file shortcut
307            * @throws SystemException if a system exception occurred
308            */
309            public java.lang.String getStatusByUserUuid()
310                    throws com.liferay.portal.kernel.exception.SystemException {
311                    return _dlFileShortcut.getStatusByUserUuid();
312            }
313    
314            /**
315            * Sets the status by user uuid of this d l file shortcut.
316            *
317            * @param statusByUserUuid the status by user uuid of this d l file shortcut
318            */
319            public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
320                    _dlFileShortcut.setStatusByUserUuid(statusByUserUuid);
321            }
322    
323            /**
324            * Gets the status by user name of this d l file shortcut.
325            *
326            * @return the status by user name of this d l file shortcut
327            */
328            public java.lang.String getStatusByUserName() {
329                    return _dlFileShortcut.getStatusByUserName();
330            }
331    
332            /**
333            * Sets the status by user name of this d l file shortcut.
334            *
335            * @param statusByUserName the status by user name of this d l file shortcut
336            */
337            public void setStatusByUserName(java.lang.String statusByUserName) {
338                    _dlFileShortcut.setStatusByUserName(statusByUserName);
339            }
340    
341            /**
342            * Gets the status date of this d l file shortcut.
343            *
344            * @return the status date of this d l file shortcut
345            */
346            public java.util.Date getStatusDate() {
347                    return _dlFileShortcut.getStatusDate();
348            }
349    
350            /**
351            * Sets the status date of this d l file shortcut.
352            *
353            * @param statusDate the status date of this d l file shortcut
354            */
355            public void setStatusDate(java.util.Date statusDate) {
356                    _dlFileShortcut.setStatusDate(statusDate);
357            }
358    
359            /**
360            * @deprecated {@link #isApproved}
361            */
362            public boolean getApproved() {
363                    return _dlFileShortcut.getApproved();
364            }
365    
366            /**
367            * Determines whether this d l file shortcut is approved.
368            *
369            * @return true if this d l file shortcut is approved; false otherwise
370            */
371            public boolean isApproved() {
372                    return _dlFileShortcut.isApproved();
373            }
374    
375            /**
376            * Determines whether this d l file shortcut is a draft.
377            *
378            * @return true if this d l file shortcut is a draft; false otherwise
379            */
380            public boolean isDraft() {
381                    return _dlFileShortcut.isDraft();
382            }
383    
384            /**
385            * Determines whether this d l file shortcut is expired.
386            *
387            * @return true if this d l file shortcut is expired; false otherwise
388            */
389            public boolean isExpired() {
390                    return _dlFileShortcut.isExpired();
391            }
392    
393            /**
394            * Determines whether this d l file shortcut is pending.
395            *
396            * @return true if this d l file shortcut is pending; false otherwise
397            */
398            public boolean isPending() {
399                    return _dlFileShortcut.isPending();
400            }
401    
402            public boolean isNew() {
403                    return _dlFileShortcut.isNew();
404            }
405    
406            public void setNew(boolean n) {
407                    _dlFileShortcut.setNew(n);
408            }
409    
410            public boolean isCachedModel() {
411                    return _dlFileShortcut.isCachedModel();
412            }
413    
414            public void setCachedModel(boolean cachedModel) {
415                    _dlFileShortcut.setCachedModel(cachedModel);
416            }
417    
418            public boolean isEscapedModel() {
419                    return _dlFileShortcut.isEscapedModel();
420            }
421    
422            public void setEscapedModel(boolean escapedModel) {
423                    _dlFileShortcut.setEscapedModel(escapedModel);
424            }
425    
426            public java.io.Serializable getPrimaryKeyObj() {
427                    return _dlFileShortcut.getPrimaryKeyObj();
428            }
429    
430            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
431                    return _dlFileShortcut.getExpandoBridge();
432            }
433    
434            public void setExpandoBridgeAttributes(
435                    com.liferay.portal.service.ServiceContext serviceContext) {
436                    _dlFileShortcut.setExpandoBridgeAttributes(serviceContext);
437            }
438    
439            public java.lang.Object clone() {
440                    return _dlFileShortcut.clone();
441            }
442    
443            public int compareTo(
444                    com.liferay.portlet.documentlibrary.model.DLFileShortcut dlFileShortcut) {
445                    return _dlFileShortcut.compareTo(dlFileShortcut);
446            }
447    
448            public int hashCode() {
449                    return _dlFileShortcut.hashCode();
450            }
451    
452            public com.liferay.portlet.documentlibrary.model.DLFileShortcut toEscapedModel() {
453                    return _dlFileShortcut.toEscapedModel();
454            }
455    
456            public java.lang.String toString() {
457                    return _dlFileShortcut.toString();
458            }
459    
460            public java.lang.String toXmlString() {
461                    return _dlFileShortcut.toXmlString();
462            }
463    
464            public com.liferay.portlet.documentlibrary.model.DLFolder getFolder() {
465                    return _dlFileShortcut.getFolder();
466            }
467    
468            public java.lang.String getToTitle() {
469                    return _dlFileShortcut.getToTitle();
470            }
471    
472            public DLFileShortcut getWrappedDLFileShortcut() {
473                    return _dlFileShortcut;
474            }
475    
476            private DLFileShortcut _dlFileShortcut;
477    }