Interface LoginListener
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
JXLoginPane.LoginListenerImpl, LoginAdapter
LoginListener provides a listener for the actual login
process.
-
Method Summary
Modifier and TypeMethodDescriptionvoidloginCanceled(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 Details
-
loginFailed
Called by the JXLoginPane in the event of a login failure- Parameters:
source- panel that fired the event
-
loginStarted
Called by the JXLoginPane when the Authentication operation is started.- Parameters:
source- panel that fired the event
-
loginCanceled
Called by the JXLoginPane in the event of a login cancellation by the user.- Parameters:
source- panel that fired the event
-
loginSucceeded
Called by the JXLoginPane in the event of a successful login.- Parameters:
source- panel that fired the event
-