001
014
015 package com.liferay.portal.kernel.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.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() {
037 return _userNotificationDeliveryLocalService.getActionableDynamicQuery();
038 }
039
040 @Override
041 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
042 return _userNotificationDeliveryLocalService.dynamicQuery();
043 }
044
045 @Override
046 public com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery getIndexableActionableDynamicQuery() {
047 return _userNotificationDeliveryLocalService.getIndexableActionableDynamicQuery();
048 }
049
050
053 @Override
054 public com.liferay.portal.kernel.model.PersistedModel deletePersistedModel(
055 com.liferay.portal.kernel.model.PersistedModel persistedModel)
056 throws com.liferay.portal.kernel.exception.PortalException {
057 return _userNotificationDeliveryLocalService.deletePersistedModel(persistedModel);
058 }
059
060 @Override
061 public com.liferay.portal.kernel.model.PersistedModel getPersistedModel(
062 java.io.Serializable primaryKeyObj)
063 throws com.liferay.portal.kernel.exception.PortalException {
064 return _userNotificationDeliveryLocalService.getPersistedModel(primaryKeyObj);
065 }
066
067
073 @Override
074 public com.liferay.portal.kernel.model.UserNotificationDelivery addUserNotificationDelivery(
075 com.liferay.portal.kernel.model.UserNotificationDelivery userNotificationDelivery) {
076 return _userNotificationDeliveryLocalService.addUserNotificationDelivery(userNotificationDelivery);
077 }
078
079 @Override
080 public com.liferay.portal.kernel.model.UserNotificationDelivery addUserNotificationDelivery(
081 long userId, java.lang.String portletId, long classNameId,
082 int notificationType, int deliveryType, boolean deliver)
083 throws com.liferay.portal.kernel.exception.PortalException {
084 return _userNotificationDeliveryLocalService.addUserNotificationDelivery(userId,
085 portletId, classNameId, notificationType, deliveryType, deliver);
086 }
087
088
094 @Override
095 public com.liferay.portal.kernel.model.UserNotificationDelivery createUserNotificationDelivery(
096 long userNotificationDeliveryId) {
097 return _userNotificationDeliveryLocalService.createUserNotificationDelivery(userNotificationDeliveryId);
098 }
099
100
106 @Override
107 public com.liferay.portal.kernel.model.UserNotificationDelivery deleteUserNotificationDelivery(
108 com.liferay.portal.kernel.model.UserNotificationDelivery userNotificationDelivery) {
109 return _userNotificationDeliveryLocalService.deleteUserNotificationDelivery(userNotificationDelivery);
110 }
111
112
119 @Override
120 public com.liferay.portal.kernel.model.UserNotificationDelivery deleteUserNotificationDelivery(
121 long userNotificationDeliveryId)
122 throws com.liferay.portal.kernel.exception.PortalException {
123 return _userNotificationDeliveryLocalService.deleteUserNotificationDelivery(userNotificationDeliveryId);
124 }
125
126 @Override
127 public com.liferay.portal.kernel.model.UserNotificationDelivery fetchUserNotificationDelivery(
128 long userId, java.lang.String portletId, long classNameId,
129 int notificationType, int deliveryType) {
130 return _userNotificationDeliveryLocalService.fetchUserNotificationDelivery(userId,
131 portletId, classNameId, notificationType, deliveryType);
132 }
133
134 @Override
135 public com.liferay.portal.kernel.model.UserNotificationDelivery fetchUserNotificationDelivery(
136 long userNotificationDeliveryId) {
137 return _userNotificationDeliveryLocalService.fetchUserNotificationDelivery(userNotificationDeliveryId);
138 }
139
140 @Override
141 public com.liferay.portal.kernel.model.UserNotificationDelivery getUserNotificationDelivery(
142 long userId, java.lang.String portletId, long classNameId,
143 int notificationType, int deliveryType, boolean deliver)
144 throws com.liferay.portal.kernel.exception.PortalException {
145 return _userNotificationDeliveryLocalService.getUserNotificationDelivery(userId,
146 portletId, classNameId, notificationType, deliveryType, deliver);
147 }
148
149
156 @Override
157 public com.liferay.portal.kernel.model.UserNotificationDelivery getUserNotificationDelivery(
158 long userNotificationDeliveryId)
159 throws com.liferay.portal.kernel.exception.PortalException {
160 return _userNotificationDeliveryLocalService.getUserNotificationDelivery(userNotificationDeliveryId);
161 }
162
163
169 @Override
170 public com.liferay.portal.kernel.model.UserNotificationDelivery updateUserNotificationDelivery(
171 com.liferay.portal.kernel.model.UserNotificationDelivery userNotificationDelivery) {
172 return _userNotificationDeliveryLocalService.updateUserNotificationDelivery(userNotificationDelivery);
173 }
174
175 @Override
176 public com.liferay.portal.kernel.model.UserNotificationDelivery updateUserNotificationDelivery(
177 long userNotificationDeliveryId, boolean deliver) {
178 return _userNotificationDeliveryLocalService.updateUserNotificationDelivery(userNotificationDeliveryId,
179 deliver);
180 }
181
182
187 @Override
188 public int getUserNotificationDeliveriesCount() {
189 return _userNotificationDeliveryLocalService.getUserNotificationDeliveriesCount();
190 }
191
192
197 @Override
198 public java.lang.String getOSGiServiceIdentifier() {
199 return _userNotificationDeliveryLocalService.getOSGiServiceIdentifier();
200 }
201
202
208 @Override
209 public <T> java.util.List<T> dynamicQuery(
210 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
211 return _userNotificationDeliveryLocalService.dynamicQuery(dynamicQuery);
212 }
213
214
226 @Override
227 public <T> java.util.List<T> dynamicQuery(
228 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
229 int end) {
230 return _userNotificationDeliveryLocalService.dynamicQuery(dynamicQuery,
231 start, end);
232 }
233
234
247 @Override
248 public <T> java.util.List<T> dynamicQuery(
249 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
250 int end,
251 com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) {
252 return _userNotificationDeliveryLocalService.dynamicQuery(dynamicQuery,
253 start, end, orderByComparator);
254 }
255
256
267 @Override
268 public java.util.List<com.liferay.portal.kernel.model.UserNotificationDelivery> getUserNotificationDeliveries(
269 int start, int end) {
270 return _userNotificationDeliveryLocalService.getUserNotificationDeliveries(start,
271 end);
272 }
273
274
280 @Override
281 public long dynamicQueryCount(
282 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
283 return _userNotificationDeliveryLocalService.dynamicQueryCount(dynamicQuery);
284 }
285
286
293 @Override
294 public long dynamicQueryCount(
295 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
296 com.liferay.portal.kernel.dao.orm.Projection projection) {
297 return _userNotificationDeliveryLocalService.dynamicQueryCount(dynamicQuery,
298 projection);
299 }
300
301 @Override
302 public void deleteUserNotificationDeliveries(long userId) {
303 _userNotificationDeliveryLocalService.deleteUserNotificationDeliveries(userId);
304 }
305
306 @Override
307 public void deleteUserNotificationDelivery(long userId,
308 java.lang.String portletId, long classNameId, int notificationType,
309 int deliveryType) {
310 _userNotificationDeliveryLocalService.deleteUserNotificationDelivery(userId,
311 portletId, classNameId, notificationType, deliveryType);
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 }