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 public long getPrimaryKey() {
033 return _socialEquityAssetEntry.getPrimaryKey();
034 }
035
036 public void setPrimaryKey(long pk) {
037 _socialEquityAssetEntry.setPrimaryKey(pk);
038 }
039
040 public long getEquityAssetEntryId() {
041 return _socialEquityAssetEntry.getEquityAssetEntryId();
042 }
043
044 public void setEquityAssetEntryId(long equityAssetEntryId) {
045 _socialEquityAssetEntry.setEquityAssetEntryId(equityAssetEntryId);
046 }
047
048 public long getGroupId() {
049 return _socialEquityAssetEntry.getGroupId();
050 }
051
052 public void setGroupId(long groupId) {
053 _socialEquityAssetEntry.setGroupId(groupId);
054 }
055
056 public long getCompanyId() {
057 return _socialEquityAssetEntry.getCompanyId();
058 }
059
060 public void setCompanyId(long companyId) {
061 _socialEquityAssetEntry.setCompanyId(companyId);
062 }
063
064 public long getUserId() {
065 return _socialEquityAssetEntry.getUserId();
066 }
067
068 public void setUserId(long userId) {
069 _socialEquityAssetEntry.setUserId(userId);
070 }
071
072 public java.lang.String getUserUuid()
073 throws com.liferay.portal.kernel.exception.SystemException {
074 return _socialEquityAssetEntry.getUserUuid();
075 }
076
077 public void setUserUuid(java.lang.String userUuid) {
078 _socialEquityAssetEntry.setUserUuid(userUuid);
079 }
080
081 public long getAssetEntryId() {
082 return _socialEquityAssetEntry.getAssetEntryId();
083 }
084
085 public void setAssetEntryId(long assetEntryId) {
086 _socialEquityAssetEntry.setAssetEntryId(assetEntryId);
087 }
088
089 public double getInformationK() {
090 return _socialEquityAssetEntry.getInformationK();
091 }
092
093 public void setInformationK(double informationK) {
094 _socialEquityAssetEntry.setInformationK(informationK);
095 }
096
097 public double getInformationB() {
098 return _socialEquityAssetEntry.getInformationB();
099 }
100
101 public void setInformationB(double informationB) {
102 _socialEquityAssetEntry.setInformationB(informationB);
103 }
104
105 public com.liferay.portlet.social.model.SocialEquityAssetEntry toEscapedModel() {
106 return _socialEquityAssetEntry.toEscapedModel();
107 }
108
109 public boolean isNew() {
110 return _socialEquityAssetEntry.isNew();
111 }
112
113 public void setNew(boolean n) {
114 _socialEquityAssetEntry.setNew(n);
115 }
116
117 public boolean isCachedModel() {
118 return _socialEquityAssetEntry.isCachedModel();
119 }
120
121 public void setCachedModel(boolean cachedModel) {
122 _socialEquityAssetEntry.setCachedModel(cachedModel);
123 }
124
125 public boolean isEscapedModel() {
126 return _socialEquityAssetEntry.isEscapedModel();
127 }
128
129 public void setEscapedModel(boolean escapedModel) {
130 _socialEquityAssetEntry.setEscapedModel(escapedModel);
131 }
132
133 public java.io.Serializable getPrimaryKeyObj() {
134 return _socialEquityAssetEntry.getPrimaryKeyObj();
135 }
136
137 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
138 return _socialEquityAssetEntry.getExpandoBridge();
139 }
140
141 public void setExpandoBridgeAttributes(
142 com.liferay.portal.service.ServiceContext serviceContext) {
143 _socialEquityAssetEntry.setExpandoBridgeAttributes(serviceContext);
144 }
145
146 public java.lang.Object clone() {
147 return _socialEquityAssetEntry.clone();
148 }
149
150 public int compareTo(
151 com.liferay.portlet.social.model.SocialEquityAssetEntry socialEquityAssetEntry) {
152 return _socialEquityAssetEntry.compareTo(socialEquityAssetEntry);
153 }
154
155 public int hashCode() {
156 return _socialEquityAssetEntry.hashCode();
157 }
158
159 public java.lang.String toString() {
160 return _socialEquityAssetEntry.toString();
161 }
162
163 public java.lang.String toXmlString() {
164 return _socialEquityAssetEntry.toXmlString();
165 }
166
167 public SocialEquityAssetEntry getWrappedSocialEquityAssetEntry() {
168 return _socialEquityAssetEntry;
169 }
170
171 private SocialEquityAssetEntry _socialEquityAssetEntry;
172 }