1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.social.model;
16  
17  
18  /**
19   * <a href="SocialActivitySoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link SocialActivity}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       SocialActivity
32   * @generated
33   */
34  public class SocialActivityWrapper implements SocialActivity {
35      public SocialActivityWrapper(SocialActivity socialActivity) {
36          _socialActivity = socialActivity;
37      }
38  
39      public long getPrimaryKey() {
40          return _socialActivity.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _socialActivity.setPrimaryKey(pk);
45      }
46  
47      public long getActivityId() {
48          return _socialActivity.getActivityId();
49      }
50  
51      public void setActivityId(long activityId) {
52          _socialActivity.setActivityId(activityId);
53      }
54  
55      public long getGroupId() {
56          return _socialActivity.getGroupId();
57      }
58  
59      public void setGroupId(long groupId) {
60          _socialActivity.setGroupId(groupId);
61      }
62  
63      public long getCompanyId() {
64          return _socialActivity.getCompanyId();
65      }
66  
67      public void setCompanyId(long companyId) {
68          _socialActivity.setCompanyId(companyId);
69      }
70  
71      public long getUserId() {
72          return _socialActivity.getUserId();
73      }
74  
75      public void setUserId(long userId) {
76          _socialActivity.setUserId(userId);
77      }
78  
79      public java.lang.String getUserUuid()
80          throws com.liferay.portal.kernel.exception.SystemException {
81          return _socialActivity.getUserUuid();
82      }
83  
84      public void setUserUuid(java.lang.String userUuid) {
85          _socialActivity.setUserUuid(userUuid);
86      }
87  
88      public long getCreateDate() {
89          return _socialActivity.getCreateDate();
90      }
91  
92      public void setCreateDate(long createDate) {
93          _socialActivity.setCreateDate(createDate);
94      }
95  
96      public long getMirrorActivityId() {
97          return _socialActivity.getMirrorActivityId();
98      }
99  
100     public void setMirrorActivityId(long mirrorActivityId) {
101         _socialActivity.setMirrorActivityId(mirrorActivityId);
102     }
103 
104     public java.lang.String getClassName() {
105         return _socialActivity.getClassName();
106     }
107 
108     public long getClassNameId() {
109         return _socialActivity.getClassNameId();
110     }
111 
112     public void setClassNameId(long classNameId) {
113         _socialActivity.setClassNameId(classNameId);
114     }
115 
116     public long getClassPK() {
117         return _socialActivity.getClassPK();
118     }
119 
120     public void setClassPK(long classPK) {
121         _socialActivity.setClassPK(classPK);
122     }
123 
124     public int getType() {
125         return _socialActivity.getType();
126     }
127 
128     public void setType(int type) {
129         _socialActivity.setType(type);
130     }
131 
132     public java.lang.String getExtraData() {
133         return _socialActivity.getExtraData();
134     }
135 
136     public void setExtraData(java.lang.String extraData) {
137         _socialActivity.setExtraData(extraData);
138     }
139 
140     public long getReceiverUserId() {
141         return _socialActivity.getReceiverUserId();
142     }
143 
144     public void setReceiverUserId(long receiverUserId) {
145         _socialActivity.setReceiverUserId(receiverUserId);
146     }
147 
148     public java.lang.String getReceiverUserUuid()
149         throws com.liferay.portal.kernel.exception.SystemException {
150         return _socialActivity.getReceiverUserUuid();
151     }
152 
153     public void setReceiverUserUuid(java.lang.String receiverUserUuid) {
154         _socialActivity.setReceiverUserUuid(receiverUserUuid);
155     }
156 
157     public com.liferay.portlet.social.model.SocialActivity toEscapedModel() {
158         return _socialActivity.toEscapedModel();
159     }
160 
161     public boolean isNew() {
162         return _socialActivity.isNew();
163     }
164 
165     public boolean setNew(boolean n) {
166         return _socialActivity.setNew(n);
167     }
168 
169     public boolean isCachedModel() {
170         return _socialActivity.isCachedModel();
171     }
172 
173     public void setCachedModel(boolean cachedModel) {
174         _socialActivity.setCachedModel(cachedModel);
175     }
176 
177     public boolean isEscapedModel() {
178         return _socialActivity.isEscapedModel();
179     }
180 
181     public void setEscapedModel(boolean escapedModel) {
182         _socialActivity.setEscapedModel(escapedModel);
183     }
184 
185     public java.io.Serializable getPrimaryKeyObj() {
186         return _socialActivity.getPrimaryKeyObj();
187     }
188 
189     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
190         return _socialActivity.getExpandoBridge();
191     }
192 
193     public void setExpandoBridgeAttributes(
194         com.liferay.portal.service.ServiceContext serviceContext) {
195         _socialActivity.setExpandoBridgeAttributes(serviceContext);
196     }
197 
198     public java.lang.Object clone() {
199         return _socialActivity.clone();
200     }
201 
202     public int compareTo(
203         com.liferay.portlet.social.model.SocialActivity socialActivity) {
204         return _socialActivity.compareTo(socialActivity);
205     }
206 
207     public int hashCode() {
208         return _socialActivity.hashCode();
209     }
210 
211     public java.lang.String toString() {
212         return _socialActivity.toString();
213     }
214 
215     public java.lang.String toXmlString() {
216         return _socialActivity.toXmlString();
217     }
218 
219     public SocialActivity getWrappedSocialActivity() {
220         return _socialActivity;
221     }
222 
223     private SocialActivity _socialActivity;
224 }