001
014
015 package com.liferay.portlet.calendar.model;
016
017
026 public class CalEventWrapper implements CalEvent {
027 public CalEventWrapper(CalEvent calEvent) {
028 _calEvent = calEvent;
029 }
030
031 public Class<?> getModelClass() {
032 return CalEvent.class;
033 }
034
035 public String getModelClassName() {
036 return CalEvent.class.getName();
037 }
038
039
044 public long getPrimaryKey() {
045 return _calEvent.getPrimaryKey();
046 }
047
048
053 public void setPrimaryKey(long primaryKey) {
054 _calEvent.setPrimaryKey(primaryKey);
055 }
056
057
062 public java.lang.String getUuid() {
063 return _calEvent.getUuid();
064 }
065
066
071 public void setUuid(java.lang.String uuid) {
072 _calEvent.setUuid(uuid);
073 }
074
075
080 public long getEventId() {
081 return _calEvent.getEventId();
082 }
083
084
089 public void setEventId(long eventId) {
090 _calEvent.setEventId(eventId);
091 }
092
093
098 public long getGroupId() {
099 return _calEvent.getGroupId();
100 }
101
102
107 public void setGroupId(long groupId) {
108 _calEvent.setGroupId(groupId);
109 }
110
111
116 public long getCompanyId() {
117 return _calEvent.getCompanyId();
118 }
119
120
125 public void setCompanyId(long companyId) {
126 _calEvent.setCompanyId(companyId);
127 }
128
129
134 public long getUserId() {
135 return _calEvent.getUserId();
136 }
137
138
143 public void setUserId(long userId) {
144 _calEvent.setUserId(userId);
145 }
146
147
153 public java.lang.String getUserUuid()
154 throws com.liferay.portal.kernel.exception.SystemException {
155 return _calEvent.getUserUuid();
156 }
157
158
163 public void setUserUuid(java.lang.String userUuid) {
164 _calEvent.setUserUuid(userUuid);
165 }
166
167
172 public java.lang.String getUserName() {
173 return _calEvent.getUserName();
174 }
175
176
181 public void setUserName(java.lang.String userName) {
182 _calEvent.setUserName(userName);
183 }
184
185
190 public java.util.Date getCreateDate() {
191 return _calEvent.getCreateDate();
192 }
193
194
199 public void setCreateDate(java.util.Date createDate) {
200 _calEvent.setCreateDate(createDate);
201 }
202
203
208 public java.util.Date getModifiedDate() {
209 return _calEvent.getModifiedDate();
210 }
211
212
217 public void setModifiedDate(java.util.Date modifiedDate) {
218 _calEvent.setModifiedDate(modifiedDate);
219 }
220
221
226 public java.lang.String getTitle() {
227 return _calEvent.getTitle();
228 }
229
230
235 public void setTitle(java.lang.String title) {
236 _calEvent.setTitle(title);
237 }
238
239
244 public java.lang.String getDescription() {
245 return _calEvent.getDescription();
246 }
247
248
253 public void setDescription(java.lang.String description) {
254 _calEvent.setDescription(description);
255 }
256
257
262 public java.lang.String getLocation() {
263 return _calEvent.getLocation();
264 }
265
266
271 public void setLocation(java.lang.String location) {
272 _calEvent.setLocation(location);
273 }
274
275
280 public java.util.Date getStartDate() {
281 return _calEvent.getStartDate();
282 }
283
284
289 public void setStartDate(java.util.Date startDate) {
290 _calEvent.setStartDate(startDate);
291 }
292
293
298 public java.util.Date getEndDate() {
299 return _calEvent.getEndDate();
300 }
301
302
307 public void setEndDate(java.util.Date endDate) {
308 _calEvent.setEndDate(endDate);
309 }
310
311
316 public int getDurationHour() {
317 return _calEvent.getDurationHour();
318 }
319
320
325 public void setDurationHour(int durationHour) {
326 _calEvent.setDurationHour(durationHour);
327 }
328
329
334 public int getDurationMinute() {
335 return _calEvent.getDurationMinute();
336 }
337
338
343 public void setDurationMinute(int durationMinute) {
344 _calEvent.setDurationMinute(durationMinute);
345 }
346
347
352 public boolean getAllDay() {
353 return _calEvent.getAllDay();
354 }
355
356
361 public boolean isAllDay() {
362 return _calEvent.isAllDay();
363 }
364
365
370 public void setAllDay(boolean allDay) {
371 _calEvent.setAllDay(allDay);
372 }
373
374
379 public boolean getTimeZoneSensitive() {
380 return _calEvent.getTimeZoneSensitive();
381 }
382
383
388 public boolean isTimeZoneSensitive() {
389 return _calEvent.isTimeZoneSensitive();
390 }
391
392
397 public void setTimeZoneSensitive(boolean timeZoneSensitive) {
398 _calEvent.setTimeZoneSensitive(timeZoneSensitive);
399 }
400
401
406 public java.lang.String getType() {
407 return _calEvent.getType();
408 }
409
410
415 public void setType(java.lang.String type) {
416 _calEvent.setType(type);
417 }
418
419
424 public boolean getRepeating() {
425 return _calEvent.getRepeating();
426 }
427
428
433 public boolean isRepeating() {
434 return _calEvent.isRepeating();
435 }
436
437
442 public void setRepeating(boolean repeating) {
443 _calEvent.setRepeating(repeating);
444 }
445
446
451 public java.lang.String getRecurrence() {
452 return _calEvent.getRecurrence();
453 }
454
455
460 public void setRecurrence(java.lang.String recurrence) {
461 _calEvent.setRecurrence(recurrence);
462 }
463
464
469 public int getRemindBy() {
470 return _calEvent.getRemindBy();
471 }
472
473
478 public void setRemindBy(int remindBy) {
479 _calEvent.setRemindBy(remindBy);
480 }
481
482
487 public int getFirstReminder() {
488 return _calEvent.getFirstReminder();
489 }
490
491
496 public void setFirstReminder(int firstReminder) {
497 _calEvent.setFirstReminder(firstReminder);
498 }
499
500
505 public int getSecondReminder() {
506 return _calEvent.getSecondReminder();
507 }
508
509
514 public void setSecondReminder(int secondReminder) {
515 _calEvent.setSecondReminder(secondReminder);
516 }
517
518 public boolean isNew() {
519 return _calEvent.isNew();
520 }
521
522 public void setNew(boolean n) {
523 _calEvent.setNew(n);
524 }
525
526 public boolean isCachedModel() {
527 return _calEvent.isCachedModel();
528 }
529
530 public void setCachedModel(boolean cachedModel) {
531 _calEvent.setCachedModel(cachedModel);
532 }
533
534 public boolean isEscapedModel() {
535 return _calEvent.isEscapedModel();
536 }
537
538 public java.io.Serializable getPrimaryKeyObj() {
539 return _calEvent.getPrimaryKeyObj();
540 }
541
542 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
543 _calEvent.setPrimaryKeyObj(primaryKeyObj);
544 }
545
546 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
547 return _calEvent.getExpandoBridge();
548 }
549
550 public void setExpandoBridgeAttributes(
551 com.liferay.portal.service.ServiceContext serviceContext) {
552 _calEvent.setExpandoBridgeAttributes(serviceContext);
553 }
554
555 @Override
556 public java.lang.Object clone() {
557 return new CalEventWrapper((CalEvent)_calEvent.clone());
558 }
559
560 public int compareTo(com.liferay.portlet.calendar.model.CalEvent calEvent) {
561 return _calEvent.compareTo(calEvent);
562 }
563
564 @Override
565 public int hashCode() {
566 return _calEvent.hashCode();
567 }
568
569 public com.liferay.portal.model.CacheModel<com.liferay.portlet.calendar.model.CalEvent> toCacheModel() {
570 return _calEvent.toCacheModel();
571 }
572
573 public com.liferay.portlet.calendar.model.CalEvent toEscapedModel() {
574 return new CalEventWrapper(_calEvent.toEscapedModel());
575 }
576
577 @Override
578 public java.lang.String toString() {
579 return _calEvent.toString();
580 }
581
582 public java.lang.String toXmlString() {
583 return _calEvent.toXmlString();
584 }
585
586 public void persist()
587 throws com.liferay.portal.kernel.exception.SystemException {
588 _calEvent.persist();
589 }
590
591 public com.liferay.portal.kernel.cal.TZSRecurrence getRecurrenceObj() {
592 return _calEvent.getRecurrenceObj();
593 }
594
595 public void setRecurrenceObj(
596 com.liferay.portal.kernel.cal.TZSRecurrence recurrenceObj) {
597 _calEvent.setRecurrenceObj(recurrenceObj);
598 }
599
600 public CalEvent getWrappedCalEvent() {
601 return _calEvent;
602 }
603
604 public void resetOriginalValues() {
605 _calEvent.resetOriginalValues();
606 }
607
608 private CalEvent _calEvent;
609 }