001
014
015 package com.liferay.portal.model;
016
017
026 public class UserNotificationEventWrapper implements UserNotificationEvent {
027 public UserNotificationEventWrapper(
028 UserNotificationEvent userNotificationEvent) {
029 _userNotificationEvent = userNotificationEvent;
030 }
031
032 public Class<?> getModelClass() {
033 return UserNotificationEvent.class;
034 }
035
036 public String getModelClassName() {
037 return UserNotificationEvent.class.getName();
038 }
039
040
045 public long getPrimaryKey() {
046 return _userNotificationEvent.getPrimaryKey();
047 }
048
049
054 public void setPrimaryKey(long primaryKey) {
055 _userNotificationEvent.setPrimaryKey(primaryKey);
056 }
057
058
063 public java.lang.String getUuid() {
064 return _userNotificationEvent.getUuid();
065 }
066
067
072 public void setUuid(java.lang.String uuid) {
073 _userNotificationEvent.setUuid(uuid);
074 }
075
076
081 public long getUserNotificationEventId() {
082 return _userNotificationEvent.getUserNotificationEventId();
083 }
084
085
090 public void setUserNotificationEventId(long userNotificationEventId) {
091 _userNotificationEvent.setUserNotificationEventId(userNotificationEventId);
092 }
093
094
099 public long getCompanyId() {
100 return _userNotificationEvent.getCompanyId();
101 }
102
103
108 public void setCompanyId(long companyId) {
109 _userNotificationEvent.setCompanyId(companyId);
110 }
111
112
117 public long getUserId() {
118 return _userNotificationEvent.getUserId();
119 }
120
121
126 public void setUserId(long userId) {
127 _userNotificationEvent.setUserId(userId);
128 }
129
130
136 public java.lang.String getUserUuid()
137 throws com.liferay.portal.kernel.exception.SystemException {
138 return _userNotificationEvent.getUserUuid();
139 }
140
141
146 public void setUserUuid(java.lang.String userUuid) {
147 _userNotificationEvent.setUserUuid(userUuid);
148 }
149
150
155 public java.lang.String getType() {
156 return _userNotificationEvent.getType();
157 }
158
159
164 public void setType(java.lang.String type) {
165 _userNotificationEvent.setType(type);
166 }
167
168
173 public long getTimestamp() {
174 return _userNotificationEvent.getTimestamp();
175 }
176
177
182 public void setTimestamp(long timestamp) {
183 _userNotificationEvent.setTimestamp(timestamp);
184 }
185
186
191 public long getDeliverBy() {
192 return _userNotificationEvent.getDeliverBy();
193 }
194
195
200 public void setDeliverBy(long deliverBy) {
201 _userNotificationEvent.setDeliverBy(deliverBy);
202 }
203
204
209 public java.lang.String getPayload() {
210 return _userNotificationEvent.getPayload();
211 }
212
213
218 public void setPayload(java.lang.String payload) {
219 _userNotificationEvent.setPayload(payload);
220 }
221
222 public boolean isNew() {
223 return _userNotificationEvent.isNew();
224 }
225
226 public void setNew(boolean n) {
227 _userNotificationEvent.setNew(n);
228 }
229
230 public boolean isCachedModel() {
231 return _userNotificationEvent.isCachedModel();
232 }
233
234 public void setCachedModel(boolean cachedModel) {
235 _userNotificationEvent.setCachedModel(cachedModel);
236 }
237
238 public boolean isEscapedModel() {
239 return _userNotificationEvent.isEscapedModel();
240 }
241
242 public void setEscapedModel(boolean escapedModel) {
243 _userNotificationEvent.setEscapedModel(escapedModel);
244 }
245
246 public java.io.Serializable getPrimaryKeyObj() {
247 return _userNotificationEvent.getPrimaryKeyObj();
248 }
249
250 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
251 _userNotificationEvent.setPrimaryKeyObj(primaryKeyObj);
252 }
253
254 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
255 return _userNotificationEvent.getExpandoBridge();
256 }
257
258 public void setExpandoBridgeAttributes(
259 com.liferay.portal.service.ServiceContext serviceContext) {
260 _userNotificationEvent.setExpandoBridgeAttributes(serviceContext);
261 }
262
263 @Override
264 public java.lang.Object clone() {
265 return new UserNotificationEventWrapper((UserNotificationEvent)_userNotificationEvent.clone());
266 }
267
268 public int compareTo(
269 com.liferay.portal.model.UserNotificationEvent userNotificationEvent) {
270 return _userNotificationEvent.compareTo(userNotificationEvent);
271 }
272
273 @Override
274 public int hashCode() {
275 return _userNotificationEvent.hashCode();
276 }
277
278 public com.liferay.portal.model.CacheModel<com.liferay.portal.model.UserNotificationEvent> toCacheModel() {
279 return _userNotificationEvent.toCacheModel();
280 }
281
282 public com.liferay.portal.model.UserNotificationEvent toEscapedModel() {
283 return new UserNotificationEventWrapper(_userNotificationEvent.toEscapedModel());
284 }
285
286 @Override
287 public java.lang.String toString() {
288 return _userNotificationEvent.toString();
289 }
290
291 public java.lang.String toXmlString() {
292 return _userNotificationEvent.toXmlString();
293 }
294
295 public void persist()
296 throws com.liferay.portal.kernel.exception.SystemException {
297 _userNotificationEvent.persist();
298 }
299
300 public UserNotificationEvent getWrappedUserNotificationEvent() {
301 return _userNotificationEvent;
302 }
303
304 public void resetOriginalValues() {
305 _userNotificationEvent.resetOriginalValues();
306 }
307
308 private UserNotificationEvent _userNotificationEvent;
309 }