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