Class NotificationDescription

java.lang.Object
com.hp.lft.sdk.internal.PropertiesDescriptionBase
All Implemented Interfaces:
CloneableObject, Description, com.hp.lft.sdk.internal.DescriptionWithVri, Cloneable

public class NotificationDescription extends UiObjectBaseDescription
The description of an Oracle error or message window.
  • Constructor Details

    • NotificationDescription

      public NotificationDescription()
      Initializes a new instance of the NotificationDescription class.
    • NotificationDescription

      protected NotificationDescription(NotificationDescription.Init<?> init)
      Initializes a new instance of the NotificationDescription class using the Builder pattern.
      Parameters:
      init - the Builder pattern.
  • Method Details

    • setType

      public void setType(NotificationType type)
      Sets the type of notification. Possible values: NotificationType
      Parameters:
      type - the type of notification. Possible values: NotificationType
    • getType

      public NotificationType getType()
      Returns the type of notification. Possible values: NotificationType
      Returns:
      the type of notification. Possible values: NotificationType
    • setTitle

      public void setTitle(String title)
      Sets the window title.
      Parameters:
      title - the window title.
    • setTitle

      public void setTitle(StringProperty title)
      Sets the window title.
      Parameters:
      title - a StringProperty or RegExpProperty.
    • getTitle

      public StringProperty getTitle()
      Returns the window title.
      Returns:
      the window title.
    • setMessage

      public void setMessage(String message)
      Sets the text of the notification.
      Parameters:
      message - the text of the displayed message.
    • setMessage

      public void setMessage(StringProperty message)
      Sets the text of the notification.
      Parameters:
      message - a StringProperty or RegExpProperty.
    • getMessage

      public StringProperty getMessage()
      Returns the text of the notification.
      Returns:
      the text of the notification.
    • setClassPath

      public void setClassPath(String classPath)
      Sets the Oracle class hierarchy of the object's Oracle class.
      Parameters:
      classPath - the Oracle class hierarchy of the object's Oracle class.
    • setClassPath

      public void setClassPath(StringProperty classPath)
      Sets the Oracle class hierarchy of the object's Oracle class.
      Parameters:
      classPath - a StringProperty or RegExpProperty.
    • getClassPath

      public StringProperty getClassPath()
      Returns the Oracle class hierarchy of the object's Oracle class.
      Returns:
      the Oracle class hierarchy of the object's Oracle class.
    • setEnabled

      public void setEnabled(Boolean isEnabled)
      Sets whether the object is enable.
      Parameters:
      isEnabled - true to set as enabled.
    • isEnabled

      public Boolean isEnabled()
      Indicates whether the object is enable.
      Returns:
      true if enabled.