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