Package org.jdesktop.swingx.auth
Interface LoginListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
JXLoginPane.LoginListenerImpl,LoginAdapter
public interface LoginListener extends java.util.EventListenerLoginListener provides a listener for the actual login process.- Author:
- Bino George, Shai Almog
-
-
Method Summary
All Methods Instance Methods Abstract 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
-
loginFailed
void loginFailed(LoginEvent source)
Called by the JXLoginPane in the event of a login failure- Parameters:
source- panel that fired the event
-
loginStarted
void loginStarted(LoginEvent source)
Called by the JXLoginPane when the Authentication operation is started.- Parameters:
source- panel that fired the event
-
loginCanceled
void loginCanceled(LoginEvent source)
Called by the JXLoginPane 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 JXLoginPane in the event of a successful login.- Parameters:
source- panel that fired the event
-
-