001
014
015 package com.liferay.portal.service;
016
017
024 public class UserNotificationDeliveryLocalServiceWrapper
025 implements UserNotificationDeliveryLocalService,
026 ServiceWrapper<UserNotificationDeliveryLocalService> {
027 public UserNotificationDeliveryLocalServiceWrapper(
028 UserNotificationDeliveryLocalService userNotificationDeliveryLocalService) {
029 _userNotificationDeliveryLocalService = userNotificationDeliveryLocalService;
030 }
031
032
039 @Override
040 public com.liferay.portal.model.UserNotificationDelivery addUserNotificationDelivery(
041 com.liferay.portal.model.UserNotificationDelivery userNotificationDelivery)
042 throws com.liferay.portal.kernel.exception.SystemException {
043 return _userNotificationDeliveryLocalService.addUserNotificationDelivery(userNotificationDelivery);
044 }
045
046
052 @Override
053 public com.liferay.portal.model.UserNotificationDelivery createUserNotificationDelivery(
054 long userNotificationDeliveryId) {
055 return _userNotificationDeliveryLocalService.createUserNotificationDelivery(userNotificationDeliveryId);
056 }
057
058
066 @Override
067 public com.liferay.portal.model.UserNotificationDelivery deleteUserNotificationDelivery(
068 long userNotificationDeliveryId)
069 throws com.liferay.portal.kernel.exception.PortalException,
070 com.liferay.portal.kernel.exception.SystemException {
071 return _userNotificationDeliveryLocalService.deleteUserNotificationDelivery(userNotificationDeliveryId);
072 }
073
074
081 @Override
082 public com.liferay.portal.model.UserNotificationDelivery deleteUserNotificationDelivery(
083 com.liferay.portal.model.UserNotificationDelivery userNotificationDelivery)
084 throws com.liferay.portal.kernel.exception.SystemException {
085 return _userNotificationDeliveryLocalService.deleteUserNotificationDelivery(userNotificationDelivery);
086 }
087
088 @Override
089 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
090 return _userNotificationDeliveryLocalService.dynamicQuery();
091 }
092
093
100 @Override
101 @SuppressWarnings("rawtypes")
102 public java.util.List dynamicQuery(
103 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
104 throws com.liferay.portal.kernel.exception.SystemException {
105 return _userNotificationDeliveryLocalService.dynamicQuery(dynamicQuery);
106 }
107
108
121 @Override
122 @SuppressWarnings("rawtypes")
123 public java.util.List dynamicQuery(
124 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
125 int end) throws com.liferay.portal.kernel.exception.SystemException {
126 return _userNotificationDeliveryLocalService.dynamicQuery(dynamicQuery,
127 start, end);
128 }
129
130
144 @Override
145 @SuppressWarnings("rawtypes")
146 public java.util.List dynamicQuery(
147 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
148 int end,
149 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
150 throws com.liferay.portal.kernel.exception.SystemException {
151 return _userNotificationDeliveryLocalService.dynamicQuery(dynamicQuery,
152 start, end, orderByComparator);
153 }
154
155
162 @Override
163 public long dynamicQueryCount(
164 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
165 throws com.liferay.portal.kernel.exception.SystemException {
166 return _userNotificationDeliveryLocalService.dynamicQueryCount(dynamicQuery);
167 }
168
169
177 @Override
178 public long dynamicQueryCount(
179 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
180 com.liferay.portal.kernel.dao.orm.Projection projection)
181 throws com.liferay.portal.kernel.exception.SystemException {
182 return _userNotificationDeliveryLocalService.dynamicQueryCount(dynamicQuery,
183 projection);
184 }
185
186 @Override
187 public com.liferay.portal.model.UserNotificationDelivery fetchUserNotificationDelivery(
188 long userNotificationDeliveryId)
189 throws com.liferay.portal.kernel.exception.SystemException {
190 return _userNotificationDeliveryLocalService.fetchUserNotificationDelivery(userNotificationDeliveryId);
191 }
192
193
201 @Override
202 public com.liferay.portal.model.UserNotificationDelivery getUserNotificationDelivery(
203 long userNotificationDeliveryId)
204 throws com.liferay.portal.kernel.exception.PortalException,
205 com.liferay.portal.kernel.exception.SystemException {
206 return _userNotificationDeliveryLocalService.getUserNotificationDelivery(userNotificationDeliveryId);
207 }
208
209 @Override
210 public com.liferay.portal.model.PersistedModel getPersistedModel(
211 java.io.Serializable primaryKeyObj)
212 throws com.liferay.portal.kernel.exception.PortalException,
213 com.liferay.portal.kernel.exception.SystemException {
214 return _userNotificationDeliveryLocalService.getPersistedModel(primaryKeyObj);
215 }
216
217
229 @Override
230 public java.util.List<com.liferay.portal.model.UserNotificationDelivery> getUserNotificationDeliveries(
231 int start, int end)
232 throws com.liferay.portal.kernel.exception.SystemException {
233 return _userNotificationDeliveryLocalService.getUserNotificationDeliveries(start,
234 end);
235 }
236
237
243 @Override
244 public int getUserNotificationDeliveriesCount()
245 throws com.liferay.portal.kernel.exception.SystemException {
246 return _userNotificationDeliveryLocalService.getUserNotificationDeliveriesCount();
247 }
248
249
256 @Override
257 public com.liferay.portal.model.UserNotificationDelivery updateUserNotificationDelivery(
258 com.liferay.portal.model.UserNotificationDelivery userNotificationDelivery)
259 throws com.liferay.portal.kernel.exception.SystemException {
260 return _userNotificationDeliveryLocalService.updateUserNotificationDelivery(userNotificationDelivery);
261 }
262
263
268 @Override
269 public java.lang.String getBeanIdentifier() {
270 return _userNotificationDeliveryLocalService.getBeanIdentifier();
271 }
272
273
278 @Override
279 public void setBeanIdentifier(java.lang.String beanIdentifier) {
280 _userNotificationDeliveryLocalService.setBeanIdentifier(beanIdentifier);
281 }
282
283 @Override
284 public com.liferay.portal.model.UserNotificationDelivery addUserNotificationDelivery(
285 long userId, java.lang.String portletId, long classNameId,
286 int notificationType, int deliveryType, boolean deliver)
287 throws com.liferay.portal.kernel.exception.PortalException,
288 com.liferay.portal.kernel.exception.SystemException {
289 return _userNotificationDeliveryLocalService.addUserNotificationDelivery(userId,
290 portletId, classNameId, notificationType, deliveryType, deliver);
291 }
292
293 @Override
294 public void deleteUserNotificationDeliveries(long userId)
295 throws com.liferay.portal.kernel.exception.SystemException {
296 _userNotificationDeliveryLocalService.deleteUserNotificationDeliveries(userId);
297 }
298
299 @Override
300 public void deleteUserNotificationDelivery(long userId,
301 java.lang.String portletId, long classNameId, int notificationType,
302 int deliveryType)
303 throws com.liferay.portal.kernel.exception.SystemException {
304 _userNotificationDeliveryLocalService.deleteUserNotificationDelivery(userId,
305 portletId, classNameId, notificationType, deliveryType);
306 }
307
308 @Override
309 public com.liferay.portal.model.UserNotificationDelivery fetchUserNotificationDelivery(
310 long userId, java.lang.String portletId, long classNameId,
311 int notificationType, int deliveryType)
312 throws com.liferay.portal.kernel.exception.SystemException {
313 return _userNotificationDeliveryLocalService.fetchUserNotificationDelivery(userId,
314 portletId, classNameId, notificationType, deliveryType);
315 }
316
317 @Override
318 public com.liferay.portal.model.UserNotificationDelivery getUserNotificationDelivery(
319 long userId, java.lang.String portletId, long classNameId,
320 int notificationType, int deliveryType, boolean deliver)
321 throws com.liferay.portal.kernel.exception.PortalException,
322 com.liferay.portal.kernel.exception.SystemException {
323 return _userNotificationDeliveryLocalService.getUserNotificationDelivery(userId,
324 portletId, classNameId, notificationType, deliveryType, deliver);
325 }
326
327 @Override
328 public com.liferay.portal.model.UserNotificationDelivery updateUserNotificationDelivery(
329 long userNotificationDeliveryId, boolean deliver)
330 throws com.liferay.portal.kernel.exception.SystemException {
331 return _userNotificationDeliveryLocalService.updateUserNotificationDelivery(userNotificationDeliveryId,
332 deliver);
333 }
334
335
338 public UserNotificationDeliveryLocalService getWrappedUserNotificationDeliveryLocalService() {
339 return _userNotificationDeliveryLocalService;
340 }
341
342
345 public void setWrappedUserNotificationDeliveryLocalService(
346 UserNotificationDeliveryLocalService userNotificationDeliveryLocalService) {
347 _userNotificationDeliveryLocalService = userNotificationDeliveryLocalService;
348 }
349
350 @Override
351 public UserNotificationDeliveryLocalService getWrappedService() {
352 return _userNotificationDeliveryLocalService;
353 }
354
355 @Override
356 public void setWrappedService(
357 UserNotificationDeliveryLocalService userNotificationDeliveryLocalService) {
358 _userNotificationDeliveryLocalService = userNotificationDeliveryLocalService;
359 }
360
361 private UserNotificationDeliveryLocalService _userNotificationDeliveryLocalService;
362 }