| | |
| | | |
| | | import static org.opends.server.messages.MessageHandler.*; |
| | | import static org.opends.server.messages.ToolMessages.*; |
| | | import static org.opends.server.util.DynamicConstants.*; |
| | | import static org.opends.server.util.StaticUtils.*; |
| | | |
| | | |
| | |
| | | /** |
| | | * The version string for the server. |
| | | */ |
| | | private static String versionString = "OpenDS Directory Service"; |
| | | private static String versionString; |
| | | |
| | | |
| | | |
| | | /** |
| | | * The name of the program used to launch this installation process. |
| | | */ |
| | | private static String programName = "setup"; |
| | | private static String programName; |
| | | |
| | | |
| | | |
| | |
| | | |
| | | |
| | | // Construct the product version string and the setup filename. |
| | | versionString = PRODUCT_NAME + " " + MAJOR_VERSION + "." + MINOR_VERSION; |
| | | if ((VERSION_QUALIFIER == null) || (VERSION_QUALIFIER.length() == 0)) |
| | | { |
| | | versionString += "." + POINT_VERSION; |
| | | } |
| | | else |
| | | { |
| | | versionString += VERSION_QUALIFIER; |
| | | } |
| | | versionString = DirectoryServer.getVersionString(); |
| | | |
| | | if (isWindows) |
| | | { |