001
014
015 package com.liferay.portlet.social.model;
016
017 import com.liferay.portal.model.ModelWrapper;
018
019
028 public class SocialActivityWrapper implements SocialActivity,
029 ModelWrapper<SocialActivity> {
030 public SocialActivityWrapper(SocialActivity socialActivity) {
031 _socialActivity = socialActivity;
032 }
033
034 public Class<?> getModelClass() {
035 return SocialActivity.class;
036 }
037
038 public String getModelClassName() {
039 return SocialActivity.class.getName();
040 }
041
042
047 public long getPrimaryKey() {
048 return _socialActivity.getPrimaryKey();
049 }
050
051
056 public void setPrimaryKey(long primaryKey) {
057 _socialActivity.setPrimaryKey(primaryKey);
058 }
059
060
065 public long getActivityId() {
066 return _socialActivity.getActivityId();
067 }
068
069
074 public void setActivityId(long activityId) {
075 _socialActivity.setActivityId(activityId);
076 }
077
078
083 public long getGroupId() {
084 return _socialActivity.getGroupId();
085 }
086
087
092 public void setGroupId(long groupId) {
093 _socialActivity.setGroupId(groupId);
094 }
095
096
101 public long getCompanyId() {
102 return _socialActivity.getCompanyId();
103 }
104
105
110 public void setCompanyId(long companyId) {
111 _socialActivity.setCompanyId(companyId);
112 }
113
114
119 public long getUserId() {
120 return _socialActivity.getUserId();
121 }
122
123
128 public void setUserId(long userId) {
129 _socialActivity.setUserId(userId);
130 }
131
132
138 public java.lang.String getUserUuid()
139 throws com.liferay.portal.kernel.exception.SystemException {
140 return _socialActivity.getUserUuid();
141 }
142
143
148 public void setUserUuid(java.lang.String userUuid) {
149 _socialActivity.setUserUuid(userUuid);
150 }
151
152
157 public long getCreateDate() {
158 return _socialActivity.getCreateDate();
159 }
160
161
166 public void setCreateDate(long createDate) {
167 _socialActivity.setCreateDate(createDate);
168 }
169
170
175 public long getMirrorActivityId() {
176 return _socialActivity.getMirrorActivityId();
177 }
178
179
184 public void setMirrorActivityId(long mirrorActivityId) {
185 _socialActivity.setMirrorActivityId(mirrorActivityId);
186 }
187
188
193 public java.lang.String getClassName() {
194 return _socialActivity.getClassName();
195 }
196
197
202 public long getClassNameId() {
203 return _socialActivity.getClassNameId();
204 }
205
206
211 public void setClassNameId(long classNameId) {
212 _socialActivity.setClassNameId(classNameId);
213 }
214
215
220 public long getClassPK() {
221 return _socialActivity.getClassPK();
222 }
223
224
229 public void setClassPK(long classPK) {
230 _socialActivity.setClassPK(classPK);
231 }
232
233
238 public int getType() {
239 return _socialActivity.getType();
240 }
241
242
247 public void setType(int type) {
248 _socialActivity.setType(type);
249 }
250
251
256 public java.lang.String getExtraData() {
257 return _socialActivity.getExtraData();
258 }
259
260
265 public void setExtraData(java.lang.String extraData) {
266 _socialActivity.setExtraData(extraData);
267 }
268
269
274 public long getReceiverUserId() {
275 return _socialActivity.getReceiverUserId();
276 }
277
278
283 public void setReceiverUserId(long receiverUserId) {
284 _socialActivity.setReceiverUserId(receiverUserId);
285 }
286
287
293 public java.lang.String getReceiverUserUuid()
294 throws com.liferay.portal.kernel.exception.SystemException {
295 return _socialActivity.getReceiverUserUuid();
296 }
297
298
303 public void setReceiverUserUuid(java.lang.String receiverUserUuid) {
304 _socialActivity.setReceiverUserUuid(receiverUserUuid);
305 }
306
307 public boolean isNew() {
308 return _socialActivity.isNew();
309 }
310
311 public void setNew(boolean n) {
312 _socialActivity.setNew(n);
313 }
314
315 public boolean isCachedModel() {
316 return _socialActivity.isCachedModel();
317 }
318
319 public void setCachedModel(boolean cachedModel) {
320 _socialActivity.setCachedModel(cachedModel);
321 }
322
323 public boolean isEscapedModel() {
324 return _socialActivity.isEscapedModel();
325 }
326
327 public java.io.Serializable getPrimaryKeyObj() {
328 return _socialActivity.getPrimaryKeyObj();
329 }
330
331 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
332 _socialActivity.setPrimaryKeyObj(primaryKeyObj);
333 }
334
335 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
336 return _socialActivity.getExpandoBridge();
337 }
338
339 public void setExpandoBridgeAttributes(
340 com.liferay.portal.service.ServiceContext serviceContext) {
341 _socialActivity.setExpandoBridgeAttributes(serviceContext);
342 }
343
344 @Override
345 public java.lang.Object clone() {
346 return new SocialActivityWrapper((SocialActivity)_socialActivity.clone());
347 }
348
349 public int compareTo(
350 com.liferay.portlet.social.model.SocialActivity socialActivity) {
351 return _socialActivity.compareTo(socialActivity);
352 }
353
354 @Override
355 public int hashCode() {
356 return _socialActivity.hashCode();
357 }
358
359 public com.liferay.portal.model.CacheModel<com.liferay.portlet.social.model.SocialActivity> toCacheModel() {
360 return _socialActivity.toCacheModel();
361 }
362
363 public com.liferay.portlet.social.model.SocialActivity toEscapedModel() {
364 return new SocialActivityWrapper(_socialActivity.toEscapedModel());
365 }
366
367 @Override
368 public java.lang.String toString() {
369 return _socialActivity.toString();
370 }
371
372 public java.lang.String toXmlString() {
373 return _socialActivity.toXmlString();
374 }
375
376 public void persist()
377 throws com.liferay.portal.kernel.exception.SystemException {
378 _socialActivity.persist();
379 }
380
381 public com.liferay.portlet.asset.model.AssetEntry getAssetEntry()
382 throws com.liferay.portal.kernel.exception.SystemException {
383 return _socialActivity.getAssetEntry();
384 }
385
386 public void setAssetEntry(
387 com.liferay.portlet.asset.model.AssetEntry assetEntry) {
388 _socialActivity.setAssetEntry(assetEntry);
389 }
390
391
394 public SocialActivity getWrappedSocialActivity() {
395 return _socialActivity;
396 }
397
398 public SocialActivity getWrappedModel() {
399 return _socialActivity;
400 }
401
402 public void resetOriginalValues() {
403 _socialActivity.resetOriginalValues();
404 }
405
406 private SocialActivity _socialActivity;
407 }