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

jvergara
12.49.2008 79257754116e73ab0bc852ae82259a8627c33a06
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/ui/InstallReviewPanel.java
@@ -33,6 +33,7 @@
import org.opends.admin.ads.ServerDescriptor;
import org.opends.admin.ads.SuffixDescriptor;
import org.opends.quicksetup.Constants;
import org.opends.quicksetup.UserData;
import org.opends.quicksetup.installer.AuthenticationData;
import org.opends.quicksetup.installer.DataReplicationOptions;
@@ -266,13 +267,12 @@
    getField(fieldName).setText(value);
  }
  /**
   * Returns the localized string describing the DataOptions chosen by the user.
   * @param userInstallData the DataOptions of the user.
   * @return the localized string describing the DataOptions chosen by the user.
   */
  private String getDataDisplayString(UserData userInstallData)
  public static String getDataDisplayString(UserData userInstallData)
  {
    Message msg;
@@ -320,8 +320,17 @@
        throw new IllegalArgumentException("Unknown type: "+options.getType());
      }
      msg = INFO_REVIEW_CREATE_SUFFIX.get(options.getBaseDns().getFirst(),
      if (options.getBaseDns().size() > 1)
      {
        msg = INFO_REVIEW_CREATE_SUFFIX.get(
            Utils.listToString(options.getBaseDns(), Constants.LINE_SEPARATOR),
            arg2);
      }
      else
      {
        msg = INFO_REVIEW_CREATE_SUFFIX.get(options.getBaseDns().getFirst(),
          arg2);
      }
    }
    else
    {