1
14
15 package com.liferay.portlet.social.model;
16
17
18
34 public class SocialEquityAssetEntryWrapper implements SocialEquityAssetEntry {
35 public SocialEquityAssetEntryWrapper(
36 SocialEquityAssetEntry socialEquityAssetEntry) {
37 _socialEquityAssetEntry = socialEquityAssetEntry;
38 }
39
40 public long getPrimaryKey() {
41 return _socialEquityAssetEntry.getPrimaryKey();
42 }
43
44 public void setPrimaryKey(long pk) {
45 _socialEquityAssetEntry.setPrimaryKey(pk);
46 }
47
48 public long getEquityAssetEntryId() {
49 return _socialEquityAssetEntry.getEquityAssetEntryId();
50 }
51
52 public void setEquityAssetEntryId(long equityAssetEntryId) {
53 _socialEquityAssetEntry.setEquityAssetEntryId(equityAssetEntryId);
54 }
55
56 public long getGroupId() {
57 return _socialEquityAssetEntry.getGroupId();
58 }
59
60 public void setGroupId(long groupId) {
61 _socialEquityAssetEntry.setGroupId(groupId);
62 }
63
64 public long getCompanyId() {
65 return _socialEquityAssetEntry.getCompanyId();
66 }
67
68 public void setCompanyId(long companyId) {
69 _socialEquityAssetEntry.setCompanyId(companyId);
70 }
71
72 public long getUserId() {
73 return _socialEquityAssetEntry.getUserId();
74 }
75
76 public void setUserId(long userId) {
77 _socialEquityAssetEntry.setUserId(userId);
78 }
79
80 public java.lang.String getUserUuid()
81 throws com.liferay.portal.kernel.exception.SystemException {
82 return _socialEquityAssetEntry.getUserUuid();
83 }
84
85 public void setUserUuid(java.lang.String userUuid) {
86 _socialEquityAssetEntry.setUserUuid(userUuid);
87 }
88
89 public long getAssetEntryId() {
90 return _socialEquityAssetEntry.getAssetEntryId();
91 }
92
93 public void setAssetEntryId(long assetEntryId) {
94 _socialEquityAssetEntry.setAssetEntryId(assetEntryId);
95 }
96
97 public double getInformationK() {
98 return _socialEquityAssetEntry.getInformationK();
99 }
100
101 public void setInformationK(double informationK) {
102 _socialEquityAssetEntry.setInformationK(informationK);
103 }
104
105 public double getInformationB() {
106 return _socialEquityAssetEntry.getInformationB();
107 }
108
109 public void setInformationB(double informationB) {
110 _socialEquityAssetEntry.setInformationB(informationB);
111 }
112
113 public double getInformationEquity() {
114 return _socialEquityAssetEntry.getInformationEquity();
115 }
116
117 public void setInformationEquity(double informationEquity) {
118 _socialEquityAssetEntry.setInformationEquity(informationEquity);
119 }
120
121 public com.liferay.portlet.social.model.SocialEquityAssetEntry toEscapedModel() {
122 return _socialEquityAssetEntry.toEscapedModel();
123 }
124
125 public boolean isNew() {
126 return _socialEquityAssetEntry.isNew();
127 }
128
129 public boolean setNew(boolean n) {
130 return _socialEquityAssetEntry.setNew(n);
131 }
132
133 public boolean isCachedModel() {
134 return _socialEquityAssetEntry.isCachedModel();
135 }
136
137 public void setCachedModel(boolean cachedModel) {
138 _socialEquityAssetEntry.setCachedModel(cachedModel);
139 }
140
141 public boolean isEscapedModel() {
142 return _socialEquityAssetEntry.isEscapedModel();
143 }
144
145 public void setEscapedModel(boolean escapedModel) {
146 _socialEquityAssetEntry.setEscapedModel(escapedModel);
147 }
148
149 public java.io.Serializable getPrimaryKeyObj() {
150 return _socialEquityAssetEntry.getPrimaryKeyObj();
151 }
152
153 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
154 return _socialEquityAssetEntry.getExpandoBridge();
155 }
156
157 public void setExpandoBridgeAttributes(
158 com.liferay.portal.service.ServiceContext serviceContext) {
159 _socialEquityAssetEntry.setExpandoBridgeAttributes(serviceContext);
160 }
161
162 public java.lang.Object clone() {
163 return _socialEquityAssetEntry.clone();
164 }
165
166 public int compareTo(
167 com.liferay.portlet.social.model.SocialEquityAssetEntry socialEquityAssetEntry) {
168 return _socialEquityAssetEntry.compareTo(socialEquityAssetEntry);
169 }
170
171 public int hashCode() {
172 return _socialEquityAssetEntry.hashCode();
173 }
174
175 public java.lang.String toString() {
176 return _socialEquityAssetEntry.toString();
177 }
178
179 public java.lang.String toXmlString() {
180 return _socialEquityAssetEntry.toXmlString();
181 }
182
183 public SocialEquityAssetEntry getWrappedSocialEquityAssetEntry() {
184 return _socialEquityAssetEntry;
185 }
186
187 private SocialEquityAssetEntry _socialEquityAssetEntry;
188 }