001
014
015 package com.liferay.portlet.calendar.model;
016
017
018
027 public class CalEventWrapper implements CalEvent {
028 public CalEventWrapper(CalEvent calEvent) {
029 _calEvent = calEvent;
030 }
031
032 public long getPrimaryKey() {
033 return _calEvent.getPrimaryKey();
034 }
035
036 public void setPrimaryKey(long pk) {
037 _calEvent.setPrimaryKey(pk);
038 }
039
040 public java.lang.String getUuid() {
041 return _calEvent.getUuid();
042 }
043
044 public void setUuid(java.lang.String uuid) {
045 _calEvent.setUuid(uuid);
046 }
047
048 public long getEventId() {
049 return _calEvent.getEventId();
050 }
051
052 public void setEventId(long eventId) {
053 _calEvent.setEventId(eventId);
054 }
055
056 public long getGroupId() {
057 return _calEvent.getGroupId();
058 }
059
060 public void setGroupId(long groupId) {
061 _calEvent.setGroupId(groupId);
062 }
063
064 public long getCompanyId() {
065 return _calEvent.getCompanyId();
066 }
067
068 public void setCompanyId(long companyId) {
069 _calEvent.setCompanyId(companyId);
070 }
071
072 public long getUserId() {
073 return _calEvent.getUserId();
074 }
075
076 public void setUserId(long userId) {
077 _calEvent.setUserId(userId);
078 }
079
080 public java.lang.String getUserUuid()
081 throws com.liferay.portal.kernel.exception.SystemException {
082 return _calEvent.getUserUuid();
083 }
084
085 public void setUserUuid(java.lang.String userUuid) {
086 _calEvent.setUserUuid(userUuid);
087 }
088
089 public java.lang.String getUserName() {
090 return _calEvent.getUserName();
091 }
092
093 public void setUserName(java.lang.String userName) {
094 _calEvent.setUserName(userName);
095 }
096
097 public java.util.Date getCreateDate() {
098 return _calEvent.getCreateDate();
099 }
100
101 public void setCreateDate(java.util.Date createDate) {
102 _calEvent.setCreateDate(createDate);
103 }
104
105 public java.util.Date getModifiedDate() {
106 return _calEvent.getModifiedDate();
107 }
108
109 public void setModifiedDate(java.util.Date modifiedDate) {
110 _calEvent.setModifiedDate(modifiedDate);
111 }
112
113 public java.lang.String getTitle() {
114 return _calEvent.getTitle();
115 }
116
117 public void setTitle(java.lang.String title) {
118 _calEvent.setTitle(title);
119 }
120
121 public java.lang.String getDescription() {
122 return _calEvent.getDescription();
123 }
124
125 public void setDescription(java.lang.String description) {
126 _calEvent.setDescription(description);
127 }
128
129 public java.util.Date getStartDate() {
130 return _calEvent.getStartDate();
131 }
132
133 public void setStartDate(java.util.Date startDate) {
134 _calEvent.setStartDate(startDate);
135 }
136
137 public java.util.Date getEndDate() {
138 return _calEvent.getEndDate();
139 }
140
141 public void setEndDate(java.util.Date endDate) {
142 _calEvent.setEndDate(endDate);
143 }
144
145 public int getDurationHour() {
146 return _calEvent.getDurationHour();
147 }
148
149 public void setDurationHour(int durationHour) {
150 _calEvent.setDurationHour(durationHour);
151 }
152
153 public int getDurationMinute() {
154 return _calEvent.getDurationMinute();
155 }
156
157 public void setDurationMinute(int durationMinute) {
158 _calEvent.setDurationMinute(durationMinute);
159 }
160
161 public boolean getAllDay() {
162 return _calEvent.getAllDay();
163 }
164
165 public boolean isAllDay() {
166 return _calEvent.isAllDay();
167 }
168
169 public void setAllDay(boolean allDay) {
170 _calEvent.setAllDay(allDay);
171 }
172
173 public boolean getTimeZoneSensitive() {
174 return _calEvent.getTimeZoneSensitive();
175 }
176
177 public boolean isTimeZoneSensitive() {
178 return _calEvent.isTimeZoneSensitive();
179 }
180
181 public void setTimeZoneSensitive(boolean timeZoneSensitive) {
182 _calEvent.setTimeZoneSensitive(timeZoneSensitive);
183 }
184
185 public java.lang.String getType() {
186 return _calEvent.getType();
187 }
188
189 public void setType(java.lang.String type) {
190 _calEvent.setType(type);
191 }
192
193 public boolean getRepeating() {
194 return _calEvent.getRepeating();
195 }
196
197 public boolean isRepeating() {
198 return _calEvent.isRepeating();
199 }
200
201 public void setRepeating(boolean repeating) {
202 _calEvent.setRepeating(repeating);
203 }
204
205 public java.lang.String getRecurrence() {
206 return _calEvent.getRecurrence();
207 }
208
209 public void setRecurrence(java.lang.String recurrence) {
210 _calEvent.setRecurrence(recurrence);
211 }
212
213 public int getRemindBy() {
214 return _calEvent.getRemindBy();
215 }
216
217 public void setRemindBy(int remindBy) {
218 _calEvent.setRemindBy(remindBy);
219 }
220
221 public int getFirstReminder() {
222 return _calEvent.getFirstReminder();
223 }
224
225 public void setFirstReminder(int firstReminder) {
226 _calEvent.setFirstReminder(firstReminder);
227 }
228
229 public int getSecondReminder() {
230 return _calEvent.getSecondReminder();
231 }
232
233 public void setSecondReminder(int secondReminder) {
234 _calEvent.setSecondReminder(secondReminder);
235 }
236
237 public com.liferay.portlet.calendar.model.CalEvent toEscapedModel() {
238 return _calEvent.toEscapedModel();
239 }
240
241 public boolean isNew() {
242 return _calEvent.isNew();
243 }
244
245 public void setNew(boolean n) {
246 _calEvent.setNew(n);
247 }
248
249 public boolean isCachedModel() {
250 return _calEvent.isCachedModel();
251 }
252
253 public void setCachedModel(boolean cachedModel) {
254 _calEvent.setCachedModel(cachedModel);
255 }
256
257 public boolean isEscapedModel() {
258 return _calEvent.isEscapedModel();
259 }
260
261 public void setEscapedModel(boolean escapedModel) {
262 _calEvent.setEscapedModel(escapedModel);
263 }
264
265 public java.io.Serializable getPrimaryKeyObj() {
266 return _calEvent.getPrimaryKeyObj();
267 }
268
269 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
270 return _calEvent.getExpandoBridge();
271 }
272
273 public void setExpandoBridgeAttributes(
274 com.liferay.portal.service.ServiceContext serviceContext) {
275 _calEvent.setExpandoBridgeAttributes(serviceContext);
276 }
277
278 public java.lang.Object clone() {
279 return _calEvent.clone();
280 }
281
282 public int compareTo(com.liferay.portlet.calendar.model.CalEvent calEvent) {
283 return _calEvent.compareTo(calEvent);
284 }
285
286 public int hashCode() {
287 return _calEvent.hashCode();
288 }
289
290 public java.lang.String toString() {
291 return _calEvent.toString();
292 }
293
294 public java.lang.String toXmlString() {
295 return _calEvent.toXmlString();
296 }
297
298 public com.liferay.portal.kernel.cal.TZSRecurrence getRecurrenceObj() {
299 return _calEvent.getRecurrenceObj();
300 }
301
302 public void setRecurrenceObj(
303 com.liferay.portal.kernel.cal.TZSRecurrence recurrenceObj) {
304 _calEvent.setRecurrenceObj(recurrenceObj);
305 }
306
307 public CalEvent getWrappedCalEvent() {
308 return _calEvent;
309 }
310
311 private CalEvent _calEvent;
312 }