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     * <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            public long getPrimaryKey() {
032                    return _socialEquityLog.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _socialEquityLog.setPrimaryKey(pk);
037            }
038    
039            public long getEquityLogId() {
040                    return _socialEquityLog.getEquityLogId();
041            }
042    
043            public void setEquityLogId(long equityLogId) {
044                    _socialEquityLog.setEquityLogId(equityLogId);
045            }
046    
047            public long getGroupId() {
048                    return _socialEquityLog.getGroupId();
049            }
050    
051            public void setGroupId(long groupId) {
052                    _socialEquityLog.setGroupId(groupId);
053            }
054    
055            public long getCompanyId() {
056                    return _socialEquityLog.getCompanyId();
057            }
058    
059            public void setCompanyId(long companyId) {
060                    _socialEquityLog.setCompanyId(companyId);
061            }
062    
063            public long getUserId() {
064                    return _socialEquityLog.getUserId();
065            }
066    
067            public void setUserId(long userId) {
068                    _socialEquityLog.setUserId(userId);
069            }
070    
071            public java.lang.String getUserUuid()
072                    throws com.liferay.portal.kernel.exception.SystemException {
073                    return _socialEquityLog.getUserUuid();
074            }
075    
076            public void setUserUuid(java.lang.String userUuid) {
077                    _socialEquityLog.setUserUuid(userUuid);
078            }
079    
080            public long getAssetEntryId() {
081                    return _socialEquityLog.getAssetEntryId();
082            }
083    
084            public void setAssetEntryId(long assetEntryId) {
085                    _socialEquityLog.setAssetEntryId(assetEntryId);
086            }
087    
088            public java.lang.String getActionId() {
089                    return _socialEquityLog.getActionId();
090            }
091    
092            public void setActionId(java.lang.String actionId) {
093                    _socialEquityLog.setActionId(actionId);
094            }
095    
096            public int getActionDate() {
097                    return _socialEquityLog.getActionDate();
098            }
099    
100            public void setActionDate(int actionDate) {
101                    _socialEquityLog.setActionDate(actionDate);
102            }
103    
104            public boolean getActive() {
105                    return _socialEquityLog.getActive();
106            }
107    
108            public boolean isActive() {
109                    return _socialEquityLog.isActive();
110            }
111    
112            public void setActive(boolean active) {
113                    _socialEquityLog.setActive(active);
114            }
115    
116            public int getExpiration() {
117                    return _socialEquityLog.getExpiration();
118            }
119    
120            public void setExpiration(int expiration) {
121                    _socialEquityLog.setExpiration(expiration);
122            }
123    
124            public int getType() {
125                    return _socialEquityLog.getType();
126            }
127    
128            public void setType(int type) {
129                    _socialEquityLog.setType(type);
130            }
131    
132            public int getValue() {
133                    return _socialEquityLog.getValue();
134            }
135    
136            public void setValue(int value) {
137                    _socialEquityLog.setValue(value);
138            }
139    
140            public com.liferay.portlet.social.model.SocialEquityLog toEscapedModel() {
141                    return _socialEquityLog.toEscapedModel();
142            }
143    
144            public boolean isNew() {
145                    return _socialEquityLog.isNew();
146            }
147    
148            public void setNew(boolean n) {
149                    _socialEquityLog.setNew(n);
150            }
151    
152            public boolean isCachedModel() {
153                    return _socialEquityLog.isCachedModel();
154            }
155    
156            public void setCachedModel(boolean cachedModel) {
157                    _socialEquityLog.setCachedModel(cachedModel);
158            }
159    
160            public boolean isEscapedModel() {
161                    return _socialEquityLog.isEscapedModel();
162            }
163    
164            public void setEscapedModel(boolean escapedModel) {
165                    _socialEquityLog.setEscapedModel(escapedModel);
166            }
167    
168            public java.io.Serializable getPrimaryKeyObj() {
169                    return _socialEquityLog.getPrimaryKeyObj();
170            }
171    
172            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
173                    return _socialEquityLog.getExpandoBridge();
174            }
175    
176            public void setExpandoBridgeAttributes(
177                    com.liferay.portal.service.ServiceContext serviceContext) {
178                    _socialEquityLog.setExpandoBridgeAttributes(serviceContext);
179            }
180    
181            public java.lang.Object clone() {
182                    return _socialEquityLog.clone();
183            }
184    
185            public int compareTo(
186                    com.liferay.portlet.social.model.SocialEquityLog socialEquityLog) {
187                    return _socialEquityLog.compareTo(socialEquityLog);
188            }
189    
190            public int hashCode() {
191                    return _socialEquityLog.hashCode();
192            }
193    
194            public java.lang.String toString() {
195                    return _socialEquityLog.toString();
196            }
197    
198            public java.lang.String toXmlString() {
199                    return _socialEquityLog.toXmlString();
200            }
201    
202            public int getLifespan() {
203                    return _socialEquityLog.getLifespan();
204            }
205    
206            public SocialEquityLog getWrappedSocialEquityLog() {
207                    return _socialEquityLog;
208            }
209    
210            private SocialEquityLog _socialEquityLog;
211    }