| | |
| | | * CDDL HEADER END |
| | | * |
| | | * |
| | | * Copyright 2007-2009 Sun Microsystems, Inc. |
| | | * Copyright 2007-2010 Sun Microsystems, Inc. |
| | | */ |
| | | |
| | | package org.opends.quicksetup.upgrader; |
| | |
| | | import org.opends.server.util.args.ArgumentException; |
| | | import org.opends.server.util.args.StringArgument; |
| | | |
| | | import java.util.logging.Logger; |
| | | import java.io.File; |
| | | import org.opends.server.util.DynamicConstants; |
| | | |
| | |
| | | /** Prefix for log files. */ |
| | | static public final String LOG_FILE_PREFIX = "opends-upgrade-"; |
| | | |
| | | static private final Logger LOG = |
| | | Logger.getLogger(UpgradeLauncher.class.getName()); |
| | | |
| | | /** Short form of the option for specifying the installation package file. */ |
| | | static public final Character FILE_OPTION_SHORT = 'f'; |
| | | |