001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.social.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link SocialActivity}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       SocialActivity
025     * @generated
026     */
027    public class SocialActivityWrapper implements SocialActivity {
028            public SocialActivityWrapper(SocialActivity socialActivity) {
029                    _socialActivity = socialActivity;
030            }
031    
032            public long getPrimaryKey() {
033                    return _socialActivity.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _socialActivity.setPrimaryKey(pk);
038            }
039    
040            public long getActivityId() {
041                    return _socialActivity.getActivityId();
042            }
043    
044            public void setActivityId(long activityId) {
045                    _socialActivity.setActivityId(activityId);
046            }
047    
048            public long getGroupId() {
049                    return _socialActivity.getGroupId();
050            }
051    
052            public void setGroupId(long groupId) {
053                    _socialActivity.setGroupId(groupId);
054            }
055    
056            public long getCompanyId() {
057                    return _socialActivity.getCompanyId();
058            }
059    
060            public void setCompanyId(long companyId) {
061                    _socialActivity.setCompanyId(companyId);
062            }
063    
064            public long getUserId() {
065                    return _socialActivity.getUserId();
066            }
067    
068            public void setUserId(long userId) {
069                    _socialActivity.setUserId(userId);
070            }
071    
072            public java.lang.String getUserUuid()
073                    throws com.liferay.portal.kernel.exception.SystemException {
074                    return _socialActivity.getUserUuid();
075            }
076    
077            public void setUserUuid(java.lang.String userUuid) {
078                    _socialActivity.setUserUuid(userUuid);
079            }
080    
081            public long getCreateDate() {
082                    return _socialActivity.getCreateDate();
083            }
084    
085            public void setCreateDate(long createDate) {
086                    _socialActivity.setCreateDate(createDate);
087            }
088    
089            public long getMirrorActivityId() {
090                    return _socialActivity.getMirrorActivityId();
091            }
092    
093            public void setMirrorActivityId(long mirrorActivityId) {
094                    _socialActivity.setMirrorActivityId(mirrorActivityId);
095            }
096    
097            public java.lang.String getClassName() {
098                    return _socialActivity.getClassName();
099            }
100    
101            public long getClassNameId() {
102                    return _socialActivity.getClassNameId();
103            }
104    
105            public void setClassNameId(long classNameId) {
106                    _socialActivity.setClassNameId(classNameId);
107            }
108    
109            public long getClassPK() {
110                    return _socialActivity.getClassPK();
111            }
112    
113            public void setClassPK(long classPK) {
114                    _socialActivity.setClassPK(classPK);
115            }
116    
117            public int getType() {
118                    return _socialActivity.getType();
119            }
120    
121            public void setType(int type) {
122                    _socialActivity.setType(type);
123            }
124    
125            public java.lang.String getExtraData() {
126                    return _socialActivity.getExtraData();
127            }
128    
129            public void setExtraData(java.lang.String extraData) {
130                    _socialActivity.setExtraData(extraData);
131            }
132    
133            public long getReceiverUserId() {
134                    return _socialActivity.getReceiverUserId();
135            }
136    
137            public void setReceiverUserId(long receiverUserId) {
138                    _socialActivity.setReceiverUserId(receiverUserId);
139            }
140    
141            public java.lang.String getReceiverUserUuid()
142                    throws com.liferay.portal.kernel.exception.SystemException {
143                    return _socialActivity.getReceiverUserUuid();
144            }
145    
146            public void setReceiverUserUuid(java.lang.String receiverUserUuid) {
147                    _socialActivity.setReceiverUserUuid(receiverUserUuid);
148            }
149    
150            public com.liferay.portlet.social.model.SocialActivity toEscapedModel() {
151                    return _socialActivity.toEscapedModel();
152            }
153    
154            public boolean isNew() {
155                    return _socialActivity.isNew();
156            }
157    
158            public void setNew(boolean n) {
159                    _socialActivity.setNew(n);
160            }
161    
162            public boolean isCachedModel() {
163                    return _socialActivity.isCachedModel();
164            }
165    
166            public void setCachedModel(boolean cachedModel) {
167                    _socialActivity.setCachedModel(cachedModel);
168            }
169    
170            public boolean isEscapedModel() {
171                    return _socialActivity.isEscapedModel();
172            }
173    
174            public void setEscapedModel(boolean escapedModel) {
175                    _socialActivity.setEscapedModel(escapedModel);
176            }
177    
178            public java.io.Serializable getPrimaryKeyObj() {
179                    return _socialActivity.getPrimaryKeyObj();
180            }
181    
182            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
183                    return _socialActivity.getExpandoBridge();
184            }
185    
186            public void setExpandoBridgeAttributes(
187                    com.liferay.portal.service.ServiceContext serviceContext) {
188                    _socialActivity.setExpandoBridgeAttributes(serviceContext);
189            }
190    
191            public java.lang.Object clone() {
192                    return _socialActivity.clone();
193            }
194    
195            public int compareTo(
196                    com.liferay.portlet.social.model.SocialActivity socialActivity) {
197                    return _socialActivity.compareTo(socialActivity);
198            }
199    
200            public int hashCode() {
201                    return _socialActivity.hashCode();
202            }
203    
204            public java.lang.String toString() {
205                    return _socialActivity.toString();
206            }
207    
208            public java.lang.String toXmlString() {
209                    return _socialActivity.toXmlString();
210            }
211    
212            public SocialActivity getWrappedSocialActivity() {
213                    return _socialActivity;
214            }
215    
216            private SocialActivity _socialActivity;
217    }