com.webforj.component.login.event.LoginCancelEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webforj-login Show documentation
Show all versions of webforj-login Show documentation
The Login component provides a form for user authentication using a username and password.
It's designed to work with password managers, supports internationalization, and is responsive across various device sizes.
The newest version!
package com.webforj.component.login.event;
import com.webforj.component.element.annotation.EventName;
import com.webforj.component.event.ComponentEvent;
import com.webforj.component.login.Login;
import java.util.Map;
/**
* Emitted when the cancel button is clicked.
*
* @author Hyyan Abo Fakher
* @since 23.06
*/
@EventName("dwc-login-cancel")
public class LoginCancelEvent extends ComponentEvent {
/**
* Creates an cancel event.
*
* @param login the login component
* @param eventMap the event map
*/
public LoginCancelEvent(Login login, Map eventMap) {
super(login, eventMap);
}
}