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 @Override
223 public com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery getIndexableActionableDynamicQuery() {
224 return _userNotificationDeliveryLocalService.getIndexableActionableDynamicQuery();
225 }
226
227
232 @Override
233 public java.lang.String getOSGiServiceIdentifier() {
234 return _userNotificationDeliveryLocalService.getOSGiServiceIdentifier();
235 }
236
237 @Override
238 public com.liferay.portal.model.PersistedModel getPersistedModel(
239 java.io.Serializable primaryKeyObj)
240 throws com.liferay.portal.kernel.exception.PortalException {
241 return _userNotificationDeliveryLocalService.getPersistedModel(primaryKeyObj);
242 }
243
244
255 @Override
256 public java.util.List<com.liferay.portal.model.UserNotificationDelivery> getUserNotificationDeliveries(
257 int start, int end) {
258 return _userNotificationDeliveryLocalService.getUserNotificationDeliveries(start,
259 end);
260 }
261
262
267 @Override
268 public int getUserNotificationDeliveriesCount() {
269 return _userNotificationDeliveryLocalService.getUserNotificationDeliveriesCount();
270 }
271
272 @Override
273 public com.liferay.portal.model.UserNotificationDelivery getUserNotificationDelivery(
274 long userId, java.lang.String portletId, long classNameId,
275 int notificationType, int deliveryType, boolean deliver)
276 throws com.liferay.portal.kernel.exception.PortalException {
277 return _userNotificationDeliveryLocalService.getUserNotificationDelivery(userId,
278 portletId, classNameId, notificationType, deliveryType, deliver);
279 }
280
281
288 @Override
289 public com.liferay.portal.model.UserNotificationDelivery getUserNotificationDelivery(
290 long userNotificationDeliveryId)
291 throws com.liferay.portal.kernel.exception.PortalException {
292 return _userNotificationDeliveryLocalService.getUserNotificationDelivery(userNotificationDeliveryId);
293 }
294
295
301 @Override
302 public com.liferay.portal.model.UserNotificationDelivery updateUserNotificationDelivery(
303 com.liferay.portal.model.UserNotificationDelivery userNotificationDelivery) {
304 return _userNotificationDeliveryLocalService.updateUserNotificationDelivery(userNotificationDelivery);
305 }
306
307 @Override
308 public com.liferay.portal.model.UserNotificationDelivery updateUserNotificationDelivery(
309 long userNotificationDeliveryId, boolean deliver) {
310 return _userNotificationDeliveryLocalService.updateUserNotificationDelivery(userNotificationDeliveryId,
311 deliver);
312 }
313
314 @Override
315 public UserNotificationDeliveryLocalService getWrappedService() {
316 return _userNotificationDeliveryLocalService;
317 }
318
319 @Override
320 public void setWrappedService(
321 UserNotificationDeliveryLocalService userNotificationDeliveryLocalService) {
322 _userNotificationDeliveryLocalService = userNotificationDeliveryLocalService;
323 }
324
325 private UserNotificationDeliveryLocalService _userNotificationDeliveryLocalService;
326 }