com.jniwrapper.win32.ie.event
Interface AuthenticationHandler


public interface AuthenticationHandler

Handler of authenticate event from the browser object.

The user name and password options handle basic, digest and NTLM authentication schemes. Also, it can be using for proxy authentication


Method Summary
 java.lang.String getPassword()
          Gets a string value that contains the password to use for authentication.
 java.lang.String getUserName()
          Gets a string value that contains the user name to use for authentication.
 void onAuthenticate()
          Invokes when authentication operation is required.
 

Method Detail

onAuthenticate

void onAuthenticate()
Invokes when authentication operation is required.

In this method a dialog wich asks username and password can be displayed. After this method is done the getUserName and getPassword methods will be invoked.


getUserName

java.lang.String getUserName()
Gets a string value that contains the user name to use for authentication.

Returns:
a string value that contains the user name to use for authentication

getPassword

java.lang.String getPassword()
Gets a string value that contains the password to use for authentication.

Returns:
a string value that contains the password to use for authentication