Interface UserCreationHook
- All Known Implementing Classes:
UserCreationHookAdapter
public interface UserCreationHook
User creation hook allowing execute additional actions.
- Author:
- Marcin Macias 13 sep 2016
-
Method Summary
Modifier and TypeMethodDescriptionvoid
beforeUserCreation
(User user) Executed before user creation.void
userCreated
(User user) Executed after user creation.
-
Method Details
-
beforeUserCreation
Executed before user creation. Failure will prevent user creation.- Parameters:
user
- User to create
-
userCreated
Executed after user creation.- Parameters:
user
- Created user
-