Package org.kuali.rice.ken.service
Interface NotificationChannelService
- All Known Implementing Classes:
NotificationChannelServiceImpl
public interface NotificationChannelService
Service for accessing
NotificationChannelBos- Author:
- Kuali Rice Team (rice.collab@kuali.org)
-
Method Summary
Modifier and TypeMethodDescriptionThis method returns all of the registered notification channels in the system.This method retrieves a specific NotificationChannel instance by id.This method retrieves a specific NotificationChannel instance by name.This method retrieves all channels in the system that can be subscribed to.
-
Method Details
-
getAllNotificationChannels
Collection<NotificationChannelBo> getAllNotificationChannels()This method returns all of the registered notification channels in the system.- Returns:
- Collection
-
getNotificationChannel
This method retrieves a specific NotificationChannel instance by id. If none is found, it returns null.- Parameters:
id-- Returns:
- NotificationChannel
-
getNotificationChannelByName
This method retrieves a specific NotificationChannel instance by name. If none is found, it returns null.- Parameters:
id-- Returns:
- NotificationChannel
-
getSubscribableChannels
Collection<NotificationChannelBo> getSubscribableChannels()This method retrieves all channels in the system that can be subscribed to.- Returns:
- Collection
-