1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.social.model;
24  
25  
26  /**
27   * <a href="SocialActivitySoap.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link SocialActivity}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       SocialActivity
40   * @generated
41   */
42  public class SocialActivityWrapper implements SocialActivity {
43      public SocialActivityWrapper(SocialActivity socialActivity) {
44          _socialActivity = socialActivity;
45      }
46  
47      public long getPrimaryKey() {
48          return _socialActivity.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _socialActivity.setPrimaryKey(pk);
53      }
54  
55      public long getActivityId() {
56          return _socialActivity.getActivityId();
57      }
58  
59      public void setActivityId(long activityId) {
60          _socialActivity.setActivityId(activityId);
61      }
62  
63      public long getGroupId() {
64          return _socialActivity.getGroupId();
65      }
66  
67      public void setGroupId(long groupId) {
68          _socialActivity.setGroupId(groupId);
69      }
70  
71      public long getCompanyId() {
72          return _socialActivity.getCompanyId();
73      }
74  
75      public void setCompanyId(long companyId) {
76          _socialActivity.setCompanyId(companyId);
77      }
78  
79      public long getUserId() {
80          return _socialActivity.getUserId();
81      }
82  
83      public void setUserId(long userId) {
84          _socialActivity.setUserId(userId);
85      }
86  
87      public java.lang.String getUserUuid()
88          throws com.liferay.portal.SystemException {
89          return _socialActivity.getUserUuid();
90      }
91  
92      public void setUserUuid(java.lang.String userUuid) {
93          _socialActivity.setUserUuid(userUuid);
94      }
95  
96      public long getCreateDate() {
97          return _socialActivity.getCreateDate();
98      }
99  
100     public void setCreateDate(long createDate) {
101         _socialActivity.setCreateDate(createDate);
102     }
103 
104     public long getMirrorActivityId() {
105         return _socialActivity.getMirrorActivityId();
106     }
107 
108     public void setMirrorActivityId(long mirrorActivityId) {
109         _socialActivity.setMirrorActivityId(mirrorActivityId);
110     }
111 
112     public java.lang.String getClassName() {
113         return _socialActivity.getClassName();
114     }
115 
116     public long getClassNameId() {
117         return _socialActivity.getClassNameId();
118     }
119 
120     public void setClassNameId(long classNameId) {
121         _socialActivity.setClassNameId(classNameId);
122     }
123 
124     public long getClassPK() {
125         return _socialActivity.getClassPK();
126     }
127 
128     public void setClassPK(long classPK) {
129         _socialActivity.setClassPK(classPK);
130     }
131 
132     public int getType() {
133         return _socialActivity.getType();
134     }
135 
136     public void setType(int type) {
137         _socialActivity.setType(type);
138     }
139 
140     public java.lang.String getExtraData() {
141         return _socialActivity.getExtraData();
142     }
143 
144     public void setExtraData(java.lang.String extraData) {
145         _socialActivity.setExtraData(extraData);
146     }
147 
148     public long getReceiverUserId() {
149         return _socialActivity.getReceiverUserId();
150     }
151 
152     public void setReceiverUserId(long receiverUserId) {
153         _socialActivity.setReceiverUserId(receiverUserId);
154     }
155 
156     public java.lang.String getReceiverUserUuid()
157         throws com.liferay.portal.SystemException {
158         return _socialActivity.getReceiverUserUuid();
159     }
160 
161     public void setReceiverUserUuid(java.lang.String receiverUserUuid) {
162         _socialActivity.setReceiverUserUuid(receiverUserUuid);
163     }
164 
165     public com.liferay.portlet.social.model.SocialActivity toEscapedModel() {
166         return _socialActivity.toEscapedModel();
167     }
168 
169     public boolean isNew() {
170         return _socialActivity.isNew();
171     }
172 
173     public boolean setNew(boolean n) {
174         return _socialActivity.setNew(n);
175     }
176 
177     public boolean isCachedModel() {
178         return _socialActivity.isCachedModel();
179     }
180 
181     public void setCachedModel(boolean cachedModel) {
182         _socialActivity.setCachedModel(cachedModel);
183     }
184 
185     public boolean isEscapedModel() {
186         return _socialActivity.isEscapedModel();
187     }
188 
189     public void setEscapedModel(boolean escapedModel) {
190         _socialActivity.setEscapedModel(escapedModel);
191     }
192 
193     public java.io.Serializable getPrimaryKeyObj() {
194         return _socialActivity.getPrimaryKeyObj();
195     }
196 
197     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
198         return _socialActivity.getExpandoBridge();
199     }
200 
201     public void setExpandoBridgeAttributes(
202         com.liferay.portal.service.ServiceContext serviceContext) {
203         _socialActivity.setExpandoBridgeAttributes(serviceContext);
204     }
205 
206     public java.lang.Object clone() {
207         return _socialActivity.clone();
208     }
209 
210     public int compareTo(
211         com.liferay.portlet.social.model.SocialActivity socialActivity) {
212         return _socialActivity.compareTo(socialActivity);
213     }
214 
215     public int hashCode() {
216         return _socialActivity.hashCode();
217     }
218 
219     public java.lang.String toString() {
220         return _socialActivity.toString();
221     }
222 
223     public java.lang.String toXmlString() {
224         return _socialActivity.toXmlString();
225     }
226 
227     public SocialActivity getWrappedSocialActivity() {
228         return _socialActivity;
229     }
230 
231     private SocialActivity _socialActivity;
232 }