Uses of Class
com.skava.model.requests.UserCredentialsRequest
Packages that use UserCredentialsRequest
Package
Description
This package contains the user service implementation classes.
This package contains the controller classes.
-
Uses of UserCredentialsRequest in com.skava.service.impl
Methods in com.skava.service.impl with parameters of type UserCredentialsRequestModifier and TypeMethodDescriptionGetAllSecurityQuestionsImpl.methodFallback
(UserCredentialsRequest input) Circuit breaker fall-back method monitors for failures and once failures reach certain threshold, the circuit breaker trips and returns error response accordingly - Method fallback.GetSecurityQuestionsImpl.methodFallback
(UserCredentialsRequest request) Circuit breaker fall-back method monitors for failures and once failures reach certain threshold, the circuit breaker trips and returns error response accordingly - Method fallback.UpdateSecurityQuestionsImpl.methodFallback
(UserCredentialsRequest request) Circuit breaker fall-back method monitors for failures and once failures reach certain threshold, the circuit breaker trips and returns error response accordingly.UpdateUserPasswordServiceImpl.methodFallback
(UserCredentialsRequest request) Circuit breaker fall-back method monitors for failures and once failures reach certain threshold, the circuit breaker trips and returns error response accordingly.ValidateSecurityAnswerServiceImpl.methodFallback
(UserCredentialsRequest request) Circuit breaker fall-back method monitors for failures and once failures reach certain threshold, the circuit breaker trips and returns error response accordingly.GetAllSecurityQuestionsImpl.process
(UserCredentialsRequest request) This service is used to get user security questions without answers.GetSecurityQuestionsImpl.process
(UserCredentialsRequest request) This service is used to get user security questions with answers for the requested user.UpdateSecurityQuestionsImpl.process
(UserCredentialsRequest request) This service is used to update security questions and answers for the requested user.UpdateUserPasswordServiceImpl.process
(UserCredentialsRequest request) This service is used to update password for the requested ACTIVE user.UserCheckUpdatePasswordServiceImpl.process
(UserCredentialsRequest request) This service is used to update password for the requested ACTIVE user.ValidateSecurityAnswerServiceImpl.process
(@Valid UserCredentialsRequest request) This method will validate the user security question and answer from Database and user provided. -
Uses of UserCredentialsRequest in com.skava.web
Methods in com.skava.web with parameters of type UserCredentialsRequestModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<SecurityQuestions>>
CredentialsController.getAllSecurityQuestions
(UserCredentialsRequest credentialRequest, Long collectionId, String authToken, String locale, String version, long storeId) This service endpoint is used to load security questions without answersorg.springframework.http.ResponseEntity<List<SecurityQuestions>>
CredentialsController.updateSecurityQuestions
(long userId, UserCredentialsRequest credentialRequest, Long collectionId, String authToken, String locale, String version, long storeId) This service endpoint is used to update the security questionsorg.springframework.http.ResponseEntity<Object>
CredentialsController.updateUserPasssword
(long userId, UserCredentialsRequest credentialRequest, Long collectionId, String authToken, String locale, String version, long storeId) This service endpoint is used to update the user passwordorg.springframework.http.ResponseEntity<Object>
CredentialsController.validateSecurityAnswers
(UserCredentialsRequest credentialRequest, boolean sendResetMail, Long collectionId, String authToken, String locale, String version, long storeId) This service is used to rest password by validating security questions