类 ManagedNotification

java.lang.Object
cn.taketoday.jmx.export.metadata.ManagedNotification

public class ManagedNotification extends Object
Metadata that indicates a JMX notification emitted by a bean.
从以下版本开始:
4.0
作者:
Rob Harrop
  • 构造器详细资料

    • ManagedNotification

      public ManagedNotification()
  • 方法详细资料

    • 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.