1
14
15 package com.liferay.portlet.calendar.model;
16
17
18
34 public class CalEventWrapper implements CalEvent {
35 public CalEventWrapper(CalEvent calEvent) {
36 _calEvent = calEvent;
37 }
38
39 public long getPrimaryKey() {
40 return _calEvent.getPrimaryKey();
41 }
42
43 public void setPrimaryKey(long pk) {
44 _calEvent.setPrimaryKey(pk);
45 }
46
47 public java.lang.String getUuid() {
48 return _calEvent.getUuid();
49 }
50
51 public void setUuid(java.lang.String uuid) {
52 _calEvent.setUuid(uuid);
53 }
54
55 public long getEventId() {
56 return _calEvent.getEventId();
57 }
58
59 public void setEventId(long eventId) {
60 _calEvent.setEventId(eventId);
61 }
62
63 public long getGroupId() {
64 return _calEvent.getGroupId();
65 }
66
67 public void setGroupId(long groupId) {
68 _calEvent.setGroupId(groupId);
69 }
70
71 public long getCompanyId() {
72 return _calEvent.getCompanyId();
73 }
74
75 public void setCompanyId(long companyId) {
76 _calEvent.setCompanyId(companyId);
77 }
78
79 public long getUserId() {
80 return _calEvent.getUserId();
81 }
82
83 public void setUserId(long userId) {
84 _calEvent.setUserId(userId);
85 }
86
87 public java.lang.String getUserUuid()
88 throws com.liferay.portal.kernel.exception.SystemException {
89 return _calEvent.getUserUuid();
90 }
91
92 public void setUserUuid(java.lang.String userUuid) {
93 _calEvent.setUserUuid(userUuid);
94 }
95
96 public java.lang.String getUserName() {
97 return _calEvent.getUserName();
98 }
99
100 public void setUserName(java.lang.String userName) {
101 _calEvent.setUserName(userName);
102 }
103
104 public java.util.Date getCreateDate() {
105 return _calEvent.getCreateDate();
106 }
107
108 public void setCreateDate(java.util.Date createDate) {
109 _calEvent.setCreateDate(createDate);
110 }
111
112 public java.util.Date getModifiedDate() {
113 return _calEvent.getModifiedDate();
114 }
115
116 public void setModifiedDate(java.util.Date modifiedDate) {
117 _calEvent.setModifiedDate(modifiedDate);
118 }
119
120 public java.lang.String getTitle() {
121 return _calEvent.getTitle();
122 }
123
124 public void setTitle(java.lang.String title) {
125 _calEvent.setTitle(title);
126 }
127
128 public java.lang.String getDescription() {
129 return _calEvent.getDescription();
130 }
131
132 public void setDescription(java.lang.String description) {
133 _calEvent.setDescription(description);
134 }
135
136 public java.util.Date getStartDate() {
137 return _calEvent.getStartDate();
138 }
139
140 public void setStartDate(java.util.Date startDate) {
141 _calEvent.setStartDate(startDate);
142 }
143
144 public java.util.Date getEndDate() {
145 return _calEvent.getEndDate();
146 }
147
148 public void setEndDate(java.util.Date endDate) {
149 _calEvent.setEndDate(endDate);
150 }
151
152 public int getDurationHour() {
153 return _calEvent.getDurationHour();
154 }
155
156 public void setDurationHour(int durationHour) {
157 _calEvent.setDurationHour(durationHour);
158 }
159
160 public int getDurationMinute() {
161 return _calEvent.getDurationMinute();
162 }
163
164 public void setDurationMinute(int durationMinute) {
165 _calEvent.setDurationMinute(durationMinute);
166 }
167
168 public boolean getAllDay() {
169 return _calEvent.getAllDay();
170 }
171
172 public boolean isAllDay() {
173 return _calEvent.isAllDay();
174 }
175
176 public void setAllDay(boolean allDay) {
177 _calEvent.setAllDay(allDay);
178 }
179
180 public boolean getTimeZoneSensitive() {
181 return _calEvent.getTimeZoneSensitive();
182 }
183
184 public boolean isTimeZoneSensitive() {
185 return _calEvent.isTimeZoneSensitive();
186 }
187
188 public void setTimeZoneSensitive(boolean timeZoneSensitive) {
189 _calEvent.setTimeZoneSensitive(timeZoneSensitive);
190 }
191
192 public java.lang.String getType() {
193 return _calEvent.getType();
194 }
195
196 public void setType(java.lang.String type) {
197 _calEvent.setType(type);
198 }
199
200 public boolean getRepeating() {
201 return _calEvent.getRepeating();
202 }
203
204 public boolean isRepeating() {
205 return _calEvent.isRepeating();
206 }
207
208 public void setRepeating(boolean repeating) {
209 _calEvent.setRepeating(repeating);
210 }
211
212 public java.lang.String getRecurrence() {
213 return _calEvent.getRecurrence();
214 }
215
216 public void setRecurrence(java.lang.String recurrence) {
217 _calEvent.setRecurrence(recurrence);
218 }
219
220 public int getRemindBy() {
221 return _calEvent.getRemindBy();
222 }
223
224 public void setRemindBy(int remindBy) {
225 _calEvent.setRemindBy(remindBy);
226 }
227
228 public int getFirstReminder() {
229 return _calEvent.getFirstReminder();
230 }
231
232 public void setFirstReminder(int firstReminder) {
233 _calEvent.setFirstReminder(firstReminder);
234 }
235
236 public int getSecondReminder() {
237 return _calEvent.getSecondReminder();
238 }
239
240 public void setSecondReminder(int secondReminder) {
241 _calEvent.setSecondReminder(secondReminder);
242 }
243
244 public com.liferay.portlet.calendar.model.CalEvent toEscapedModel() {
245 return _calEvent.toEscapedModel();
246 }
247
248 public boolean isNew() {
249 return _calEvent.isNew();
250 }
251
252 public boolean setNew(boolean n) {
253 return _calEvent.setNew(n);
254 }
255
256 public boolean isCachedModel() {
257 return _calEvent.isCachedModel();
258 }
259
260 public void setCachedModel(boolean cachedModel) {
261 _calEvent.setCachedModel(cachedModel);
262 }
263
264 public boolean isEscapedModel() {
265 return _calEvent.isEscapedModel();
266 }
267
268 public void setEscapedModel(boolean escapedModel) {
269 _calEvent.setEscapedModel(escapedModel);
270 }
271
272 public java.io.Serializable getPrimaryKeyObj() {
273 return _calEvent.getPrimaryKeyObj();
274 }
275
276 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
277 return _calEvent.getExpandoBridge();
278 }
279
280 public void setExpandoBridgeAttributes(
281 com.liferay.portal.service.ServiceContext serviceContext) {
282 _calEvent.setExpandoBridgeAttributes(serviceContext);
283 }
284
285 public java.lang.Object clone() {
286 return _calEvent.clone();
287 }
288
289 public int compareTo(com.liferay.portlet.calendar.model.CalEvent calEvent) {
290 return _calEvent.compareTo(calEvent);
291 }
292
293 public int hashCode() {
294 return _calEvent.hashCode();
295 }
296
297 public java.lang.String toString() {
298 return _calEvent.toString();
299 }
300
301 public java.lang.String toXmlString() {
302 return _calEvent.toXmlString();
303 }
304
305 public com.liferay.portal.kernel.cal.TZSRecurrence getRecurrenceObj() {
306 return _calEvent.getRecurrenceObj();
307 }
308
309 public void setRecurrenceObj(
310 com.liferay.portal.kernel.cal.TZSRecurrence recurrenceObj) {
311 _calEvent.setRecurrenceObj(recurrenceObj);
312 }
313
314 public CalEvent getWrappedCalEvent() {
315 return _calEvent;
316 }
317
318 private CalEvent _calEvent;
319 }