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

Packages that use Notification
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 Notification in org.kuali.rice.ken.bo
 

Fields in org.kuali.rice.ken.bo declared as Notification
private  Notification NotificationSender.notification
           
private  Notification NotificationMessageDelivery.notification
          Lock column for OJB optimistic locking
private  Notification NotificationRecipient.notification
           
 

Methods in org.kuali.rice.ken.bo that return Notification
 Notification NotificationMessageDelivery.getNotification()
          Gets the notification attribute.
 

Methods in org.kuali.rice.ken.bo with parameters of type Notification
 void NotificationMessageDelivery.setNotification(Notification notification)
          Sets the notification attribute value.
 

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

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

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

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

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

Methods in org.kuali.rice.ken.service that return Notification
 Notification NotificationService.getNotification(Long id)
          This method will retrieve a Notification object from the system, given the id of the actual notification record.
 Notification NotificationMessageContentService.parseNotificationRequestMessage(InputStream stream)
          Parses a Notification request message into business objects.
 Notification NotificationMessageContentService.parseNotificationRequestMessage(String notificationMessageAsXml)
          Parses a Notification request message into business objects.
 Notification 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 Notification
 Collection<Notification> NotificationService.getNotificationsForRecipientByType(String contentTypeName, String recipientId)
          This method will retrieve a collection of notifications given a contentTypeName and recipientId.
 Collection<Notification> 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 Notification
 String NotificationMessageContentService.generateNotificationMessage(Notification notification)
          This method is responsible for marshalling out the passed in Notification object in and XML representation.
 String NotificationMessageContentService.generateNotificationMessage(Notification 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(Notification notification, String userRecipientId)
          This method will return all NotificationMessageDelievery objects generated for the given Notification for the given user
 NotificationResponse NotificationService.sendNotification(Notification notification)
          This method allows consumers to send notification messages.
 void NotificationService.unlockNotification(Notification notification)
          Unlocks specified notification
 

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

Methods in org.kuali.rice.ken.service.impl that return Notification
 Notification NotificationServiceImpl.getNotification(Long id)
          This is the default implementation that uses the businessObjectDao.
private  Notification NotificationMessageContentServiceImpl.parseNotificationRequestMessage(byte[] bytes)
          This method is the meat of the notification message parsing.
 Notification NotificationMessageContentServiceImpl.parseNotificationRequestMessage(InputStream stream)
          This method implements by taking in an InputStream and then coverting that to a byte[].
 Notification NotificationMessageContentServiceImpl.parseNotificationRequestMessage(String notificationMessageAsXml)
          This method implements by taking in a String and then converting that to a byte[];
 Notification 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 Notification
protected  Collection<Notification> NotificationContentTypeServiceImpl.getNotificationsOfContentType(NotificationContentType ct)
           
protected  Collection<Notification> NotificationMessageDeliveryResolverServiceImpl.takeAvailableWorkItems()
          Obtains and marks as taken all unresolved (and untaken) notifications
 Collection<Notification> 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 Notification
private  HashSet<String> NotificationMessageDeliveryResolverServiceImpl.buildCompleteRecipientList(Notification notification)
          This method is responsible for building out the complete recipient list, which will resolve all members for groups, and add them to the official list only if they are not already in the list.
 String NotificationMessageContentServiceImpl.generateNotificationMessage(Notification notification)
          This method will marshall out the Notification object as a String of XML, using XStream.
 String NotificationMessageContentServiceImpl.generateNotificationMessage(Notification 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(Notification notification, String userRecipientId)
           
 NotificationResponse NotificationServiceImpl.sendNotification(Notification notification)
           
 void NotificationServiceImpl.unlockNotification(Notification notification)
          Unlocks specified notification
protected  void NotificationMessageDeliveryResolverServiceImpl.unlockWorkItem(Notification notification)
           
private  void NotificationMessageContentServiceImpl.validateContent(Notification notification, String contentType, Element contentElement, String content)
          This method validates the content of a notification message by matching up the namespace of the expected content type to the actual namespace that is passed in as part of the XML message.
 

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

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

Methods in org.kuali.rice.ken.util that return Notification
static Notification Util.cloneNotificationWithoutObjectReferences(Notification 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 Notification
static Notification Util.cloneNotificationWithoutObjectReferences(Notification notification)
          This method will clone a given Notification object, one level deep, returning a fresh new instance without any references.
static String Util.transformContent(Notification notification)
          transformContent - transforms xml content in notification to a string using the xsl in the datastore for a given documentType
 

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

Fields in org.kuali.rice.ken.web.spring declared as Notification
private  Notification AdministerNotificationRequestController.AdministerNotificationRequestCommand.notification
           
 

Methods in org.kuali.rice.ken.web.spring that return Notification
 Notification AdministerNotificationRequestController.AdministerNotificationRequestCommand.getNotification()
           
private  Notification SendEventNotificationMessageController.populateNotificationInstance(javax.servlet.http.HttpServletRequest request, Map<String,Object> model)
          This method creates a new Notification instance from the event form values.
private  Notification SendNotificationMessageController.populateNotificationInstance(javax.servlet.http.HttpServletRequest request, Map<String,Object> model)
          This method creates a new Notification instance from the form values.
private  Notification AdministerNotificationRequestController.retrieveNotificationForWorkflowDocument(WorkflowDocument document)
          Parses the serialized Notification xml from the workflow document application content into a reconstituted Notification BO
 

Methods in org.kuali.rice.ken.web.spring with parameters of type Notification
private  boolean SendEventNotificationMessageController.hasPotentialRecipients(Notification notification)
          Returns whether the specified Notification can be reasonably expected to have recipients.
private  boolean SendNotificationMessageController.hasPotentialRecipients(Notification notification)
          Returns whether the specified Notification can be reasonably expected to have recipients.
 void AdministerNotificationRequestController.AdministerNotificationRequestCommand.setNotification(Notification notification)
           
 



Copyright © 2004-2011 The Kuali Foundation. All Rights Reserved.