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 public Class<?> getModelClass() {
032 return SocialActivity.class;
033 }
034
035 public String getModelClassName() {
036 return SocialActivity.class.getName();
037 }
038
039
044 public long getPrimaryKey() {
045 return _socialActivity.getPrimaryKey();
046 }
047
048
053 public void setPrimaryKey(long primaryKey) {
054 _socialActivity.setPrimaryKey(primaryKey);
055 }
056
057
062 public long getActivityId() {
063 return _socialActivity.getActivityId();
064 }
065
066
071 public void setActivityId(long activityId) {
072 _socialActivity.setActivityId(activityId);
073 }
074
075
080 public long getGroupId() {
081 return _socialActivity.getGroupId();
082 }
083
084
089 public void setGroupId(long groupId) {
090 _socialActivity.setGroupId(groupId);
091 }
092
093
098 public long getCompanyId() {
099 return _socialActivity.getCompanyId();
100 }
101
102
107 public void setCompanyId(long companyId) {
108 _socialActivity.setCompanyId(companyId);
109 }
110
111
116 public long getUserId() {
117 return _socialActivity.getUserId();
118 }
119
120
125 public void setUserId(long userId) {
126 _socialActivity.setUserId(userId);
127 }
128
129
135 public java.lang.String getUserUuid()
136 throws com.liferay.portal.kernel.exception.SystemException {
137 return _socialActivity.getUserUuid();
138 }
139
140
145 public void setUserUuid(java.lang.String userUuid) {
146 _socialActivity.setUserUuid(userUuid);
147 }
148
149
154 public long getCreateDate() {
155 return _socialActivity.getCreateDate();
156 }
157
158
163 public void setCreateDate(long createDate) {
164 _socialActivity.setCreateDate(createDate);
165 }
166
167
172 public long getMirrorActivityId() {
173 return _socialActivity.getMirrorActivityId();
174 }
175
176
181 public void setMirrorActivityId(long mirrorActivityId) {
182 _socialActivity.setMirrorActivityId(mirrorActivityId);
183 }
184
185
190 public java.lang.String getClassName() {
191 return _socialActivity.getClassName();
192 }
193
194
199 public long getClassNameId() {
200 return _socialActivity.getClassNameId();
201 }
202
203
208 public void setClassNameId(long classNameId) {
209 _socialActivity.setClassNameId(classNameId);
210 }
211
212
217 public long getClassPK() {
218 return _socialActivity.getClassPK();
219 }
220
221
226 public void setClassPK(long classPK) {
227 _socialActivity.setClassPK(classPK);
228 }
229
230
235 public int getType() {
236 return _socialActivity.getType();
237 }
238
239
244 public void setType(int type) {
245 _socialActivity.setType(type);
246 }
247
248
253 public java.lang.String getExtraData() {
254 return _socialActivity.getExtraData();
255 }
256
257
262 public void setExtraData(java.lang.String extraData) {
263 _socialActivity.setExtraData(extraData);
264 }
265
266
271 public long getReceiverUserId() {
272 return _socialActivity.getReceiverUserId();
273 }
274
275
280 public void setReceiverUserId(long receiverUserId) {
281 _socialActivity.setReceiverUserId(receiverUserId);
282 }
283
284
290 public java.lang.String getReceiverUserUuid()
291 throws com.liferay.portal.kernel.exception.SystemException {
292 return _socialActivity.getReceiverUserUuid();
293 }
294
295
300 public void setReceiverUserUuid(java.lang.String receiverUserUuid) {
301 _socialActivity.setReceiverUserUuid(receiverUserUuid);
302 }
303
304 public boolean isNew() {
305 return _socialActivity.isNew();
306 }
307
308 public void setNew(boolean n) {
309 _socialActivity.setNew(n);
310 }
311
312 public boolean isCachedModel() {
313 return _socialActivity.isCachedModel();
314 }
315
316 public void setCachedModel(boolean cachedModel) {
317 _socialActivity.setCachedModel(cachedModel);
318 }
319
320 public boolean isEscapedModel() {
321 return _socialActivity.isEscapedModel();
322 }
323
324 public java.io.Serializable getPrimaryKeyObj() {
325 return _socialActivity.getPrimaryKeyObj();
326 }
327
328 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
329 _socialActivity.setPrimaryKeyObj(primaryKeyObj);
330 }
331
332 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
333 return _socialActivity.getExpandoBridge();
334 }
335
336 public void setExpandoBridgeAttributes(
337 com.liferay.portal.service.ServiceContext serviceContext) {
338 _socialActivity.setExpandoBridgeAttributes(serviceContext);
339 }
340
341 @Override
342 public java.lang.Object clone() {
343 return new SocialActivityWrapper((SocialActivity)_socialActivity.clone());
344 }
345
346 public int compareTo(
347 com.liferay.portlet.social.model.SocialActivity socialActivity) {
348 return _socialActivity.compareTo(socialActivity);
349 }
350
351 @Override
352 public int hashCode() {
353 return _socialActivity.hashCode();
354 }
355
356 public com.liferay.portal.model.CacheModel<com.liferay.portlet.social.model.SocialActivity> toCacheModel() {
357 return _socialActivity.toCacheModel();
358 }
359
360 public com.liferay.portlet.social.model.SocialActivity toEscapedModel() {
361 return new SocialActivityWrapper(_socialActivity.toEscapedModel());
362 }
363
364 @Override
365 public java.lang.String toString() {
366 return _socialActivity.toString();
367 }
368
369 public java.lang.String toXmlString() {
370 return _socialActivity.toXmlString();
371 }
372
373 public void persist()
374 throws com.liferay.portal.kernel.exception.SystemException {
375 _socialActivity.persist();
376 }
377
378 public SocialActivity getWrappedSocialActivity() {
379 return _socialActivity;
380 }
381
382 public void resetOriginalValues() {
383 _socialActivity.resetOriginalValues();
384 }
385
386 private SocialActivity _socialActivity;
387 }