diff options
Diffstat (limited to 'netx/net/sourceforge/jnlp/security/JNLPAuthenticator.java')
-rw-r--r-- | netx/net/sourceforge/jnlp/security/JNLPAuthenticator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netx/net/sourceforge/jnlp/security/JNLPAuthenticator.java b/netx/net/sourceforge/jnlp/security/JNLPAuthenticator.java index 2770291..36b3233 100644 --- a/netx/net/sourceforge/jnlp/security/JNLPAuthenticator.java +++ b/netx/net/sourceforge/jnlp/security/JNLPAuthenticator.java @@ -51,7 +51,7 @@ public class JNLPAuthenticator extends Authenticator { String type = this.getRequestorType() == RequestorType.PROXY ? "proxy" : "web"; // request auth info from user - PasswordAuthenticationDialog pwDialog = new PasswordAuthenticationDialog(); + PasswordAuthenticationPane pwDialog = new PasswordAuthenticationPane(); PasswordAuthentication auth = pwDialog.askUser(this.getRequestingHost(), this.getRequestingPort(), this.getRequestingPrompt(), type); // send it along |