Lines Matching refs:esd
483 EnterSomethingDialog esd = new EnterSomethingDialog(loginFrame, "Keyboard Interactive Authentication",
486 esd.setVisible(true);
488 if (esd.answer == null)
491 result[i] = esd.answer;
566 EnterSomethingDialog esd = new EnterSomethingDialog(loginFrame, "DSA Authentication",
568 esd.setVisible(true);
570 boolean res = conn.authenticateWithPublicKey(username, key, esd.answer);
586 EnterSomethingDialog esd = new EnterSomethingDialog(loginFrame, "RSA Authentication",
588 esd.setVisible(true);
590 boolean res = conn.authenticateWithPublicKey(username, key, esd.answer);
633 final EnterSomethingDialog esd = new EnterSomethingDialog(loginFrame,
637 esd.setVisible(true);
639 if (esd.answer == null)
642 boolean res = conn.authenticateWithPassword(username, esd.answer);