Package org.jdesktop.swingx.auth
Class LoginAdapter
- java.lang.Object
-
- org.jdesktop.swingx.auth.LoginAdapter
-
- All Implemented Interfaces:
java.util.EventListener,LoginListener
- Direct Known Subclasses:
JXLoginPane.LoginListenerImpl
public abstract class LoginAdapter extends java.lang.Object implements LoginListener
-
-
Constructor Summary
Constructors Constructor Description LoginAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidloginCanceled(LoginEvent source)Called by the JXLoginPane in the event of a login cancellation by the user.voidloginFailed(LoginEvent source)Called by the JXLoginPane in the event of a login failurevoidloginStarted(LoginEvent source)Called by the JXLoginPane when the Authentication operation is started.voidloginSucceeded(LoginEvent source)Called by the JXLoginPane in the event of a successful login.
-
-
-
Method Detail
-
loginSucceeded
public void loginSucceeded(LoginEvent source)
Description copied from interface:LoginListenerCalled by the JXLoginPane in the event of a successful login.- Specified by:
loginSucceededin interfaceLoginListener- Parameters:
source- panel that fired the event
-
loginStarted
public void loginStarted(LoginEvent source)
Description copied from interface:LoginListenerCalled by the JXLoginPane when the Authentication operation is started.- Specified by:
loginStartedin interfaceLoginListener- Parameters:
source- panel that fired the event
-
loginFailed
public void loginFailed(LoginEvent source)
Description copied from interface:LoginListenerCalled by the JXLoginPane in the event of a login failure- Specified by:
loginFailedin interfaceLoginListener- Parameters:
source- panel that fired the event
-
loginCanceled
public void loginCanceled(LoginEvent source)
Description copied from interface:LoginListenerCalled by the JXLoginPane in the event of a login cancellation by the user.- Specified by:
loginCanceledin interfaceLoginListener- Parameters:
source- panel that fired the event
-
-