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.portal.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link MembershipRequest}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       MembershipRequest
024     * @generated
025     */
026    public class MembershipRequestWrapper implements MembershipRequest {
027            public MembershipRequestWrapper(MembershipRequest membershipRequest) {
028                    _membershipRequest = membershipRequest;
029            }
030    
031            /**
032            * Gets the primary key of this membership request.
033            *
034            * @return the primary key of this membership request
035            */
036            public long getPrimaryKey() {
037                    return _membershipRequest.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this membership request
042            *
043            * @param pk the primary key of this membership request
044            */
045            public void setPrimaryKey(long pk) {
046                    _membershipRequest.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the membership request id of this membership request.
051            *
052            * @return the membership request id of this membership request
053            */
054            public long getMembershipRequestId() {
055                    return _membershipRequest.getMembershipRequestId();
056            }
057    
058            /**
059            * Sets the membership request id of this membership request.
060            *
061            * @param membershipRequestId the membership request id of this membership request
062            */
063            public void setMembershipRequestId(long membershipRequestId) {
064                    _membershipRequest.setMembershipRequestId(membershipRequestId);
065            }
066    
067            /**
068            * Gets the company id of this membership request.
069            *
070            * @return the company id of this membership request
071            */
072            public long getCompanyId() {
073                    return _membershipRequest.getCompanyId();
074            }
075    
076            /**
077            * Sets the company id of this membership request.
078            *
079            * @param companyId the company id of this membership request
080            */
081            public void setCompanyId(long companyId) {
082                    _membershipRequest.setCompanyId(companyId);
083            }
084    
085            /**
086            * Gets the user id of this membership request.
087            *
088            * @return the user id of this membership request
089            */
090            public long getUserId() {
091                    return _membershipRequest.getUserId();
092            }
093    
094            /**
095            * Sets the user id of this membership request.
096            *
097            * @param userId the user id of this membership request
098            */
099            public void setUserId(long userId) {
100                    _membershipRequest.setUserId(userId);
101            }
102    
103            /**
104            * Gets the user uuid of this membership request.
105            *
106            * @return the user uuid of this membership request
107            * @throws SystemException if a system exception occurred
108            */
109            public java.lang.String getUserUuid()
110                    throws com.liferay.portal.kernel.exception.SystemException {
111                    return _membershipRequest.getUserUuid();
112            }
113    
114            /**
115            * Sets the user uuid of this membership request.
116            *
117            * @param userUuid the user uuid of this membership request
118            */
119            public void setUserUuid(java.lang.String userUuid) {
120                    _membershipRequest.setUserUuid(userUuid);
121            }
122    
123            /**
124            * Gets the create date of this membership request.
125            *
126            * @return the create date of this membership request
127            */
128            public java.util.Date getCreateDate() {
129                    return _membershipRequest.getCreateDate();
130            }
131    
132            /**
133            * Sets the create date of this membership request.
134            *
135            * @param createDate the create date of this membership request
136            */
137            public void setCreateDate(java.util.Date createDate) {
138                    _membershipRequest.setCreateDate(createDate);
139            }
140    
141            /**
142            * Gets the group id of this membership request.
143            *
144            * @return the group id of this membership request
145            */
146            public long getGroupId() {
147                    return _membershipRequest.getGroupId();
148            }
149    
150            /**
151            * Sets the group id of this membership request.
152            *
153            * @param groupId the group id of this membership request
154            */
155            public void setGroupId(long groupId) {
156                    _membershipRequest.setGroupId(groupId);
157            }
158    
159            /**
160            * Gets the comments of this membership request.
161            *
162            * @return the comments of this membership request
163            */
164            public java.lang.String getComments() {
165                    return _membershipRequest.getComments();
166            }
167    
168            /**
169            * Sets the comments of this membership request.
170            *
171            * @param comments the comments of this membership request
172            */
173            public void setComments(java.lang.String comments) {
174                    _membershipRequest.setComments(comments);
175            }
176    
177            /**
178            * Gets the reply comments of this membership request.
179            *
180            * @return the reply comments of this membership request
181            */
182            public java.lang.String getReplyComments() {
183                    return _membershipRequest.getReplyComments();
184            }
185    
186            /**
187            * Sets the reply comments of this membership request.
188            *
189            * @param replyComments the reply comments of this membership request
190            */
191            public void setReplyComments(java.lang.String replyComments) {
192                    _membershipRequest.setReplyComments(replyComments);
193            }
194    
195            /**
196            * Gets the reply date of this membership request.
197            *
198            * @return the reply date of this membership request
199            */
200            public java.util.Date getReplyDate() {
201                    return _membershipRequest.getReplyDate();
202            }
203    
204            /**
205            * Sets the reply date of this membership request.
206            *
207            * @param replyDate the reply date of this membership request
208            */
209            public void setReplyDate(java.util.Date replyDate) {
210                    _membershipRequest.setReplyDate(replyDate);
211            }
212    
213            /**
214            * Gets the replier user id of this membership request.
215            *
216            * @return the replier user id of this membership request
217            */
218            public long getReplierUserId() {
219                    return _membershipRequest.getReplierUserId();
220            }
221    
222            /**
223            * Sets the replier user id of this membership request.
224            *
225            * @param replierUserId the replier user id of this membership request
226            */
227            public void setReplierUserId(long replierUserId) {
228                    _membershipRequest.setReplierUserId(replierUserId);
229            }
230    
231            /**
232            * Gets the replier user uuid of this membership request.
233            *
234            * @return the replier user uuid of this membership request
235            * @throws SystemException if a system exception occurred
236            */
237            public java.lang.String getReplierUserUuid()
238                    throws com.liferay.portal.kernel.exception.SystemException {
239                    return _membershipRequest.getReplierUserUuid();
240            }
241    
242            /**
243            * Sets the replier user uuid of this membership request.
244            *
245            * @param replierUserUuid the replier user uuid of this membership request
246            */
247            public void setReplierUserUuid(java.lang.String replierUserUuid) {
248                    _membershipRequest.setReplierUserUuid(replierUserUuid);
249            }
250    
251            /**
252            * Gets the status id of this membership request.
253            *
254            * @return the status id of this membership request
255            */
256            public int getStatusId() {
257                    return _membershipRequest.getStatusId();
258            }
259    
260            /**
261            * Sets the status id of this membership request.
262            *
263            * @param statusId the status id of this membership request
264            */
265            public void setStatusId(int statusId) {
266                    _membershipRequest.setStatusId(statusId);
267            }
268    
269            public boolean isNew() {
270                    return _membershipRequest.isNew();
271            }
272    
273            public void setNew(boolean n) {
274                    _membershipRequest.setNew(n);
275            }
276    
277            public boolean isCachedModel() {
278                    return _membershipRequest.isCachedModel();
279            }
280    
281            public void setCachedModel(boolean cachedModel) {
282                    _membershipRequest.setCachedModel(cachedModel);
283            }
284    
285            public boolean isEscapedModel() {
286                    return _membershipRequest.isEscapedModel();
287            }
288    
289            public void setEscapedModel(boolean escapedModel) {
290                    _membershipRequest.setEscapedModel(escapedModel);
291            }
292    
293            public java.io.Serializable getPrimaryKeyObj() {
294                    return _membershipRequest.getPrimaryKeyObj();
295            }
296    
297            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
298                    return _membershipRequest.getExpandoBridge();
299            }
300    
301            public void setExpandoBridgeAttributes(
302                    com.liferay.portal.service.ServiceContext serviceContext) {
303                    _membershipRequest.setExpandoBridgeAttributes(serviceContext);
304            }
305    
306            public java.lang.Object clone() {
307                    return _membershipRequest.clone();
308            }
309    
310            public int compareTo(
311                    com.liferay.portal.model.MembershipRequest membershipRequest) {
312                    return _membershipRequest.compareTo(membershipRequest);
313            }
314    
315            public int hashCode() {
316                    return _membershipRequest.hashCode();
317            }
318    
319            public com.liferay.portal.model.MembershipRequest toEscapedModel() {
320                    return _membershipRequest.toEscapedModel();
321            }
322    
323            public java.lang.String toString() {
324                    return _membershipRequest.toString();
325            }
326    
327            public java.lang.String toXmlString() {
328                    return _membershipRequest.toXmlString();
329            }
330    
331            public MembershipRequest getWrappedMembershipRequest() {
332                    return _membershipRequest;
333            }
334    
335            private MembershipRequest _membershipRequest;
336    }