001
014
015 package com.liferay.portal.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019
026 @ProviderType
027 public class UserNotificationDeliveryLocalServiceWrapper
028 implements UserNotificationDeliveryLocalService,
029 ServiceWrapper<UserNotificationDeliveryLocalService> {
030 public UserNotificationDeliveryLocalServiceWrapper(
031 UserNotificationDeliveryLocalService userNotificationDeliveryLocalService) {
032 _userNotificationDeliveryLocalService = userNotificationDeliveryLocalService;
033 }
034
035 @Override
036 public com.liferay.portal.model.UserNotificationDelivery addUserNotificationDelivery(
037 long userId, java.lang.String portletId, long classNameId,
038 int notificationType, int deliveryType, boolean deliver)
039 throws com.liferay.portal.kernel.exception.PortalException {
040 return _userNotificationDeliveryLocalService.addUserNotificationDelivery(userId,
041 portletId, classNameId, notificationType, deliveryType, deliver);
042 }
043
044
050 @Override
051 public com.liferay.portal.model.UserNotificationDelivery addUserNotificationDelivery(
052 com.liferay.portal.model.UserNotificationDelivery userNotificationDelivery) {
053 return _userNotificationDeliveryLocalService.addUserNotificationDelivery(userNotificationDelivery);
054 }
055
056
062 @Override
063 public com.liferay.portal.model.UserNotificationDelivery createUserNotificationDelivery(
064 long userNotificationDeliveryId) {
065 return _userNotificationDeliveryLocalService.createUserNotificationDelivery(userNotificationDeliveryId);
066 }
067
068
071 @Override
072 public com.liferay.portal.model.PersistedModel deletePersistedModel(
073 com.liferay.portal.model.PersistedModel persistedModel)
074 throws com.liferay.portal.kernel.exception.PortalException {
075 return _userNotificationDeliveryLocalService.deletePersistedModel(persistedModel);
076 }
077
078 @Override
079 public void deleteUserNotificationDeliveries(long userId) {
080 _userNotificationDeliveryLocalService.deleteUserNotificationDeliveries(userId);
081 }
082
083 @Override
084 public void deleteUserNotificationDelivery(long userId,
085 java.lang.String portletId, long classNameId, int notificationType,
086 int deliveryType) {
087 _userNotificationDeliveryLocalService.deleteUserNotificationDelivery(userId,
088 portletId, classNameId, notificationType, deliveryType);
089 }
090
091
097 @Override
098 public com.liferay.portal.model.UserNotificationDelivery deleteUserNotificationDelivery(
099 com.liferay.portal.model.UserNotificationDelivery userNotificationDelivery) {
100 return _userNotificationDeliveryLocalService.deleteUserNotificationDelivery(userNotificationDelivery);
101 }
102
103
110 @Override
111 public com.liferay.portal.model.UserNotificationDelivery deleteUserNotificationDelivery(
112 long userNotificationDeliveryId)
113 throws com.liferay.portal.kernel.exception.PortalException {
114 return _userNotificationDeliveryLocalService.deleteUserNotificationDelivery(userNotificationDeliveryId);
115 }
116
117 @Override
118 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
119 return _userNotificationDeliveryLocalService.dynamicQuery();
120 }
121
122
128 @Override
129 public <T> java.util.List<T> dynamicQuery(
130 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
131 return _userNotificationDeliveryLocalService.dynamicQuery(dynamicQuery);
132 }
133
134
146 @Override
147 public <T> java.util.List<T> dynamicQuery(
148 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
149 int end) {
150 return _userNotificationDeliveryLocalService.dynamicQuery(dynamicQuery,
151 start, end);
152 }
153
154
167 @Override
168 public <T> java.util.List<T> dynamicQuery(
169 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
170 int end,
171 com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) {
172 return _userNotificationDeliveryLocalService.dynamicQuery(dynamicQuery,
173 start, end, orderByComparator);
174 }
175
176
182 @Override
183 public long dynamicQueryCount(
184 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
185 return _userNotificationDeliveryLocalService.dynamicQueryCount(dynamicQuery);
186 }
187
188
195 @Override
196 public long dynamicQueryCount(
197 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
198 com.liferay.portal.kernel.dao.orm.Projection projection) {
199 return _userNotificationDeliveryLocalService.dynamicQueryCount(dynamicQuery,
200 projection);
201 }
202
203 @Override
204 public com.liferay.portal.model.UserNotificationDelivery fetchUserNotificationDelivery(
205 long userId, java.lang.String portletId, long classNameId,
206 int notificationType, int deliveryType) {
207 return _userNotificationDeliveryLocalService.fetchUserNotificationDelivery(userId,
208 portletId, classNameId, notificationType, deliveryType);
209 }
210
211 @Override
212 public com.liferay.portal.model.UserNotificationDelivery fetchUserNotificationDelivery(
213 long userNotificationDeliveryId) {
214 return _userNotificationDeliveryLocalService.fetchUserNotificationDelivery(userNotificationDeliveryId);
215 }
216
217 @Override
218 public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() {
219 return _userNotificationDeliveryLocalService.getActionableDynamicQuery();
220 }
221
222
227 @Override
228 public java.lang.String getOSGiServiceIdentifier() {
229 return _userNotificationDeliveryLocalService.getOSGiServiceIdentifier();
230 }
231
232 @Override
233 public com.liferay.portal.model.PersistedModel getPersistedModel(
234 java.io.Serializable primaryKeyObj)
235 throws com.liferay.portal.kernel.exception.PortalException {
236 return _userNotificationDeliveryLocalService.getPersistedModel(primaryKeyObj);
237 }
238
239
250 @Override
251 public java.util.List<com.liferay.portal.model.UserNotificationDelivery> getUserNotificationDeliveries(
252 int start, int end) {
253 return _userNotificationDeliveryLocalService.getUserNotificationDeliveries(start,
254 end);
255 }
256
257
262 @Override
263 public int getUserNotificationDeliveriesCount() {
264 return _userNotificationDeliveryLocalService.getUserNotificationDeliveriesCount();
265 }
266
267 @Override
268 public com.liferay.portal.model.UserNotificationDelivery getUserNotificationDelivery(
269 long userId, java.lang.String portletId, long classNameId,
270 int notificationType, int deliveryType, boolean deliver)
271 throws com.liferay.portal.kernel.exception.PortalException {
272 return _userNotificationDeliveryLocalService.getUserNotificationDelivery(userId,
273 portletId, classNameId, notificationType, deliveryType, deliver);
274 }
275
276
283 @Override
284 public com.liferay.portal.model.UserNotificationDelivery getUserNotificationDelivery(
285 long userNotificationDeliveryId)
286 throws com.liferay.portal.kernel.exception.PortalException {
287 return _userNotificationDeliveryLocalService.getUserNotificationDelivery(userNotificationDeliveryId);
288 }
289
290
296 @Override
297 public com.liferay.portal.model.UserNotificationDelivery updateUserNotificationDelivery(
298 com.liferay.portal.model.UserNotificationDelivery userNotificationDelivery) {
299 return _userNotificationDeliveryLocalService.updateUserNotificationDelivery(userNotificationDelivery);
300 }
301
302 @Override
303 public com.liferay.portal.model.UserNotificationDelivery updateUserNotificationDelivery(
304 long userNotificationDeliveryId, boolean deliver) {
305 return _userNotificationDeliveryLocalService.updateUserNotificationDelivery(userNotificationDeliveryId,
306 deliver);
307 }
308
309
312 @Deprecated
313 public UserNotificationDeliveryLocalService getWrappedUserNotificationDeliveryLocalService() {
314 return _userNotificationDeliveryLocalService;
315 }
316
317
320 @Deprecated
321 public void setWrappedUserNotificationDeliveryLocalService(
322 UserNotificationDeliveryLocalService userNotificationDeliveryLocalService) {
323 _userNotificationDeliveryLocalService = userNotificationDeliveryLocalService;
324 }
325
326 @Override
327 public UserNotificationDeliveryLocalService getWrappedService() {
328 return _userNotificationDeliveryLocalService;
329 }
330
331 @Override
332 public void setWrappedService(
333 UserNotificationDeliveryLocalService userNotificationDeliveryLocalService) {
334 _userNotificationDeliveryLocalService = userNotificationDeliveryLocalService;
335 }
336
337 private UserNotificationDeliveryLocalService _userNotificationDeliveryLocalService;
338 }