Class ManagedNotification

java.lang.Object
org.springframework.jmx.export.metadata.ManagedNotification

public class ManagedNotification extends Object
Metadata that indicates a JMX notification emitted by a bean.
Since:
2.0
Author:
Rob Harrop
  • Constructor Details

    • ManagedNotification

      public ManagedNotification()
  • Method Details

    • setNotificationType

      public void setNotificationType(String notificationType)
      Set a single notification type, or a list of notification types as comma-delimited String.
    • setNotificationTypes

      public void setNotificationTypes(@Nullable String... notificationTypes)
      Set a list of notification types.
    • getNotificationTypes

      @Nullable public String[] getNotificationTypes()
      Return the list of notification types.
    • setName

      public void setName(@Nullable String name)
      Set the name of this notification.
    • getName

      @Nullable public String getName()
      Return the name of this notification.
    • setDescription

      public void setDescription(@Nullable String description)
      Set a description for this notification.
    • getDescription

      @Nullable public String getDescription()
      Return a description for this notification.