public boolean prompt() {
Frame toplevel = new Frame("Authentication Required");
toplevel.add("Center", this);
toplevel.pack();
toplevel.show();
// Set focus to the user name:
txtUser.requestFocus();
// Wait for completion, pack up the result, and delete GUI:
boolean result = waitForCompletion();
this.user = txtUser.getText();