org.jdesktop.swingx.auth
Interface LoginListener

All Known Implementing Classes:
JXLoginPanel.LoginListenerImpl, LoginAdapter

public interface LoginListener


Method Summary
 void loginCanceled(LoginEvent source)
          Called by the JXLoginPanel in the event of a login cancellation by the user.
 void loginFailed(LoginEvent source)
          Called by the JXLoginPanel in the event of a login failure
 void loginStarted(LoginEvent source)
          Called by the JXLoginPanel when the Authentication operation is started.
 void loginSucceeded(LoginEvent source)
          Called by the JXLoginPanel in the event of a successful login.
 

Method Detail

loginFailed

void loginFailed(LoginEvent source)
Called by the JXLoginPanel in the event of a login failure

Parameters:
source - panel that fired the event

loginStarted

void loginStarted(LoginEvent source)
Called by the JXLoginPanel when the Authentication operation is started.

Parameters:
source - panel that fired the event

loginCanceled

void loginCanceled(LoginEvent source)
Called by the JXLoginPanel in the event of a login cancellation by the user.

Parameters:
source - panel that fired the event

loginSucceeded

void loginSucceeded(LoginEvent source)
Called by the JXLoginPanel in the event of a successful login.

Parameters:
source - panel that fired the event