Uses of Class
org.kuali.rice.ken.bo.NotificationBo

Packages that use NotificationBo
org.kuali.rice.ken.bo   
org.kuali.rice.ken.dao   
org.kuali.rice.ken.dao.impl   
org.kuali.rice.ken.service   
org.kuali.rice.ken.service.impl   
org.kuali.rice.ken.util   
org.kuali.rice.ken.web.spring   
 

Uses of NotificationBo in org.kuali.rice.ken.bo
 

Methods in org.kuali.rice.ken.bo that return NotificationBo
static NotificationBo NotificationBo.from(Notification im)
          Converts a immutable object to its mutable counterpart
 NotificationBo NotificationMessageDelivery.getNotification()
          Gets the notification attribute.
 

Methods in org.kuali.rice.ken.bo with parameters of type NotificationBo
 void NotificationMessageDelivery.setNotification(NotificationBo notification)
          Sets the notification attribute value.
static Notification NotificationBo.to(NotificationBo bo)
          Converts a mutable bo to its immutable counterpart
 

Uses of NotificationBo in org.kuali.rice.ken.dao
 

Methods in org.kuali.rice.ken.dao with parameters of type NotificationBo
 Collection NotificationDao.findMatchedNotificationsForUnlock(NotificationBo not, GenericDao dao)
           
 

Uses of NotificationBo in org.kuali.rice.ken.dao.impl
 

Methods in org.kuali.rice.ken.dao.impl with parameters of type NotificationBo
 Collection NotificationDaoOjb.findMatchedNotificationsForUnlock(NotificationBo not, GenericDao dao)
          This overridden method ...
 Collection NotificationDaoJpa.findMatchedNotificationsForUnlock(NotificationBo not, GenericDao dao)
          This overridden method ...
 

Uses of NotificationBo in org.kuali.rice.ken.service
 

Methods in org.kuali.rice.ken.service that return NotificationBo
 NotificationBo NotificationService.getNotification(Long id)
          This method will retrieve a Notification object from the system, given the id of the actual notification record.
 NotificationBo NotificationMessageContentService.parseNotificationRequestMessage(InputStream stream)
          Parses a Notification request message into business objects.
 NotificationBo NotificationMessageContentService.parseNotificationRequestMessage(String notificationMessageAsXml)
          Parses a Notification request message into business objects.
 NotificationBo NotificationMessageContentService.parseSerializedNotificationXml(byte[] xmlAsBytes)
          This method parses out the serialized XML version of Notification BO and populates a Notification BO with it.
 

Methods in org.kuali.rice.ken.service that return types with arguments of type NotificationBo
 Collection<NotificationBo> NotificationService.getNotificationsForRecipientByType(String contentTypeName, String recipientId)
          This method will retrieve a collection of notifications given a contentTypeName and recipientId.
 Collection<NotificationBo> NotificationService.takeNotificationsForResolution()
          This method is responsible for atomically finding all untaken, unresolved notifications that are ready to be sent, marking them as taken and returning them to the caller for processing.
 

Methods in org.kuali.rice.ken.service with parameters of type NotificationBo
 String NotificationMessageContentService.generateNotificationMessage(NotificationBo notification)
          This method is responsible for marshalling out the passed in Notification object in and XML representation.
 String NotificationMessageContentService.generateNotificationMessage(NotificationBo notification, String userRecipientId)
          This method is responsible for marshalling out the passed in Notification object in and XML representation, with the addition of adding the specific recipient to the recipients list and removing the others.
 Collection<NotificationMessageDelivery> NotificationMessageDeliveryService.getNotificationMessageDeliveries(NotificationBo notification, String userRecipientId)
          This method will return all NotificationMessageDelievery objects generated for the given Notification for the given user
 NotificationResponseBo NotificationService.sendNotification(NotificationBo notification)
          This method allows consumers to send notification messages.
 void NotificationService.unlockNotification(NotificationBo notification)
          Unlocks specified notification
 

