001
014
015 package com.liferay.portlet.social.model;
016
017
026 public class SocialActivityWrapper implements SocialActivity {
027 public SocialActivityWrapper(SocialActivity socialActivity) {
028 _socialActivity = socialActivity;
029 }
030
031
036 public long getPrimaryKey() {
037 return _socialActivity.getPrimaryKey();
038 }
039
040
045 public void setPrimaryKey(long pk) {
046 _socialActivity.setPrimaryKey(pk);
047 }
048
049
054 public long getActivityId() {
055 return _socialActivity.getActivityId();
056 }
057
058
063 public void setActivityId(long activityId) {
064 _socialActivity.setActivityId(activityId);
065 }
066
067
072 public long getGroupId() {
073 return _socialActivity.getGroupId();
074 }
075
076
081 public void setGroupId(long groupId) {
082 _socialActivity.setGroupId(groupId);
083 }
084
085
090 public long getCompanyId() {
091 return _socialActivity.getCompanyId();
092 }
093
094
099 public void setCompanyId(long companyId) {
100 _socialActivity.setCompanyId(companyId);
101 }
102
103
108 public long getUserId() {
109 return _socialActivity.getUserId();
110 }
111
112
117 public void setUserId(long userId) {
118 _socialActivity.setUserId(userId);
119 }
120
121
127 public java.lang.String getUserUuid()
128 throws com.liferay.portal.kernel.exception.SystemException {
129 return _socialActivity.getUserUuid();
130 }
131
132
137 public void setUserUuid(java.lang.String userUuid) {
138 _socialActivity.setUserUuid(userUuid);
139 }
140
141
146 public long getCreateDate() {
147 return _socialActivity.getCreateDate();
148 }
149
150
155 public void setCreateDate(long createDate) {
156 _socialActivity.setCreateDate(createDate);
157 }
158
159
164 public long getMirrorActivityId() {
165 return _socialActivity.getMirrorActivityId();
166 }
167
168
173 public void setMirrorActivityId(long mirrorActivityId) {
174 _socialActivity.setMirrorActivityId(mirrorActivityId);
175 }
176
177
182 public java.lang.String getClassName() {
183 return _socialActivity.getClassName();
184 }
185
186
191 public long getClassNameId() {
192 return _socialActivity.getClassNameId();
193 }
194
195
200 public void setClassNameId(long classNameId) {
201 _socialActivity.setClassNameId(classNameId);
202 }
203
204
209 public long getClassPK() {
210 return _socialActivity.getClassPK();
211 }
212
213
218 public void setClassPK(long classPK) {
219 _socialActivity.setClassPK(classPK);
220 }
221
222
227 public int getType() {
228 return _socialActivity.getType();
229 }
230
231
236 public void setType(int type) {
237 _socialActivity.setType(type);
238 }
239
240
245 public java.lang.String getExtraData() {
246 return _socialActivity.getExtraData();
247 }
248
249
254 public void setExtraData(java.lang.String extraData) {
255 _socialActivity.setExtraData(extraData);
256 }
257
258
263 public long getReceiverUserId() {
264 return _socialActivity.getReceiverUserId();
265 }
266
267
272 public void setReceiverUserId(long receiverUserId) {
273 _socialActivity.setReceiverUserId(receiverUserId);
274 }
275
276
282 public java.lang.String getReceiverUserUuid()
283 throws com.liferay.portal.kernel.exception.SystemException {
284 return _socialActivity.getReceiverUserUuid();
285 }
286
287
292 public void setReceiverUserUuid(java.lang.String receiverUserUuid) {
293 _socialActivity.setReceiverUserUuid(receiverUserUuid);
294 }
295
296 public boolean isNew() {
297 return _socialActivity.isNew();
298 }
299
300 public void setNew(boolean n) {
301 _socialActivity.setNew(n);
302 }
303
304 public boolean isCachedModel() {
305 return _socialActivity.isCachedModel();
306 }
307
308 public void setCachedModel(boolean cachedModel) {
309 _socialActivity.setCachedModel(cachedModel);
310 }
311
312 public boolean isEscapedModel() {
313 return _socialActivity.isEscapedModel();
314 }
315
316 public void setEscapedModel(boolean escapedModel) {
317 _socialActivity.setEscapedModel(escapedModel);
318 }
319
320 public java.io.Serializable getPrimaryKeyObj() {
321 return _socialActivity.getPrimaryKeyObj();
322 }
323
324 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
325 return _socialActivity.getExpandoBridge();
326 }
327
328 public void setExpandoBridgeAttributes(
329 com.liferay.portal.service.ServiceContext serviceContext) {
330 _socialActivity.setExpandoBridgeAttributes(serviceContext);
331 }
332
333 public java.lang.Object clone() {
334 return _socialActivity.clone();
335 }
336
337 public int compareTo(
338 com.liferay.portlet.social.model.SocialActivity socialActivity) {
339 return _socialActivity.compareTo(socialActivity);
340 }
341
342 public int hashCode() {
343 return _socialActivity.hashCode();
344 }
345
346 public com.liferay.portlet.social.model.SocialActivity toEscapedModel() {
347 return _socialActivity.toEscapedModel();
348 }
349
350 public java.lang.String toString() {
351 return _socialActivity.toString();
352 }
353
354 public java.lang.String toXmlString() {
355 return _socialActivity.toXmlString();
356 }
357
358 public SocialActivity getWrappedSocialActivity() {
359 return _socialActivity;
360 }
361
362 private SocialActivity _socialActivity;
363 }