mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
01.26.2013 f91657f02d733c7d93f3a83de9e43bcf1612ca5b
opends/src/server/org/opends/server/tools/upgrade/FormattedNotificationCallback.java
@@ -40,15 +40,20 @@
   */
  private static final long serialVersionUID = 1L;
  static final int TITLE_CALLBACK = 5;
  /** Output a title. */
  public static final int TITLE_CALLBACK = 5;
  static final int SUBTITLE_CALLBACK = 6;
  /** Output a sub-title. */
  public static final int SUBTITLE_CALLBACK = 6;
  static final int NOTICE_CALLBACK = 7;
  /** Output a notice message. */
  public static final int NOTICE_CALLBACK = 7;
  static final int ERROR_CALLBACK = 8;
  /** Output an error. */
  public static final int ERROR_CALLBACK = 8;
  static final int BREAKLINE = 9;
  /** Output a line break. */
  public static final int BREAKLINE = 9;
  /**
   * An integer representing the message's sub-type.
@@ -63,7 +68,7 @@
   * @param messageSubType
   *          An integer representing the sub-type of this message.
   */
  public FormattedNotificationCallback(final Message message,
  FormattedNotificationCallback(final Message message,
      final int messageSubType)
  {
    super(TextOutputCallback.INFORMATION, message.toString());
@@ -79,15 +84,4 @@
  {
    return messageSubType;
  }
  /**
   * Sets the message's sub-type.
   *
   * @param messageSubType
   *          The message's sub-type.
   */
  public void setMessageSubType(int messageSubType)
  {
    this.messageSubType = messageSubType;
  }
}