org.jdesktop.swingx.auth
Class LoginAdapter

java.lang.Object
  extended by org.jdesktop.swingx.auth.LoginAdapter
All Implemented Interfaces:
EventListener, LoginListener
Direct Known Subclasses:
JXLoginPane.LoginListenerImpl

public abstract class LoginAdapter
extends Object
implements LoginListener


Constructor Summary
LoginAdapter()
           
 
Method Summary
 void loginCanceled(LoginEvent source)
          Called by the JXLoginPane in the event of a login cancellation by the user.
 void loginFailed(LoginEvent source)
          Called by the JXLoginPane in the event of a login failure
 void loginStarted(LoginEvent source)
          Called by the JXLoginPane when the Authentication operation is started.
 void loginSucceeded(LoginEvent source)
          Called by the JXLoginPane in the event of a successful login.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LoginAdapter

public LoginAdapter()
Method Detail

loginSucceeded

public void loginSucceeded(LoginEvent source)
Description copied from interface: LoginListener
Called by the JXLoginPane in the event of a successful login.

Specified by:
loginSucceeded in interface LoginListener
Parameters:
source - panel that fired the event

loginStarted

public void loginStarted(LoginEvent source)
Description copied from interface: LoginListener
Called by the JXLoginPane when the Authentication operation is started.

Specified by:
loginStarted in interface LoginListener
Parameters:
source - panel that fired the event

loginFailed

public void loginFailed(LoginEvent source)
Description copied from interface: LoginListener
Called by the JXLoginPane in the event of a login failure

Specified by:
loginFailed in interface LoginListener
Parameters:
source - panel that fired the event

loginCanceled

public void loginCanceled(LoginEvent source)
Description copied from interface: LoginListener
Called by the JXLoginPane in the event of a login cancellation by the user.

Specified by:
loginCanceled in interface LoginListener
Parameters:
source - panel that fired the event