Uses of NotificationBo in org.kuali.rice.ken.service.impl
 

Methods in org.kuali.rice.ken.service.impl that return NotificationBo
 NotificationBo NotificationServiceImpl.getNotification(Long id)
          This is the default implementation that uses the businessObjectDao.
 NotificationBo NotificationMessageContentServiceImpl.parseNotificationRequestMessage(InputStream stream)
          This method implements by taking in an InputStream and then coverting that to a byte[].
 NotificationBo NotificationMessageContentServiceImpl.parseNotificationRequestMessage(String notificationMessageAsXml)
          This method implements by taking in a String and then converting that to a byte[];
 NotificationBo NotificationMessageContentServiceImpl.parseSerializedNotificationXml(byte[] xmlAsBytes)
          Uses XPath to parse out the serialized Notification xml into a Notification instance.
 

Methods in org.kuali.rice.ken.service.impl that return types with arguments of type NotificationBo
protected  Collection<NotificationBo> NotificationContentTypeServiceImpl.getNotificationsOfContentType(NotificationContentTypeBo ct)
           
protected  Collection<NotificationBo> NotificationMessageDeliveryResolverServiceImpl.takeAvailableWorkItems()
          Obtains and marks as taken all unresolved (and untaken) notifications
 Collection<NotificationBo> NotificationServiceImpl.takeNotificationsForResolution()
          This method is responsible for atomically finding all untaken, unresolved notifications that are ready to be sent, marking them as taken and returning them to the caller for processing.
 

Methods in org.kuali.rice.ken.service.impl with parameters of type NotificationBo
 String NotificationMessageContentServiceImpl.generateNotificationMessage(NotificationBo notification)
          This method will marshall out the Notification object as a String of XML, using XStream.
 String NotificationMessageContentServiceImpl.generateNotificationMessage(NotificationBo notification, String userRecipientId)
          This method will marshall out the Notification object as a String of XML, using XStream and replaces the full recipient list with just a single recipient.
 Collection<NotificationMessageDelivery> NotificationMessageDeliveryServiceImpl.getNotificationMessageDeliveries(NotificationBo notification, String userRecipientId)
           
 NotificationResponseBo NotificationServiceImpl.sendNotification(NotificationBo notification)
           
 void NotificationServiceImpl.unlockNotification(NotificationBo notification)
          Unlocks specified notification
protected  void NotificationMessageDeliveryResolverServiceImpl.unlockWorkItem(NotificationBo notification)
           
 

Method parameters in org.kuali.rice.ken.service.impl with type arguments of type NotificationBo
protected  Collection<Object> NotificationMessageDeliveryResolverServiceImpl.processWorkItems(Collection<NotificationBo> notifications)
          Generates all message deliveries for a given notification and save thems to the database.
 

Uses of NotificationBo in org.kuali.rice.ken.util
 

Methods in org.kuali.rice.ken.util that return NotificationBo
static NotificationBo Util.cloneNotificationWithoutObjectReferences(NotificationBo notification)
          This method will clone a given Notification object, one level deep, returning a fresh new instance without any references.
 

Methods in org.kuali.rice.ken.util with parameters of type NotificationBo
static NotificationBo Util.cloneNotificationWithoutObjectReferences(NotificationBo notification)
          This method will clone a given Notification object, one level deep, returning a fresh new instance without any references.
static String Util.transformContent(NotificationBo notification)
          transformContent - transforms xml content in notification to a string using the xsl in the datastore for a given documentType
 

Uses of NotificationBo in org.kuali.rice.ken.web.spring
 

Methods in org.kuali.rice.ken.web.spring that return NotificationBo
 NotificationBo AdministerNotificationRequestController.AdministerNotificationRequestCommand.getNotification()
           
 

Methods in org.kuali.rice.ken.web.spring with parameters of type NotificationBo
 void AdministerNotificationRequestController.AdministerNotificationRequestCommand.setNotification(NotificationBo notification)
           
 



Copyright © 2005-2013 The Kuali Foundation. All Rights Reserved.