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 SocialEquityHistory}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       SocialEquityHistory
024     * @generated
025     */
026    public class SocialEquityHistoryWrapper implements SocialEquityHistory {
027            public SocialEquityHistoryWrapper(SocialEquityHistory socialEquityHistory) {
028                    _socialEquityHistory = socialEquityHistory;
029            }
030    
031            /**
032            * Gets the primary key of this social equity history.
033            *
034            * @return the primary key of this social equity history
035            */
036            public long getPrimaryKey() {
037                    return _socialEquityHistory.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this social equity history
042            *
043            * @param pk the primary key of this social equity history
044            */
045            public void setPrimaryKey(long pk) {
046                    _socialEquityHistory.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the equity history id of this social equity history.
051            *
052            * @return the equity history id of this social equity history
053            */
054            public long getEquityHistoryId() {
055                    return _socialEquityHistory.getEquityHistoryId();
056            }
057    
058            /**
059            * Sets the equity history id of this social equity history.
060            *
061            * @param equityHistoryId the equity history id of this social equity history
062            */
063            public void setEquityHistoryId(long equityHistoryId) {
064                    _socialEquityHistory.setEquityHistoryId(equityHistoryId);
065            }
066    
067            /**
068            * Gets the group id of this social equity history.
069            *
070            * @return the group id of this social equity history
071            */
072            public long getGroupId() {
073                    return _socialEquityHistory.getGroupId();
074            }
075    
076            /**
077            * Sets the group id of this social equity history.
078            *
079            * @param groupId the group id of this social equity history
080            */
081            public void setGroupId(long groupId) {
082                    _socialEquityHistory.setGroupId(groupId);
083            }
084    
085            /**
086            * Gets the company id of this social equity history.
087            *
088            * @return the company id of this social equity history
089            */
090            public long getCompanyId() {
091                    return _socialEquityHistory.getCompanyId();
092            }
093    
094            /**
095            * Sets the company id of this social equity history.
096            *
097            * @param companyId the company id of this social equity history
098            */
099            public void setCompanyId(long companyId) {
100                    _socialEquityHistory.setCompanyId(companyId);
101            }
102    
103            /**
104            * Gets the user id of this social equity history.
105            *
106            * @return the user id of this social equity history
107            */
108            public long getUserId() {
109                    return _socialEquityHistory.getUserId();
110            }
111    
112            /**
113            * Sets the user id of this social equity history.
114            *
115            * @param userId the user id of this social equity history
116            */
117            public void setUserId(long userId) {
118                    _socialEquityHistory.setUserId(userId);
119            }
120    
121            /**
122            * Gets the user uuid of this social equity history.
123            *
124            * @return the user uuid of this social equity history
125            * @throws SystemException if a system exception occurred
126            */
127            public java.lang.String getUserUuid()
128                    throws com.liferay.portal.kernel.exception.SystemException {
129                    return _socialEquityHistory.getUserUuid();
130            }
131    
132            /**
133            * Sets the user uuid of this social equity history.
134            *
135            * @param userUuid the user uuid of this social equity history
136            */
137            public void setUserUuid(java.lang.String userUuid) {
138                    _socialEquityHistory.setUserUuid(userUuid);
139            }
140    
141            /**
142            * Gets the create date of this social equity history.
143            *
144            * @return the create date of this social equity history
145            */
146            public java.util.Date getCreateDate() {
147                    return _socialEquityHistory.getCreateDate();
148            }
149    
150            /**
151            * Sets the create date of this social equity history.
152            *
153            * @param createDate the create date of this social equity history
154            */
155            public void setCreateDate(java.util.Date createDate) {
156                    _socialEquityHistory.setCreateDate(createDate);
157            }
158    
159            /**
160            * Gets the personal equity of this social equity history.
161            *
162            * @return the personal equity of this social equity history
163            */
164            public int getPersonalEquity() {
165                    return _socialEquityHistory.getPersonalEquity();
166            }
167    
168            /**
169            * Sets the personal equity of this social equity history.
170            *
171            * @param personalEquity the personal equity of this social equity history
172            */
173            public void setPersonalEquity(int personalEquity) {
174                    _socialEquityHistory.setPersonalEquity(personalEquity);
175            }
176    
177            public boolean isNew() {
178                    return _socialEquityHistory.isNew();
179            }
180    
181            public void setNew(boolean n) {
182                    _socialEquityHistory.setNew(n);
183            }
184    
185            public boolean isCachedModel() {
186                    return _socialEquityHistory.isCachedModel();
187            }
188    
189            public void setCachedModel(boolean cachedModel) {
190                    _socialEquityHistory.setCachedModel(cachedModel);
191            }
192    
193            public boolean isEscapedModel() {
194                    return _socialEquityHistory.isEscapedModel();
195            }
196    
197            public void setEscapedModel(boolean escapedModel) {
198                    _socialEquityHistory.setEscapedModel(escapedModel);
199            }
200    
201            public java.io.Serializable getPrimaryKeyObj() {
202                    return _socialEquityHistory.getPrimaryKeyObj();
203            }
204    
205            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
206                    return _socialEquityHistory.getExpandoBridge();
207            }
208    
209            public void setExpandoBridgeAttributes(
210                    com.liferay.portal.service.ServiceContext serviceContext) {
211                    _socialEquityHistory.setExpandoBridgeAttributes(serviceContext);
212            }
213    
214            public java.lang.Object clone() {
215                    return _socialEquityHistory.clone();
216            }
217    
218            public int compareTo(
219                    com.liferay.portlet.social.model.SocialEquityHistory socialEquityHistory) {
220                    return _socialEquityHistory.compareTo(socialEquityHistory);
221            }
222    
223            public int hashCode() {
224                    return _socialEquityHistory.hashCode();
225            }
226    
227            public com.liferay.portlet.social.model.SocialEquityHistory toEscapedModel() {
228                    return _socialEquityHistory.toEscapedModel();
229            }
230    
231            public java.lang.String toString() {
232                    return _socialEquityHistory.toString();
233            }
234    
235            public java.lang.String toXmlString() {
236                    return _socialEquityHistory.toXmlString();
237            }
238    
239            public SocialEquityHistory getWrappedSocialEquityHistory() {
240                    return _socialEquityHistory;
241            }
242    
243            private SocialEquityHistory _socialEquityHistory;
244    }