Class RegistrationUserEventListener
- java.lang.Object
-
- org.silverpeas.core.notification.system.CDIResourceEventListener<UserEvent>
-
- org.silverpeas.core.web.authentication.credentials.RegistrationUserEventListener
-
- All Implemented Interfaces:
ResourceEventListener<UserEvent>
@Bean @Singleton public class RegistrationUserEventListener extends CDIResourceEventListener<UserEvent>
A listener of events about a given user account in Silverpeas.It is in charge of performing some operations linked to user registration on user administration events.
- Author:
- silveryocha
-
-
Field Summary
-
Fields inherited from class org.silverpeas.core.notification.system.CDIResourceEventListener
logger
-
-
Constructor Summary
Constructors Constructor Description RegistrationUserEventListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onCreation(UserEvent event)
An event on the creation of a resource has be listened.-
Methods inherited from class org.silverpeas.core.notification.system.CDIResourceEventListener
onEvent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.silverpeas.core.notification.system.ResourceEventListener
dispatchEvent, isEnabled, onDeletion, onMove, onRecovery, onRemoving, onUnlock, onUpdate
-
-
-
-
Method Detail
-
onCreation
public void onCreation(UserEvent event)
Description copied from interface:ResourceEventListener
An event on the creation of a resource has be listened. By default, this method does nothing.- Parameters:
event
- the event on the creation of a resource.
-
-