Package org.example.crmedu.application.event
package org.example.crmedu.application.event
Manages the event-driven mechanisms within the application, enabling asynchronous processing.
The OnRegistrationCompleteEvent
class represents an event that is triggered upon the successful completion of a user registration process. It carries
the necessary data related to the registered user.
The RegistrationListener
class listens for OnRegistrationCompleteEvent
occurrences and executes appropriate actions, such as sending
confirmation emails or performing post-registration tasks.
-
ClassesClassDescriptionEvent triggered upon successful completion of a user registration process.Listens for
OnRegistrationCompleteEvent
and sends a verification email to the user.