001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.social.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link SocialEquityUser}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       SocialEquityUser
024     * @generated
025     */
026    public class SocialEquityUserWrapper implements SocialEquityUser {
027            public SocialEquityUserWrapper(SocialEquityUser socialEquityUser) {
028                    _socialEquityUser = socialEquityUser;
029            }
030    
031            /**
032            * Gets the primary key of this social equity user.
033            *
034            * @return the primary key of this social equity user
035            */
036            public long getPrimaryKey() {
037                    return _socialEquityUser.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this social equity user
042            *
043            * @param pk the primary key of this social equity user
044            */
045            public void setPrimaryKey(long pk) {
046                    _socialEquityUser.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the equity user id of this social equity user.
051            *
052            * @return the equity user id of this social equity user
053            */
054            public long getEquityUserId() {
055                    return _socialEquityUser.getEquityUserId();
056            }
057    
058            /**
059            * Sets the equity user id of this social equity user.
060            *
061            * @param equityUserId the equity user id of this social equity user
062            */
063            public void setEquityUserId(long equityUserId) {
064                    _socialEquityUser.setEquityUserId(equityUserId);
065            }
066    
067            /**
068            * Gets the equity user uuid of this social equity user.
069            *
070            * @return the equity user uuid of this social equity user
071            * @throws SystemException if a system exception occurred
072            */
073            public java.lang.String getEquityUserUuid()
074                    throws com.liferay.portal.kernel.exception.SystemException {
075                    return _socialEquityUser.getEquityUserUuid();
076            }
077    
078            /**
079            * Sets the equity user uuid of this social equity user.
080            *
081            * @param equityUserUuid the equity user uuid of this social equity user
082            */
083            public void setEquityUserUuid(java.lang.String equityUserUuid) {
084                    _socialEquityUser.setEquityUserUuid(equityUserUuid);
085            }
086    
087            /**
088            * Gets the group id of this social equity user.
089            *
090            * @return the group id of this social equity user
091            */
092            public long getGroupId() {
093                    return _socialEquityUser.getGroupId();
094            }
095    
096            /**
097            * Sets the group id of this social equity user.
098            *
099            * @param groupId the group id of this social equity user
100            */
101            public void setGroupId(long groupId) {
102                    _socialEquityUser.setGroupId(groupId);
103            }
104    
105            /**
106            * Gets the company id of this social equity user.
107            *
108            * @return the company id of this social equity user
109            */
110            public long getCompanyId() {
111                    return _socialEquityUser.getCompanyId();
112            }
113    
114            /**
115            * Sets the company id of this social equity user.
116            *
117            * @param companyId the company id of this social equity user
118            */
119            public void setCompanyId(long companyId) {
120                    _socialEquityUser.setCompanyId(companyId);
121            }
122    
123            /**
124            * Gets the user id of this social equity user.
125            *
126            * @return the user id of this social equity user
127            */
128            public long getUserId() {
129                    return _socialEquityUser.getUserId();
130            }
131    
132            /**
133            * Sets the user id of this social equity user.
134            *
135            * @param userId the user id of this social equity user
136            */
137            public void setUserId(long userId) {
138                    _socialEquityUser.setUserId(userId);
139            }
140    
141            /**
142            * Gets the user uuid of this social equity user.
143            *
144            * @return the user uuid of this social equity user
145            * @throws SystemException if a system exception occurred
146            */
147            public java.lang.String getUserUuid()
148                    throws com.liferay.portal.kernel.exception.SystemException {
149                    return _socialEquityUser.getUserUuid();
150            }
151    
152            /**
153            * Sets the user uuid of this social equity user.
154            *
155            * @param userUuid the user uuid of this social equity user
156            */
157            public void setUserUuid(java.lang.String userUuid) {
158                    _socialEquityUser.setUserUuid(userUuid);
159            }
160    
161            /**
162            * Gets the contribution k of this social equity user.
163            *
164            * @return the contribution k of this social equity user
165            */
166            public double getContributionK() {
167                    return _socialEquityUser.getContributionK();
168            }
169    
170            /**
171            * Sets the contribution k of this social equity user.
172            *
173            * @param contributionK the contribution k of this social equity user
174            */
175            public void setContributionK(double contributionK) {
176                    _socialEquityUser.setContributionK(contributionK);
177            }
178    
179            /**
180            * Gets the contribution b of this social equity user.
181            *
182            * @return the contribution b of this social equity user
183            */
184            public double getContributionB() {
185                    return _socialEquityUser.getContributionB();
186            }
187    
188            /**
189            * Sets the contribution b of this social equity user.
190            *
191            * @param contributionB the contribution b of this social equity user
192            */
193            public void setContributionB(double contributionB) {
194                    _socialEquityUser.setContributionB(contributionB);
195            }
196    
197            /**
198            * Gets the participation k of this social equity user.
199            *
200            * @return the participation k of this social equity user
201            */
202            public double getParticipationK() {
203                    return _socialEquityUser.getParticipationK();
204            }
205    
206            /**
207            * Sets the participation k of this social equity user.
208            *
209            * @param participationK the participation k of this social equity user
210            */
211            public void setParticipationK(double participationK) {
212                    _socialEquityUser.setParticipationK(participationK);
213            }
214    
215            /**
216            * Gets the participation b of this social equity user.
217            *
218            * @return the participation b of this social equity user
219            */
220            public double getParticipationB() {
221                    return _socialEquityUser.getParticipationB();
222            }
223    
224            /**
225            * Sets the participation b of this social equity user.
226            *
227            * @param participationB the participation b of this social equity user
228            */
229            public void setParticipationB(double participationB) {
230                    _socialEquityUser.setParticipationB(participationB);
231            }
232    
233            /**
234            * Gets the rank of this social equity user.
235            *
236            * @return the rank of this social equity user
237            */
238            public int getRank() {
239                    return _socialEquityUser.getRank();
240            }
241    
242            /**
243            * Sets the rank of this social equity user.
244            *
245            * @param rank the rank of this social equity user
246            */
247            public void setRank(int rank) {
248                    _socialEquityUser.setRank(rank);
249            }
250    
251            public boolean isNew() {
252                    return _socialEquityUser.isNew();
253            }
254    
255            public void setNew(boolean n) {
256                    _socialEquityUser.setNew(n);
257            }
258    
259            public boolean isCachedModel() {
260                    return _socialEquityUser.isCachedModel();
261            }
262    
263            public void setCachedModel(boolean cachedModel) {
264                    _socialEquityUser.setCachedModel(cachedModel);
265            }
266    
267            public boolean isEscapedModel() {
268                    return _socialEquityUser.isEscapedModel();
269            }
270    
271            public void setEscapedModel(boolean escapedModel) {
272                    _socialEquityUser.setEscapedModel(escapedModel);
273            }
274    
275            public java.io.Serializable getPrimaryKeyObj() {
276                    return _socialEquityUser.getPrimaryKeyObj();
277            }
278    
279            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
280                    return _socialEquityUser.getExpandoBridge();
281            }
282    
283            public void setExpandoBridgeAttributes(
284                    com.liferay.portal.service.ServiceContext serviceContext) {
285                    _socialEquityUser.setExpandoBridgeAttributes(serviceContext);
286            }
287    
288            public java.lang.Object clone() {
289                    return _socialEquityUser.clone();
290            }
291    
292            public int compareTo(
293                    com.liferay.portlet.social.model.SocialEquityUser socialEquityUser) {
294                    return _socialEquityUser.compareTo(socialEquityUser);
295            }
296    
297            public int hashCode() {
298                    return _socialEquityUser.hashCode();
299            }
300    
301            public com.liferay.portlet.social.model.SocialEquityUser toEscapedModel() {
302                    return _socialEquityUser.toEscapedModel();
303            }
304    
305            public java.lang.String toString() {
306                    return _socialEquityUser.toString();
307            }
308    
309            public java.lang.String toXmlString() {
310                    return _socialEquityUser.toXmlString();
311            }
312    
313            public double getContributionEquity() {
314                    return _socialEquityUser.getContributionEquity();
315            }
316    
317            public double getParticipationEquity() {
318                    return _socialEquityUser.getParticipationEquity();
319            }
320    
321            public SocialEquityUser getWrappedSocialEquityUser() {
322                    return _socialEquityUser;
323            }
324    
325            private SocialEquityUser _socialEquityUser;
326    }