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     * <p>
019     * This class is a wrapper for {@link SocialActivity}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       SocialActivity
024     * @generated
025     */
026    public class SocialActivityWrapper implements SocialActivity {
027            public SocialActivityWrapper(SocialActivity socialActivity) {
028                    _socialActivity = socialActivity;
029            }
030    
031            public long getPrimaryKey() {
032                    return _socialActivity.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _socialActivity.setPrimaryKey(pk);
037            }
038    
039            public long getActivityId() {
040                    return _socialActivity.getActivityId();
041            }
042    
043            public void setActivityId(long activityId) {
044                    _socialActivity.setActivityId(activityId);
045            }
046    
047            public long getGroupId() {
048                    return _socialActivity.getGroupId();
049            }
050    
051            public void setGroupId(long groupId) {
052                    _socialActivity.setGroupId(groupId);
053            }
054    
055            public long getCompanyId() {
056                    return _socialActivity.getCompanyId();
057            }
058    
059            public void setCompanyId(long companyId) {
060                    _socialActivity.setCompanyId(companyId);
061            }
062    
063            public long getUserId() {
064                    return _socialActivity.getUserId();
065            }
066    
067            public void setUserId(long userId) {
068                    _socialActivity.setUserId(userId);
069            }
070    
071            public java.lang.String getUserUuid()
072                    throws com.liferay.portal.kernel.exception.SystemException {
073                    return _socialActivity.getUserUuid();
074            }
075    
076            public void setUserUuid(java.lang.String userUuid) {
077                    _socialActivity.setUserUuid(userUuid);
078            }
079    
080            public long getCreateDate() {
081                    return _socialActivity.getCreateDate();
082            }
083    
084            public void setCreateDate(long createDate) {
085                    _socialActivity.setCreateDate(createDate);
086            }
087    
088            public long getMirrorActivityId() {
089                    return _socialActivity.getMirrorActivityId();
090            }
091    
092            public void setMirrorActivityId(long mirrorActivityId) {
093                    _socialActivity.setMirrorActivityId(mirrorActivityId);
094            }
095    
096            public java.lang.String getClassName() {
097                    return _socialActivity.getClassName();
098            }
099    
100            public long getClassNameId() {
101                    return _socialActivity.getClassNameId();
102            }
103    
104            public void setClassNameId(long classNameId) {
105                    _socialActivity.setClassNameId(classNameId);
106            }
107    
108            public long getClassPK() {
109                    return _socialActivity.getClassPK();
110            }
111    
112            public void setClassPK(long classPK) {
113                    _socialActivity.setClassPK(classPK);
114            }
115    
116            public int getType() {
117                    return _socialActivity.getType();
118            }
119    
120            public void setType(int type) {
121                    _socialActivity.setType(type);
122            }
123    
124            public java.lang.String getExtraData() {
125                    return _socialActivity.getExtraData();
126            }
127    
128            public void setExtraData(java.lang.String extraData) {
129                    _socialActivity.setExtraData(extraData);
130            }
131    
132            public long getReceiverUserId() {
133                    return _socialActivity.getReceiverUserId();
134            }
135    
136            public void setReceiverUserId(long receiverUserId) {
137                    _socialActivity.setReceiverUserId(receiverUserId);
138            }
139    
140            public java.lang.String getReceiverUserUuid()
141                    throws com.liferay.portal.kernel.exception.SystemException {
142                    return _socialActivity.getReceiverUserUuid();
143            }
144    
145            public void setReceiverUserUuid(java.lang.String receiverUserUuid) {
146                    _socialActivity.setReceiverUserUuid(receiverUserUuid);
147            }
148    
149            public com.liferay.portlet.social.model.SocialActivity toEscapedModel() {
150                    return _socialActivity.toEscapedModel();
151            }
152    
153            public boolean isNew() {
154                    return _socialActivity.isNew();
155            }
156    
157            public void setNew(boolean n) {
158                    _socialActivity.setNew(n);
159            }
160    
161            public boolean isCachedModel() {
162                    return _socialActivity.isCachedModel();
163            }
164    
165            public void setCachedModel(boolean cachedModel) {
166                    _socialActivity.setCachedModel(cachedModel);
167            }
168    
169            public boolean isEscapedModel() {
170                    return _socialActivity.isEscapedModel();
171            }
172    
173            public void setEscapedModel(boolean escapedModel) {
174                    _socialActivity.setEscapedModel(escapedModel);
175            }
176    
177            public java.io.Serializable getPrimaryKeyObj() {
178                    return _socialActivity.getPrimaryKeyObj();
179            }
180    
181            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
182                    return _socialActivity.getExpandoBridge();
183            }
184    
185            public void setExpandoBridgeAttributes(
186                    com.liferay.portal.service.ServiceContext serviceContext) {
187                    _socialActivity.setExpandoBridgeAttributes(serviceContext);
188            }
189    
190            public java.lang.Object clone() {
191                    return _socialActivity.clone();
192            }
193    
194            public int compareTo(
195                    com.liferay.portlet.social.model.SocialActivity socialActivity) {
196                    return _socialActivity.compareTo(socialActivity);
197            }
198    
199            public int hashCode() {
200                    return _socialActivity.hashCode();
201            }
202    
203            public java.lang.String toString() {
204                    return _socialActivity.toString();
205            }
206    
207            public java.lang.String toXmlString() {
208                    return _socialActivity.toXmlString();
209            }
210    
211            public SocialActivity getWrappedSocialActivity() {
212                    return _socialActivity;
213            }
214    
215            private SocialActivity _socialActivity;
216    }