Package org.jdesktop.swingx.auth
Class LoginAdapter
java.lang.Object
org.jdesktop.swingx.auth.LoginAdapter
- All Implemented Interfaces:
EventListener,LoginListener
- Direct Known Subclasses:
JXLoginPane.LoginListenerImpl
- Author:
- rbair
-
Constructor Summary
Constructors -
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.
-
Constructor Details
-
LoginAdapter
public LoginAdapter()
-
-
Method Details
-
loginSucceeded
Called by the JXLoginPane in the event of a successful login.abstract implement interface method
- Specified by:
loginSucceededin interfaceLoginListener- Parameters:
source- panel that fired the event
-
loginStarted
Called by the JXLoginPane when the Authentication operation is started.abstract implement interface method
- Specified by:
loginStartedin interfaceLoginListener- Parameters:
source- panel that fired the event
-
loginFailed
Called by the JXLoginPane in the event of a login failureabstract implement interface method
- Specified by:
loginFailedin interfaceLoginListener- Parameters:
source- panel that fired the event
-
loginCanceled
Called by the JXLoginPane in the event of a login cancellation by the user.abstract implement interface method
- Specified by:
loginCanceledin interfaceLoginListener- Parameters:
source- panel that fired the event
-