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 SocialEquityLog}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       SocialEquityLog
024     * @generated
025     */
026    public class SocialEquityLogWrapper implements SocialEquityLog {
027            public SocialEquityLogWrapper(SocialEquityLog socialEquityLog) {
028                    _socialEquityLog = socialEquityLog;
029            }
030    
031            /**
032            * Gets the primary key of this social equity log.
033            *
034            * @return the primary key of this social equity log
035            */
036            public long getPrimaryKey() {
037                    return _socialEquityLog.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this social equity log
042            *
043            * @param pk the primary key of this social equity log
044            */
045            public void setPrimaryKey(long pk) {
046                    _socialEquityLog.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the equity log id of this social equity log.
051            *
052            * @return the equity log id of this social equity log
053            */
054            public long getEquityLogId() {
055                    return _socialEquityLog.getEquityLogId();
056            }
057    
058            /**
059            * Sets the equity log id of this social equity log.
060            *
061            * @param equityLogId the equity log id of this social equity log
062            */
063            public void setEquityLogId(long equityLogId) {
064                    _socialEquityLog.setEquityLogId(equityLogId);
065            }
066    
067            /**
068            * Gets the group id of this social equity log.
069            *
070            * @return the group id of this social equity log
071            */
072            public long getGroupId() {
073                    return _socialEquityLog.getGroupId();
074            }
075    
076            /**
077            * Sets the group id of this social equity log.
078            *
079            * @param groupId the group id of this social equity log
080            */
081            public void setGroupId(long groupId) {
082                    _socialEquityLog.setGroupId(groupId);
083            }
084    
085            /**
086            * Gets the company id of this social equity log.
087            *
088            * @return the company id of this social equity log
089            */
090            public long getCompanyId() {
091                    return _socialEquityLog.getCompanyId();
092            }
093    
094            /**
095            * Sets the company id of this social equity log.
096            *
097            * @param companyId the company id of this social equity log
098            */
099            public void setCompanyId(long companyId) {
100                    _socialEquityLog.setCompanyId(companyId);
101            }
102    
103            /**
104            * Gets the user id of this social equity log.
105            *
106            * @return the user id of this social equity log
107            */
108            public long getUserId() {
109                    return _socialEquityLog.getUserId();
110            }
111    
112            /**
113            * Sets the user id of this social equity log.
114            *
115            * @param userId the user id of this social equity log
116            */
117            public void setUserId(long userId) {
118                    _socialEquityLog.setUserId(userId);
119            }
120    
121            /**
122            * Gets the user uuid of this social equity log.
123            *
124            * @return the user uuid of this social equity log
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 _socialEquityLog.getUserUuid();
130            }
131    
132            /**
133            * Sets the user uuid of this social equity log.
134            *
135            * @param userUuid the user uuid of this social equity log
136            */
137            public void setUserUuid(java.lang.String userUuid) {
138                    _socialEquityLog.setUserUuid(userUuid);
139            }
140    
141            /**
142            * Gets the asset entry id of this social equity log.
143            *
144            * @return the asset entry id of this social equity log
145            */
146            public long getAssetEntryId() {
147                    return _socialEquityLog.getAssetEntryId();
148            }
149    
150            /**
151            * Sets the asset entry id of this social equity log.
152            *
153            * @param assetEntryId the asset entry id of this social equity log
154            */
155            public void setAssetEntryId(long assetEntryId) {
156                    _socialEquityLog.setAssetEntryId(assetEntryId);
157            }
158    
159            /**
160            * Gets the action id of this social equity log.
161            *
162            * @return the action id of this social equity log
163            */
164            public java.lang.String getActionId() {
165                    return _socialEquityLog.getActionId();
166            }
167    
168            /**
169            * Sets the action id of this social equity log.
170            *
171            * @param actionId the action id of this social equity log
172            */
173            public void setActionId(java.lang.String actionId) {
174                    _socialEquityLog.setActionId(actionId);
175            }
176    
177            /**
178            * Gets the action date of this social equity log.
179            *
180            * @return the action date of this social equity log
181            */
182            public int getActionDate() {
183                    return _socialEquityLog.getActionDate();
184            }
185    
186            /**
187            * Sets the action date of this social equity log.
188            *
189            * @param actionDate the action date of this social equity log
190            */
191            public void setActionDate(int actionDate) {
192                    _socialEquityLog.setActionDate(actionDate);
193            }
194    
195            /**
196            * Gets the active of this social equity log.
197            *
198            * @return the active of this social equity log
199            */
200            public boolean getActive() {
201                    return _socialEquityLog.getActive();
202            }
203    
204            /**
205            * Determines whether this social equity log is active.
206            *
207            * @return whether this social equity log is active
208            */
209            public boolean isActive() {
210                    return _socialEquityLog.isActive();
211            }
212    
213            /**
214            * Sets whether this {$entity.humanName} is active.
215            *
216            * @param active the active of this social equity log
217            */
218            public void setActive(boolean active) {
219                    _socialEquityLog.setActive(active);
220            }
221    
222            /**
223            * Gets the expiration of this social equity log.
224            *
225            * @return the expiration of this social equity log
226            */
227            public int getExpiration() {
228                    return _socialEquityLog.getExpiration();
229            }
230    
231            /**
232            * Sets the expiration of this social equity log.
233            *
234            * @param expiration the expiration of this social equity log
235            */
236            public void setExpiration(int expiration) {
237                    _socialEquityLog.setExpiration(expiration);
238            }
239    
240            /**
241            * Gets the type of this social equity log.
242            *
243            * @return the type of this social equity log
244            */
245            public int getType() {
246                    return _socialEquityLog.getType();
247            }
248    
249            /**
250            * Sets the type of this social equity log.
251            *
252            * @param type the type of this social equity log
253            */
254            public void setType(int type) {
255                    _socialEquityLog.setType(type);
256            }
257    
258            /**
259            * Gets the value of this social equity log.
260            *
261            * @return the value of this social equity log
262            */
263            public int getValue() {
264                    return _socialEquityLog.getValue();
265            }
266    
267            /**
268            * Sets the value of this social equity log.
269            *
270            * @param value the value of this social equity log
271            */
272            public void setValue(int value) {
273                    _socialEquityLog.setValue(value);
274            }
275    
276            public boolean isNew() {
277                    return _socialEquityLog.isNew();
278            }
279    
280            public void setNew(boolean n) {
281                    _socialEquityLog.setNew(n);
282            }
283    
284            public boolean isCachedModel() {
285                    return _socialEquityLog.isCachedModel();
286            }
287    
288            public void setCachedModel(boolean cachedModel) {
289                    _socialEquityLog.setCachedModel(cachedModel);
290            }
291    
292            public boolean isEscapedModel() {
293                    return _socialEquityLog.isEscapedModel();
294            }
295    
296            public void setEscapedModel(boolean escapedModel) {
297                    _socialEquityLog.setEscapedModel(escapedModel);
298            }
299    
300            public java.io.Serializable getPrimaryKeyObj() {
301                    return _socialEquityLog.getPrimaryKeyObj();
302            }
303    
304            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
305                    return _socialEquityLog.getExpandoBridge();
306            }
307    
308            public void setExpandoBridgeAttributes(
309                    com.liferay.portal.service.ServiceContext serviceContext) {
310                    _socialEquityLog.setExpandoBridgeAttributes(serviceContext);
311            }
312    
313            public java.lang.Object clone() {
314                    return _socialEquityLog.clone();
315            }
316    
317            public int compareTo(
318                    com.liferay.portlet.social.model.SocialEquityLog socialEquityLog) {
319                    return _socialEquityLog.compareTo(socialEquityLog);
320            }
321    
322            public int hashCode() {
323                    return _socialEquityLog.hashCode();
324            }
325    
326            public com.liferay.portlet.social.model.SocialEquityLog toEscapedModel() {
327                    return _socialEquityLog.toEscapedModel();
328            }
329    
330            public java.lang.String toString() {
331                    return _socialEquityLog.toString();
332            }
333    
334            public java.lang.String toXmlString() {
335                    return _socialEquityLog.toXmlString();
336            }
337    
338            public int getLifespan() {
339                    return _socialEquityLog.getLifespan();
340            }
341    
342            public SocialEquityLog getWrappedSocialEquityLog() {
343                    return _socialEquityLog;
344            }
345    
346            private SocialEquityLog _socialEquityLog;
347    }