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
227 public boolean getArchived() {
228 return _userNotificationEvent.getArchived();
229 }
230
231
236 public boolean isArchived() {
237 return _userNotificationEvent.isArchived();
238 }
239
240
245 public void setArchived(boolean archived) {
246 _userNotificationEvent.setArchived(archived);
247 }
248
249 public boolean isNew() {
250 return _userNotificationEvent.isNew();
251 }
252
253 public void setNew(boolean n) {
254 _userNotificationEvent.setNew(n);
255 }
256
257 public boolean isCachedModel() {
258 return _userNotificationEvent.isCachedModel();
259 }
260
261 public void setCachedModel(boolean cachedModel) {
262 _userNotificationEvent.setCachedModel(cachedModel);
263 }
264
265 public boolean isEscapedModel() {
266 return _userNotificationEvent.isEscapedModel();
267 }
268
269 public java.io.Serializable getPrimaryKeyObj() {
270 return _userNotificationEvent.getPrimaryKeyObj();
271 }
272
273 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
274 _userNotificationEvent.setPrimaryKeyObj(primaryKeyObj);
275 }
276
277 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
278 return _userNotificationEvent.getExpandoBridge();
279 }
280
281 public void setExpandoBridgeAttributes(
282 com.liferay.portal.service.ServiceContext serviceContext) {
283 _userNotificationEvent.setExpandoBridgeAttributes(serviceContext);
284 }
285
286 @Override
287 public java.lang.Object clone() {
288 return new UserNotificationEventWrapper((UserNotificationEvent)_userNotificationEvent.clone());
289 }
290
291 public int compareTo(
292 com.liferay.portal.model.UserNotificationEvent userNotificationEvent) {
293 return _userNotificationEvent.compareTo(userNotificationEvent);
294 }
295
296 @Override
297 public int hashCode() {
298 return _userNotificationEvent.hashCode();
299 }
300
301 public com.liferay.portal.model.CacheModel<com.liferay.portal.model.UserNotificationEvent> toCacheModel() {
302 return _userNotificationEvent.toCacheModel();
303 }
304
305 public com.liferay.portal.model.UserNotificationEvent toEscapedModel() {
306 return new UserNotificationEventWrapper(_userNotificationEvent.toEscapedModel());
307 }
308
309 @Override
310 public java.lang.String toString() {
311 return _userNotificationEvent.toString();
312 }
313
314 public java.lang.String toXmlString() {
315 return _userNotificationEvent.toXmlString();
316 }
317
318 public void persist()
319 throws com.liferay.portal.kernel.exception.SystemException {
320 _userNotificationEvent.persist();
321 }
322
323 public UserNotificationEvent getWrappedUserNotificationEvent() {
324 return _userNotificationEvent;
325 }
326
327 public void resetOriginalValues() {
328 _userNotificationEvent.resetOriginalValues();
329 }
330
331 private UserNotificationEvent _userNotificationEvent;
332 }