File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 36
36
* for ALL 3 of user, password, and URL. This can be done by either updating
37
37
* this file directly or supplying the 3 values as command-line options
38
38
* and user input. The password is read from console or standard input.
39
- * java UCPLabeling -url <url> -user <user>
39
+ * java UCPLabeling -l <url> -u <user>
40
40
* If you do not update all the defaults, the program proceeds but
41
41
* will hit error when connecting.
42
42
*/
@@ -181,10 +181,10 @@ static void showError(String msg, Throwable exc) {
181
181
182
182
static void getRealUserPasswordUrl (String args []) throws Exception {
183
183
// URL can be modified in file, or taken from command-line
184
- url = getOptionValue (args , "-url " , DEFAULT_URL );
184
+ url = getOptionValue (args , "-l " , DEFAULT_URL );
185
185
186
186
// DB user can be modified in file, or taken from command-line
187
- user = getOptionValue (args , "-user " , DEFAULT_USER );
187
+ user = getOptionValue (args , "-u " , DEFAULT_USER );
188
188
189
189
// DB user's password can be modified in file, or explicitly entered
190
190
readPassword (" Password for " + user + ": " );
You can’t perform that action at this time.
0 commit comments