| | |
| | | private static final String WINDOWS_UNINSTALL_FILE_NAME = "uninstall.bat"; |
| | | |
| | | /** |
| | | * The UNIX uninstall script file name. |
| | | */ |
| | | private static final String UNIX_UPGRADE_FILE_NAME = "upgrade"; |
| | | |
| | | /** |
| | | * The Windows uninstall batch file name. |
| | | */ |
| | | private static final String WINDOWS_UPGRADE_FILE_NAME = "upgrade.bat"; |
| | | |
| | | /** |
| | | * The UNIX start script file name. |
| | | */ |
| | | private static final String UNIX_START_FILE_NAME = "start-ds"; |
| | |
| | | } |
| | | |
| | | /** |
| | | * Returns the name of the UNIX upgrade script file name. |
| | | * @return the name of the UNIX upgrade script file name. |
| | | */ |
| | | public static String getUnixUpgradeFileName() |
| | | { |
| | | return UNIX_UPGRADE_FILE_NAME; |
| | | } |
| | | |
| | | /** |
| | | * Returns the name of the Windows upgrade batch file name. |
| | | * @return the name of the Windows upgrade batch file name. |
| | | */ |
| | | public static String getWindowsUpgradeFileName() |
| | | { |
| | | return WINDOWS_UPGRADE_FILE_NAME; |
| | | } |
| | | |
| | | /** |
| | | * Returns the name of the UNIX start script file name. |
| | | * @return the name of the UNIX start script file name. |
| | | */ |