001
014
015 package com.liferay.portal.model;
016
017
026 public class UserNotificationEventWrapper implements UserNotificationEvent,
027 ModelWrapper<UserNotificationEvent> {
028 public UserNotificationEventWrapper(
029 UserNotificationEvent userNotificationEvent) {
030 _userNotificationEvent = userNotificationEvent;
031 }
032
033 public Class<?> getModelClass() {
034 return UserNotificationEvent.class;
035 }
036
037 public String getModelClassName() {
038 return UserNotificationEvent.class.getName();
039 }
040
041
046 public long getPrimaryKey() {
047 return _userNotificationEvent.getPrimaryKey();
048 }
049
050
055 public void setPrimaryKey(long primaryKey) {
056 _userNotificationEvent.setPrimaryKey(primaryKey);
057 }
058
059
064 public java.lang.String getUuid() {
065 return _userNotificationEvent.getUuid();
066 }
067
068
073 public void setUuid(java.lang.String uuid) {
074 _userNotificationEvent.setUuid(uuid);
075 }
076
077
082 public long getUserNotificationEventId() {
083 return _userNotificationEvent.getUserNotificationEventId();
084 }
085
086
091 public void setUserNotificationEventId(long userNotificationEventId) {
092 _userNotificationEvent.setUserNotificationEventId(userNotificationEventId);
093 }
094
095
100 public long getCompanyId() {
101 return _userNotificationEvent.getCompanyId();
102 }
103
104
109 public void setCompanyId(long companyId) {
110 _userNotificationEvent.setCompanyId(companyId);
111 }
112
113
118 public long getUserId() {
119 return _userNotificationEvent.getUserId();
120 }
121
122
127 public void setUserId(long userId) {
128 _userNotificationEvent.setUserId(userId);
129 }
130
131
137 public java.lang.String getUserUuid()
138 throws com.liferay.portal.kernel.exception.SystemException {
139 return _userNotificationEvent.getUserUuid();
140 }
141
142
147 public void setUserUuid(java.lang.String userUuid) {
148 _userNotificationEvent.setUserUuid(userUuid);
149 }
150
151
156 public java.lang.String getType() {
157 return _userNotificationEvent.getType();
158 }
159
160
165 public void setType(java.lang.String type) {
166 _userNotificationEvent.setType(type);
167 }
168
169
174 public long getTimestamp() {
175 return _userNotificationEvent.getTimestamp();
176 }
177
178
183 public void setTimestamp(long timestamp) {
184 _userNotificationEvent.setTimestamp(timestamp);
185 }
186
187
192 public long getDeliverBy() {
193 return _userNotificationEvent.getDeliverBy();
194 }
195
196
201 public void setDeliverBy(long deliverBy) {
202 _userNotificationEvent.setDeliverBy(deliverBy);
203 }
204
205
210 public java.lang.String getPayload() {
211 return _userNotificationEvent.getPayload();
212 }
213
214
219 public void setPayload(java.lang.String payload) {
220 _userNotificationEvent.setPayload(payload);
221 }
222
223
228 public boolean getArchived() {
229 return _userNotificationEvent.getArchived();
230 }
231
232
237 public boolean isArchived() {
238 return _userNotificationEvent.isArchived();
239 }
240
241
246 public void setArchived(boolean archived) {
247 _userNotificationEvent.setArchived(archived);
248 }
249
250 public boolean isNew() {
251 return _userNotificationEvent.isNew();
252 }
253
254 public void setNew(boolean n) {
255 _userNotificationEvent.setNew(n);
256 }
257
258 public boolean isCachedModel() {
259 return _userNotificationEvent.isCachedModel();
260 }
261
262 public void setCachedModel(boolean cachedModel) {
263 _userNotificationEvent.setCachedModel(cachedModel);
264 }
265
266 public boolean isEscapedModel() {
267 return _userNotificationEvent.isEscapedModel();
268 }
269
270 public java.io.Serializable getPrimaryKeyObj() {
271 return _userNotificationEvent.getPrimaryKeyObj();
272 }
273
274 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
275 _userNotificationEvent.setPrimaryKeyObj(primaryKeyObj);
276 }
277
278 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
279 return _userNotificationEvent.getExpandoBridge();
280 }
281
282 public void setExpandoBridgeAttributes(
283 com.liferay.portal.service.ServiceContext serviceContext) {
284 _userNotificationEvent.setExpandoBridgeAttributes(serviceContext);
285 }
286
287 @Override
288 public java.lang.Object clone() {
289 return new UserNotificationEventWrapper((UserNotificationEvent)_userNotificationEvent.clone());
290 }
291
292 public int compareTo(
293 com.liferay.portal.model.UserNotificationEvent userNotificationEvent) {
294 return _userNotificationEvent.compareTo(userNotificationEvent);
295 }
296
297 @Override
298 public int hashCode() {
299 return _userNotificationEvent.hashCode();
300 }
301
302 public com.liferay.portal.model.CacheModel<com.liferay.portal.model.UserNotificationEvent> toCacheModel() {
303 return _userNotificationEvent.toCacheModel();
304 }
305
306 public com.liferay.portal.model.UserNotificationEvent toEscapedModel() {
307 return new UserNotificationEventWrapper(_userNotificationEvent.toEscapedModel());
308 }
309
310 @Override
311 public java.lang.String toString() {
312 return _userNotificationEvent.toString();
313 }
314
315 public java.lang.String toXmlString() {
316 return _userNotificationEvent.toXmlString();
317 }
318
319 public void persist()
320 throws com.liferay.portal.kernel.exception.SystemException {
321 _userNotificationEvent.persist();
322 }
323
324
327 public UserNotificationEvent getWrappedUserNotificationEvent() {
328 return _userNotificationEvent;
329 }
330
331 public UserNotificationEvent getWrappedModel() {
332 return _userNotificationEvent;
333 }
334
335 public void resetOriginalValues() {
336 _userNotificationEvent.resetOriginalValues();
337 }
338
339 private UserNotificationEvent _userNotificationEvent;
340 }