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