1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.social.model;
16  
17  
18  /**
19   * <a href="SocialRequestSoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link SocialRequest}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       SocialRequest
32   * @generated
33   */
34  public class SocialRequestWrapper implements SocialRequest {
35      public SocialRequestWrapper(SocialRequest socialRequest) {
36          _socialRequest = socialRequest;
37      }
38  
39      public long getPrimaryKey() {
40          return _socialRequest.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _socialRequest.setPrimaryKey(pk);
45      }
46  
47      public java.lang.String getUuid() {
48          return _socialRequest.getUuid();
49      }
50  
51      public void setUuid(java.lang.String uuid) {
52          _socialRequest.setUuid(uuid);
53      }
54  
55      public long getRequestId() {
56          return _socialRequest.getRequestId();
57      }
58  
59      public void setRequestId(long requestId) {
60          _socialRequest.setRequestId(requestId);
61      }
62  
63      public long getGroupId() {
64          return _socialRequest.getGroupId();
65      }
66  
67      public void setGroupId(long groupId) {
68          _socialRequest.setGroupId(groupId);
69      }
70  
71      public long getCompanyId() {
72          return _socialRequest.getCompanyId();
73      }
74  
75      public void setCompanyId(long companyId) {
76          _socialRequest.setCompanyId(companyId);
77      }
78  
79      public long getUserId() {
80          return _socialRequest.getUserId();
81      }
82  
83      public void setUserId(long userId) {
84          _socialRequest.setUserId(userId);
85      }
86  
87      public java.lang.String getUserUuid()
88          throws com.liferay.portal.kernel.exception.SystemException {
89          return _socialRequest.getUserUuid();
90      }
91  
92      public void setUserUuid(java.lang.String userUuid) {
93          _socialRequest.setUserUuid(userUuid);
94      }
95  
96      public long getCreateDate() {
97          return _socialRequest.getCreateDate();
98      }
99  
100     public void setCreateDate(long createDate) {
101         _socialRequest.setCreateDate(createDate);
102     }
103 
104     public long getModifiedDate() {
105         return _socialRequest.getModifiedDate();
106     }
107 
108     public void setModifiedDate(long modifiedDate) {
109         _socialRequest.setModifiedDate(modifiedDate);
110     }
111 
112     public java.lang.String getClassName() {
113         return _socialRequest.getClassName();
114     }
115 
116     public long getClassNameId() {
117         return _socialRequest.getClassNameId();
118     }
119 
120     public void setClassNameId(long classNameId) {
121         _socialRequest.setClassNameId(classNameId);
122     }
123 
124     public long getClassPK() {
125         return _socialRequest.getClassPK();
126     }
127 
128     public void setClassPK(long classPK) {
129         _socialRequest.setClassPK(classPK);
130     }
131 
132     public int getType() {
133         return _socialRequest.getType();
134     }
135 
136     public void setType(int type) {
137         _socialRequest.setType(type);
138     }
139 
140     public java.lang.String getExtraData() {
141         return _socialRequest.getExtraData();
142     }
143 
144     public void setExtraData(java.lang.String extraData) {
145         _socialRequest.setExtraData(extraData);
146     }
147 
148     public long getReceiverUserId() {
149         return _socialRequest.getReceiverUserId();
150     }
151 
152     public void setReceiverUserId(long receiverUserId) {
153         _socialRequest.setReceiverUserId(receiverUserId);
154     }
155 
156     public java.lang.String getReceiverUserUuid()
157         throws com.liferay.portal.kernel.exception.SystemException {
158         return _socialRequest.getReceiverUserUuid();
159     }
160 
161     public void setReceiverUserUuid(java.lang.String receiverUserUuid) {
162         _socialRequest.setReceiverUserUuid(receiverUserUuid);
163     }
164 
165     public int getStatus() {
166         return _socialRequest.getStatus();
167     }
168 
169     public void setStatus(int status) {
170         _socialRequest.setStatus(status);
171     }
172 
173     public com.liferay.portlet.social.model.SocialRequest toEscapedModel() {
174         return _socialRequest.toEscapedModel();
175     }
176 
177     public boolean isNew() {
178         return _socialRequest.isNew();
179     }
180 
181     public boolean setNew(boolean n) {
182         return _socialRequest.setNew(n);
183     }
184 
185     public boolean isCachedModel() {
186         return _socialRequest.isCachedModel();
187     }
188 
189     public void setCachedModel(boolean cachedModel) {
190         _socialRequest.setCachedModel(cachedModel);
191     }
192 
193     public boolean isEscapedModel() {
194         return _socialRequest.isEscapedModel();
195     }
196 
197     public void setEscapedModel(boolean escapedModel) {
198         _socialRequest.setEscapedModel(escapedModel);
199     }
200 
201     public java.io.Serializable getPrimaryKeyObj() {
202         return _socialRequest.getPrimaryKeyObj();
203     }
204 
205     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
206         return _socialRequest.getExpandoBridge();
207     }
208 
209     public void setExpandoBridgeAttributes(
210         com.liferay.portal.service.ServiceContext serviceContext) {
211         _socialRequest.setExpandoBridgeAttributes(serviceContext);
212     }
213 
214     public java.lang.Object clone() {
215         return _socialRequest.clone();
216     }
217 
218     public int compareTo(
219         com.liferay.portlet.social.model.SocialRequest socialRequest) {
220         return _socialRequest.compareTo(socialRequest);
221     }
222 
223     public int hashCode() {
224         return _socialRequest.hashCode();
225     }
226 
227     public java.lang.String toString() {
228         return _socialRequest.toString();
229     }
230 
231     public java.lang.String toXmlString() {
232         return _socialRequest.toXmlString();
233     }
234 
235     public SocialRequest getWrappedSocialRequest() {
236         return _socialRequest;
237     }
238 
239     private SocialRequest _socialRequest;
240 }