001
014
015 package com.liferay.portal.service;
016
017 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018 import com.liferay.portal.kernel.util.ReferenceRegistry;
019
020
034 public class UserNotificationEventLocalServiceUtil {
035
040
041
048 public static com.liferay.portal.model.UserNotificationEvent addUserNotificationEvent(
049 com.liferay.portal.model.UserNotificationEvent userNotificationEvent)
050 throws com.liferay.portal.kernel.exception.SystemException {
051 return getService().addUserNotificationEvent(userNotificationEvent);
052 }
053
054
060 public static com.liferay.portal.model.UserNotificationEvent createUserNotificationEvent(
061 long userNotificationEventId) {
062 return getService().createUserNotificationEvent(userNotificationEventId);
063 }
064
065
073 public static com.liferay.portal.model.UserNotificationEvent deleteUserNotificationEvent(
074 long userNotificationEventId)
075 throws com.liferay.portal.kernel.exception.PortalException,
076 com.liferay.portal.kernel.exception.SystemException {
077 return getService().deleteUserNotificationEvent(userNotificationEventId);
078 }
079
080
087 public static com.liferay.portal.model.UserNotificationEvent deleteUserNotificationEvent(
088 com.liferay.portal.model.UserNotificationEvent userNotificationEvent)
089 throws com.liferay.portal.kernel.exception.SystemException {
090 return getService().deleteUserNotificationEvent(userNotificationEvent);
091 }
092
093 public static com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
094 return getService().dynamicQuery();
095 }
096
097
104 @SuppressWarnings("rawtypes")
105 public static java.util.List dynamicQuery(
106 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
107 throws com.liferay.portal.kernel.exception.SystemException {
108 return getService().dynamicQuery(dynamicQuery);
109 }
110
111
124 @SuppressWarnings("rawtypes")
125 public static java.util.List dynamicQuery(
126 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
127 int end) throws com.liferay.portal.kernel.exception.SystemException {
128 return getService().dynamicQuery(dynamicQuery, start, end);
129 }
130
131
145 @SuppressWarnings("rawtypes")
146 public static 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 getService()
152 .dynamicQuery(dynamicQuery, start, end, orderByComparator);
153 }
154
155
162 public static long dynamicQueryCount(
163 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
164 throws com.liferay.portal.kernel.exception.SystemException {
165 return getService().dynamicQueryCount(dynamicQuery);
166 }
167
168
176 public static long dynamicQueryCount(
177 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
178 com.liferay.portal.kernel.dao.orm.Projection projection)
179 throws com.liferay.portal.kernel.exception.SystemException {
180 return getService().dynamicQueryCount(dynamicQuery, projection);
181 }
182
183 public static com.liferay.portal.model.UserNotificationEvent fetchUserNotificationEvent(
184 long userNotificationEventId)
185 throws com.liferay.portal.kernel.exception.SystemException {
186 return getService().fetchUserNotificationEvent(userNotificationEventId);
187 }
188
189
197 public static com.liferay.portal.model.UserNotificationEvent fetchUserNotificationEventByUuidAndCompanyId(
198 java.lang.String uuid, long companyId)
199 throws com.liferay.portal.kernel.exception.SystemException {
200 return getService()
201 .fetchUserNotificationEventByUuidAndCompanyId(uuid, companyId);
202 }
203
204
212 public static com.liferay.portal.model.UserNotificationEvent getUserNotificationEvent(
213 long userNotificationEventId)
214 throws com.liferay.portal.kernel.exception.PortalException,
215 com.liferay.portal.kernel.exception.SystemException {
216 return getService().getUserNotificationEvent(userNotificationEventId);
217 }
218
219 public static com.liferay.portal.model.PersistedModel getPersistedModel(
220 java.io.Serializable primaryKeyObj)
221 throws com.liferay.portal.kernel.exception.PortalException,
222 com.liferay.portal.kernel.exception.SystemException {
223 return getService().getPersistedModel(primaryKeyObj);
224 }
225
226
235 public static com.liferay.portal.model.UserNotificationEvent getUserNotificationEventByUuidAndCompanyId(
236 java.lang.String uuid, long companyId)
237 throws com.liferay.portal.kernel.exception.PortalException,
238 com.liferay.portal.kernel.exception.SystemException {
239 return getService()
240 .getUserNotificationEventByUuidAndCompanyId(uuid, companyId);
241 }
242
243
255 public static java.util.List<com.liferay.portal.model.UserNotificationEvent> getUserNotificationEvents(
256 int start, int end)
257 throws com.liferay.portal.kernel.exception.SystemException {
258 return getService().getUserNotificationEvents(start, end);
259 }
260
261
267 public static int getUserNotificationEventsCount()
268 throws com.liferay.portal.kernel.exception.SystemException {
269 return getService().getUserNotificationEventsCount();
270 }
271
272
279 public static com.liferay.portal.model.UserNotificationEvent updateUserNotificationEvent(
280 com.liferay.portal.model.UserNotificationEvent userNotificationEvent)
281 throws com.liferay.portal.kernel.exception.SystemException {
282 return getService().updateUserNotificationEvent(userNotificationEvent);
283 }
284
285
290 public static java.lang.String getBeanIdentifier() {
291 return getService().getBeanIdentifier();
292 }
293
294
299 public static void setBeanIdentifier(java.lang.String beanIdentifier) {
300 getService().setBeanIdentifier(beanIdentifier);
301 }
302
303 public static com.liferay.portal.model.UserNotificationEvent addUserNotificationEvent(
304 long userId,
305 com.liferay.portal.kernel.notifications.NotificationEvent notificationEvent)
306 throws com.liferay.portal.kernel.exception.PortalException,
307 com.liferay.portal.kernel.exception.SystemException {
308 return getService().addUserNotificationEvent(userId, notificationEvent);
309 }
310
311 public static com.liferay.portal.model.UserNotificationEvent addUserNotificationEvent(
312 long userId, java.lang.String type, long timestamp, long deliverBy,
313 java.lang.String payload, boolean archived,
314 com.liferay.portal.service.ServiceContext serviceContext)
315 throws com.liferay.portal.kernel.exception.PortalException,
316 com.liferay.portal.kernel.exception.SystemException {
317 return getService()
318 .addUserNotificationEvent(userId, type, timestamp,
319 deliverBy, payload, archived, serviceContext);
320 }
321
322 public static java.util.List<com.liferay.portal.model.UserNotificationEvent> addUserNotificationEvents(
323 long userId,
324 java.util.Collection<com.liferay.portal.kernel.notifications.NotificationEvent> notificationEvents)
325 throws com.liferay.portal.kernel.exception.PortalException,
326 com.liferay.portal.kernel.exception.SystemException {
327 return getService().addUserNotificationEvents(userId, notificationEvents);
328 }
329
330 public static void deleteUserNotificationEvent(java.lang.String uuid,
331 long companyId)
332 throws com.liferay.portal.kernel.exception.SystemException {
333 getService().deleteUserNotificationEvent(uuid, companyId);
334 }
335
336 public static void deleteUserNotificationEvents(
337 java.util.Collection<java.lang.String> uuids, long companyId)
338 throws com.liferay.portal.kernel.exception.SystemException {
339 getService().deleteUserNotificationEvents(uuids, companyId);
340 }
341
342 public static java.util.List<com.liferay.portal.model.UserNotificationEvent> getArchivedUserNotificationEvents(
343 long userId, boolean archived)
344 throws com.liferay.portal.kernel.exception.SystemException {
345 return getService().getArchivedUserNotificationEvents(userId, archived);
346 }
347
348 public static java.util.List<com.liferay.portal.model.UserNotificationEvent> getArchivedUserNotificationEvents(
349 long userId, boolean archived, int start, int end)
350 throws com.liferay.portal.kernel.exception.SystemException {
351 return getService()
352 .getArchivedUserNotificationEvents(userId, archived, start,
353 end);
354 }
355
356 public static int getArchivedUserNotificationEventsCount(long userId,
357 boolean archived)
358 throws com.liferay.portal.kernel.exception.SystemException {
359 return getService()
360 .getArchivedUserNotificationEventsCount(userId, archived);
361 }
362
363 public static java.util.List<com.liferay.portal.model.UserNotificationEvent> getDeliveredUserNotificationEvents(
364 long userId, boolean delivered)
365 throws com.liferay.portal.kernel.exception.SystemException {
366 return getService().getDeliveredUserNotificationEvents(userId, delivered);
367 }
368
369 public static java.util.List<com.liferay.portal.model.UserNotificationEvent> getDeliveredUserNotificationEvents(
370 long userId, boolean delivered, int start, int end)
371 throws com.liferay.portal.kernel.exception.SystemException {
372 return getService()
373 .getDeliveredUserNotificationEvents(userId, delivered,
374 start, end);
375 }
376
377 public static int getDeliveredUserNotificationEventsCount(long userId,
378 boolean delivered)
379 throws com.liferay.portal.kernel.exception.SystemException {
380 return getService()
381 .getDeliveredUserNotificationEventsCount(userId, delivered);
382 }
383
384 public static java.util.List<com.liferay.portal.model.UserNotificationEvent> getUserNotificationEvents(
385 long userId) throws com.liferay.portal.kernel.exception.SystemException {
386 return getService().getUserNotificationEvents(userId);
387 }
388
389
393 public static java.util.List<com.liferay.portal.model.UserNotificationEvent> getUserNotificationEvents(
394 long userId, boolean archived)
395 throws com.liferay.portal.kernel.exception.SystemException {
396 return getService().getUserNotificationEvents(userId, archived);
397 }
398
399
403 public static java.util.List<com.liferay.portal.model.UserNotificationEvent> getUserNotificationEvents(
404 long userId, boolean archived, int start, int end)
405 throws com.liferay.portal.kernel.exception.SystemException {
406 return getService()
407 .getUserNotificationEvents(userId, archived, start, end);
408 }
409
410 public static java.util.List<com.liferay.portal.model.UserNotificationEvent> getUserNotificationEvents(
411 long userId, int start, int end)
412 throws com.liferay.portal.kernel.exception.SystemException {
413 return getService().getUserNotificationEvents(userId, start, end);
414 }
415
416 public static int getUserNotificationEventsCount(long userId)
417 throws com.liferay.portal.kernel.exception.SystemException {
418 return getService().getUserNotificationEventsCount(userId);
419 }
420
421
425 public static int getUserNotificationEventsCount(long userId,
426 boolean archived)
427 throws com.liferay.portal.kernel.exception.SystemException {
428 return getService().getUserNotificationEventsCount(userId, archived);
429 }
430
431 public static com.liferay.portal.model.UserNotificationEvent updateUserNotificationEvent(
432 java.lang.String uuid, long companyId, boolean archive)
433 throws com.liferay.portal.kernel.exception.SystemException {
434 return getService().updateUserNotificationEvent(uuid, companyId, archive);
435 }
436
437 public static java.util.List<com.liferay.portal.model.UserNotificationEvent> updateUserNotificationEvents(
438 java.util.Collection<java.lang.String> uuids, long companyId,
439 boolean archive)
440 throws com.liferay.portal.kernel.exception.SystemException {
441 return getService()
442 .updateUserNotificationEvents(uuids, companyId, archive);
443 }
444
445 public static UserNotificationEventLocalService getService() {
446 if (_service == null) {
447 _service = (UserNotificationEventLocalService)PortalBeanLocatorUtil.locate(UserNotificationEventLocalService.class.getName());
448
449 ReferenceRegistry.registerReference(UserNotificationEventLocalServiceUtil.class,
450 "_service");
451 }
452
453 return _service;
454 }
455
456
459 public void setService(UserNotificationEventLocalService service) {
460 }
461
462 private static UserNotificationEventLocalService _service;
463 }