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="DLFolderSoap.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 DLFolder}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       DLFolder
31   * @generated
32   */
33  public class DLFolderWrapper implements DLFolder {
34      public DLFolderWrapper(DLFolder dlFolder) {
35          _dlFolder = dlFolder;
36      }
37  
38      public long getPrimaryKey() {
39          return _dlFolder.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _dlFolder.setPrimaryKey(pk);
44      }
45  
46      public java.lang.String getUuid() {
47          return _dlFolder.getUuid();
48      }
49  
50      public void setUuid(java.lang.String uuid) {
51          _dlFolder.setUuid(uuid);
52      }
53  
54      public long getFolderId() {
55          return _dlFolder.getFolderId();
56      }
57  
58      public void setFolderId(long folderId) {
59          _dlFolder.setFolderId(folderId);
60      }
61  
62      public long getGroupId() {
63          return _dlFolder.getGroupId();
64      }
65  
66      public void setGroupId(long groupId) {
67          _dlFolder.setGroupId(groupId);
68      }
69  
70      public long getCompanyId() {
71          return _dlFolder.getCompanyId();
72      }
73  
74      public void setCompanyId(long companyId) {
75          _dlFolder.setCompanyId(companyId);
76      }
77  
78      public long getUserId() {
79          return _dlFolder.getUserId();
80      }
81  
82      public void setUserId(long userId) {
83          _dlFolder.setUserId(userId);
84      }
85  
86      public java.lang.String getUserUuid()
87          throws com.liferay.portal.SystemException {
88          return _dlFolder.getUserUuid();
89      }
90  
91      public void setUserUuid(java.lang.String userUuid) {
92          _dlFolder.setUserUuid(userUuid);
93      }
94  
95      public java.lang.String getUserName() {
96          return _dlFolder.getUserName();
97      }
98  
99      public void setUserName(java.lang.String userName) {
100         _dlFolder.setUserName(userName);
101     }
102 
103     public java.util.Date getCreateDate() {
104         return _dlFolder.getCreateDate();
105     }
106 
107     public void setCreateDate(java.util.Date createDate) {
108         _dlFolder.setCreateDate(createDate);
109     }
110 
111     public java.util.Date getModifiedDate() {
112         return _dlFolder.getModifiedDate();
113     }
114 
115     public void setModifiedDate(java.util.Date modifiedDate) {
116         _dlFolder.setModifiedDate(modifiedDate);
117     }
118 
119     public long getParentFolderId() {
120         return _dlFolder.getParentFolderId();
121     }
122 
123     public void setParentFolderId(long parentFolderId) {
124         _dlFolder.setParentFolderId(parentFolderId);
125     }
126 
127     public java.lang.String getName() {
128         return _dlFolder.getName();
129     }
130 
131     public void setName(java.lang.String name) {
132         _dlFolder.setName(name);
133     }
134 
135     public java.lang.String getDescription() {
136         return _dlFolder.getDescription();
137     }
138 
139     public void setDescription(java.lang.String description) {
140         _dlFolder.setDescription(description);
141     }
142 
143     public java.util.Date getLastPostDate() {
144         return _dlFolder.getLastPostDate();
145     }
146 
147     public void setLastPostDate(java.util.Date lastPostDate) {
148         _dlFolder.setLastPostDate(lastPostDate);
149     }
150 
151     public boolean isNew() {
152         return _dlFolder.isNew();
153     }
154 
155     public boolean setNew(boolean n) {
156         return _dlFolder.setNew(n);
157     }
158 
159     public boolean isCachedModel() {
160         return _dlFolder.isCachedModel();
161     }
162 
163     public void setCachedModel(boolean cachedModel) {
164         _dlFolder.setCachedModel(cachedModel);
165     }
166 
167     public boolean isEscapedModel() {
168         return _dlFolder.isEscapedModel();
169     }
170 
171     public void setEscapedModel(boolean escapedModel) {
172         _dlFolder.setEscapedModel(escapedModel);
173     }
174 
175     public java.io.Serializable getPrimaryKeyObj() {
176         return _dlFolder.getPrimaryKeyObj();
177     }
178 
179     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
180         return _dlFolder.getExpandoBridge();
181     }
182 
183     public void setExpandoBridgeAttributes(
184         com.liferay.portal.service.ServiceContext serviceContext) {
185         _dlFolder.setExpandoBridgeAttributes(serviceContext);
186     }
187 
188     public java.lang.Object clone() {
189         return _dlFolder.clone();
190     }
191 
192     public int compareTo(
193         com.liferay.portlet.documentlibrary.model.DLFolder dlFolder) {
194         return _dlFolder.compareTo(dlFolder);
195     }
196 
197     public int hashCode() {
198         return _dlFolder.hashCode();
199     }
200 
201     public com.liferay.portlet.documentlibrary.model.DLFolder toEscapedModel() {
202         return _dlFolder.toEscapedModel();
203     }
204 
205     public java.lang.String toString() {
206         return _dlFolder.toString();
207     }
208 
209     public java.lang.String toXmlString() {
210         return _dlFolder.toXmlString();
211     }
212 
213     public java.lang.String getPath()
214         throws com.liferay.portal.PortalException,
215             com.liferay.portal.SystemException {
216         return _dlFolder.getPath();
217     }
218 
219     public java.lang.String[] getPathArray()
220         throws com.liferay.portal.PortalException,
221             com.liferay.portal.SystemException {
222         return _dlFolder.getPathArray();
223     }
224 
225     public boolean isRoot() {
226         return _dlFolder.isRoot();
227     }
228 
229     public DLFolder getWrappedDLFolder() {
230         return _dlFolder;
231     }
232 
233     private DLFolder _dlFolder;
234 }