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