001
014
015 package com.liferay.portlet.social.model;
016
017
026 public class SocialEquityAssetEntryWrapper implements SocialEquityAssetEntry {
027 public SocialEquityAssetEntryWrapper(
028 SocialEquityAssetEntry socialEquityAssetEntry) {
029 _socialEquityAssetEntry = socialEquityAssetEntry;
030 }
031
032
037 public long getPrimaryKey() {
038 return _socialEquityAssetEntry.getPrimaryKey();
039 }
040
041
046 public void setPrimaryKey(long pk) {
047 _socialEquityAssetEntry.setPrimaryKey(pk);
048 }
049
050
055 public long getEquityAssetEntryId() {
056 return _socialEquityAssetEntry.getEquityAssetEntryId();
057 }
058
059
064 public void setEquityAssetEntryId(long equityAssetEntryId) {
065 _socialEquityAssetEntry.setEquityAssetEntryId(equityAssetEntryId);
066 }
067
068
073 public long getGroupId() {
074 return _socialEquityAssetEntry.getGroupId();
075 }
076
077
082 public void setGroupId(long groupId) {
083 _socialEquityAssetEntry.setGroupId(groupId);
084 }
085
086
091 public long getCompanyId() {
092 return _socialEquityAssetEntry.getCompanyId();
093 }
094
095
100 public void setCompanyId(long companyId) {
101 _socialEquityAssetEntry.setCompanyId(companyId);
102 }
103
104
109 public long getUserId() {
110 return _socialEquityAssetEntry.getUserId();
111 }
112
113
118 public void setUserId(long userId) {
119 _socialEquityAssetEntry.setUserId(userId);
120 }
121
122
128 public java.lang.String getUserUuid()
129 throws com.liferay.portal.kernel.exception.SystemException {
130 return _socialEquityAssetEntry.getUserUuid();
131 }
132
133
138 public void setUserUuid(java.lang.String userUuid) {
139 _socialEquityAssetEntry.setUserUuid(userUuid);
140 }
141
142
147 public long getAssetEntryId() {
148 return _socialEquityAssetEntry.getAssetEntryId();
149 }
150
151
156 public void setAssetEntryId(long assetEntryId) {
157 _socialEquityAssetEntry.setAssetEntryId(assetEntryId);
158 }
159
160
165 public double getInformationK() {
166 return _socialEquityAssetEntry.getInformationK();
167 }
168
169
174 public void setInformationK(double informationK) {
175 _socialEquityAssetEntry.setInformationK(informationK);
176 }
177
178
183 public double getInformationB() {
184 return _socialEquityAssetEntry.getInformationB();
185 }
186
187
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 }