001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.social.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link SocialEquityLog}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       SocialEquityLog
025     * @generated
026     */
027    public class SocialEquityLogWrapper implements SocialEquityLog {
028            public SocialEquityLogWrapper(SocialEquityLog socialEquityLog) {
029                    _socialEquityLog = socialEquityLog;
030            }
031    
032            public long getPrimaryKey() {
033                    return _socialEquityLog.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _socialEquityLog.setPrimaryKey(pk);
038            }
039    
040            public long getEquityLogId() {
041                    return _socialEquityLog.getEquityLogId();
042            }
043    
044            public void setEquityLogId(long equityLogId) {
045                    _socialEquityLog.setEquityLogId(equityLogId);
046            }
047    
048            public long getGroupId() {
049                    return _socialEquityLog.getGroupId();
050            }
051    
052            public void setGroupId(long groupId) {
053                    _socialEquityLog.setGroupId(groupId);
054            }
055    
056            public long getCompanyId() {
057                    return _socialEquityLog.getCompanyId();
058            }
059    
060            public void setCompanyId(long companyId) {
061                    _socialEquityLog.setCompanyId(companyId);
062            }
063    
064            public long getUserId() {
065                    return _socialEquityLog.getUserId();
066            }
067    
068            public void setUserId(long userId) {
069                    _socialEquityLog.setUserId(userId);
070            }
071    
072            public java.lang.String getUserUuid()
073                    throws com.liferay.portal.kernel.exception.SystemException {
074                    return _socialEquityLog.getUserUuid();
075            }
076    
077            public void setUserUuid(java.lang.String userUuid) {
078                    _socialEquityLog.setUserUuid(userUuid);
079            }
080    
081            public long getAssetEntryId() {
082                    return _socialEquityLog.getAssetEntryId();
083            }
084    
085            public void setAssetEntryId(long assetEntryId) {
086                    _socialEquityLog.setAssetEntryId(assetEntryId);
087            }
088    
089            public java.lang.String getActionId() {
090                    return _socialEquityLog.getActionId();
091            }
092    
093            public void setActionId(java.lang.String actionId) {
094                    _socialEquityLog.setActionId(actionId);
095            }
096    
097            public int getActionDate() {
098                    return _socialEquityLog.getActionDate();
099            }
100    
101            public void setActionDate(int actionDate) {
102                    _socialEquityLog.setActionDate(actionDate);
103            }
104    
105            public boolean getActive() {
106                    return _socialEquityLog.getActive();
107            }
108    
109            public boolean isActive() {
110                    return _socialEquityLog.isActive();
111            }
112    
113            public void setActive(boolean active) {
114                    _socialEquityLog.setActive(active);
115            }
116    
117            public int getExpiration() {
118                    return _socialEquityLog.getExpiration();
119            }
120    
121            public void setExpiration(int expiration) {
122                    _socialEquityLog.setExpiration(expiration);
123            }
124    
125            public int getType() {
126                    return _socialEquityLog.getType();
127            }
128    
129            public void setType(int type) {
130                    _socialEquityLog.setType(type);
131            }
132    
133            public int getValue() {
134                    return _socialEquityLog.getValue();
135            }
136    
137            public void setValue(int value) {
138                    _socialEquityLog.setValue(value);
139            }
140    
141            public com.liferay.portlet.social.model.SocialEquityLog toEscapedModel() {
142                    return _socialEquityLog.toEscapedModel();
143            }
144    
145            public boolean isNew() {
146                    return _socialEquityLog.isNew();
147            }
148    
149            public void setNew(boolean n) {
150                    _socialEquityLog.setNew(n);
151            }
152    
153            public boolean isCachedModel() {
154                    return _socialEquityLog.isCachedModel();
155            }
156    
157            public void setCachedModel(boolean cachedModel) {
158                    _socialEquityLog.setCachedModel(cachedModel);
159            }
160    
161            public boolean isEscapedModel() {
162                    return _socialEquityLog.isEscapedModel();
163            }
164    
165            public void setEscapedModel(boolean escapedModel) {
166                    _socialEquityLog.setEscapedModel(escapedModel);
167            }
168    
169            public java.io.Serializable getPrimaryKeyObj() {
170                    return _socialEquityLog.getPrimaryKeyObj();
171            }
172    
173            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
174                    return _socialEquityLog.getExpandoBridge();
175            }
176    
177            public void setExpandoBridgeAttributes(
178                    com.liferay.portal.service.ServiceContext serviceContext) {
179                    _socialEquityLog.setExpandoBridgeAttributes(serviceContext);
180            }
181    
182            public java.lang.Object clone() {
183                    return _socialEquityLog.clone();
184            }
185    
186            public int compareTo(
187                    com.liferay.portlet.social.model.SocialEquityLog socialEquityLog) {
188                    return _socialEquityLog.compareTo(socialEquityLog);
189            }
190    
191            public int hashCode() {
192                    return _socialEquityLog.hashCode();
193            }
194    
195            public java.lang.String toString() {
196                    return _socialEquityLog.toString();
197            }
198    
199            public java.lang.String toXmlString() {
200                    return _socialEquityLog.toXmlString();
201            }
202    
203            public int getLifespan() {
204                    return _socialEquityLog.getLifespan();
205            }
206    
207            public SocialEquityLog getWrappedSocialEquityLog() {
208                    return _socialEquityLog;
209            }
210    
211            private SocialEquityLog _socialEquityLog;
212    }