Class NotificationResponseBo

java.lang.Object
org.kuali.rice.ken.bo.NotificationResponseBo
All Implemented Interfaces:
NotificationResponseContract

public class NotificationResponseBo extends Object implements NotificationResponseContract
This class represents the data structure that will house information for a Notification Response TODO: Really this class should just be replaced by NotificationResponse...
Author:
Kuali Rice Team (rice.collab@kuali.org)
  • Constructor Details

    • NotificationResponseBo

      public NotificationResponseBo()
  • Method Details

    • getStatus

      public String getStatus()
      Gets the status attribute.
      Specified by:
      getStatus in interface NotificationResponseContract
      Returns:
      Returns the response status.
    • setStatus

      public void setStatus(String status)
      Sets the status attribute value.
      Parameters:
      status - The status to set.
    • getMessage

      public String getMessage()
      Gets the message attribute.
      Specified by:
      getMessage in interface NotificationResponseContract
      Returns:
      Returns the response message.
    • setMessage

      public void setMessage(String message)
      Sets the message attribute value.
      Parameters:
      message - The message to set.
    • getNotificationId

      public Long getNotificationId()
      Gets the id of the sent notification
      Specified by:
      getNotificationId in interface NotificationResponseContract
      Returns:
      the id of the sent notification
    • setNotificationId

      public void setNotificationId(Long notificationId)
      Sets the id of the sent notification
      Parameters:
      notificationId - the id of the sent notification
    • to

      Converts a mutable bo to its immutable counterpart
      Parameters:
      bo - the mutable business object
      Returns:
      the immutable object
    • from

      Converts a immutable object to its mutable counterpart
      Parameters:
      im - immutable object
      Returns:
      the mutable bo