Uses of Record Class
com.ericbouchut.learndev.auth.dto.RegisterForm
Packages that use RegisterForm
-
Uses of RegisterForm in com.ericbouchut.learndev.admin
Methods in com.ericbouchut.learndev.admin with parameters of type RegisterFormModifier and TypeMethodDescriptionAccountAdminService.createInstructor(RegisterForm form, User actor, String ipAddress) Create anINSTRUCTORaccount (same uniqueness and hashing rules as self-registration, different seeded role).AdminController.createInstructor(@Valid RegisterForm form, org.springframework.validation.BindingResult binding, Principal principal, jakarta.servlet.http.HttpServletRequest request) Create an instructor account. -
Uses of RegisterForm in com.ericbouchut.learndev.auth
Methods in com.ericbouchut.learndev.auth with parameters of type RegisterFormModifier and TypeMethodDescriptionAuthController.register(@Valid RegisterForm form, org.springframework.validation.BindingResult binding, jakarta.servlet.http.HttpServletRequest request) Processes a submitted registration form.RegistrationService.register(RegisterForm form) Registers a new account with the defaultSTUDENTrole.RegistrationService.register(RegisterForm form, String roleName) Registers a new account with the given seeded role (self-registration usesSTUDENT; the admin area createsINSTRUCTORaccounts).