Uses of Class
com.broadleafcommerce.auth.user.api.dto.ChangePasswordForm
-
Packages that use ChangePasswordForm Package Description com.broadleafcommerce.auth.user.service.password com.broadleafcommerce.auth.user.validation com.broadleafcommerce.auth.user.web.endpoint -
-
Uses of ChangePasswordForm in com.broadleafcommerce.auth.user.service.password
Methods in com.broadleafcommerce.auth.user.service.password with parameters of type ChangePasswordForm Modifier and Type Method Description boolean
DefaultUserPasswordService. changePassword(ChangePasswordForm changePasswordForm, org.springframework.validation.BindingResult errors)
boolean
UserPasswordService. changePassword(ChangePasswordForm changePasswordForm, org.springframework.validation.BindingResult errors)
From the providedChangePasswordForm
, attempt to change the user's password. -
Uses of ChangePasswordForm in com.broadleafcommerce.auth.user.validation
Methods in com.broadleafcommerce.auth.user.validation with parameters of type ChangePasswordForm Modifier and Type Method Description void
ChangePasswordFormValidator. validate(User currentUser, ChangePasswordForm changePasswordForm, org.springframework.validation.Errors errors)
Verifies that all of the supplied fields in the givenChangePasswordForm
are correct, placing any errors into the givenErrors
.void
DefaultChangePasswordFormValidator. validate(User currentUser, ChangePasswordForm changePasswordForm, org.springframework.validation.Errors errors)
-
Uses of ChangePasswordForm in com.broadleafcommerce.auth.user.web.endpoint
Methods in com.broadleafcommerce.auth.user.web.endpoint with parameters of type ChangePasswordForm Modifier and Type Method Description org.springframework.web.servlet.ModelAndView
AuthenticationController. getChangePasswordView(org.springframework.ui.Model model, ChangePasswordForm changePasswordForm, String redirectUrl)
org.springframework.web.servlet.ModelAndView
AuthenticationController. processChangePasswordRequest(javax.servlet.http.HttpServletRequest request, ChangePasswordForm changePasswordForm, String redirectUrl, org.springframework.validation.BindingResult errors, org.springframework.ui.Model model, javax.servlet.http.HttpServletResponse httpServletResponse)
org.springframework.http.ResponseEntity<Void>
EmbeddedAuthenticationController. processChangePasswordRequest(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, ChangePasswordForm changePasswordForm)
-