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