Uses of Class
it.univr.passportease.exception.security.AuthenticationCredentialsNotFoundException
Package
Description
-
Uses of AuthenticationCredentialsNotFoundException in it.univr.passportease.controller.user
Modifier and TypeMethodDescriptionUserAuthController.changeEmail
(String newEmail, String oldEmail) This mutation changes the email of the user.void
UserAuthController.changePassword
(String oldPassword, String newPassword) This mutation changes the password of the user.UserMutationController.createNotification
(NotificationInput notificationInput) This mutation creates a notification.UserQueryController.getRequestTypesByUser()
This query returns the request types associated to the user.UserQueryController.getUserDetails()
This query returns the user details associated to the user.UserQueryController.getUserNotifications()
This query returns the notifications associated to the user.UserQueryController.getUserReservations()
This query returns the reservations associated to the user.void
UserAuthController.logout()
This mutation invalidates the access token and the refresh token of the user, it is shared between users and workers.UserAuthController.refreshAccessToken
(String refreshToken) This mutation refreshes the access token and the refresh token of the user. -
Uses of AuthenticationCredentialsNotFoundException in it.univr.passportease.controller.worker
Modifier and TypeMethodDescriptionWorkerMutationController.createRequest
(RequestInput requestInput) This mutation creates a request.void
WorkerMutationController.deleteRequest
(String requestID) This mutation deletes a request.WorkerMutationController.modifyRequest
(String requestID, RequestInput requestInput) This mutation modifies a request. -
Uses of AuthenticationCredentialsNotFoundException in it.univr.passportease.helper
Modifier and TypeMethodDescriptionRequestAnalyzer.getTokenFromRequest()
This method extracts the JWT token from the Authorization header of the request. -
Uses of AuthenticationCredentialsNotFoundException in it.univr.passportease.service.userworker
Modifier and TypeMethodDescriptionUserWorkerMutationService.changeEmail
(String newEmail, String oldEmail) Change email in the databasevoid
UserWorkerMutationService.changePassword
(String oldPassword, String newPassword) Change password in the databasevoid
UserWorkerMutationService.logout()
Logs out the user / worker -
Uses of AuthenticationCredentialsNotFoundException in it.univr.passportease.service.userworker.impl
Modifier and TypeMethodDescriptionUserWorkerMutationServiceImpl.changeEmail
(String newEmail, String oldEmail) Changes the email of the user or worker.void
UserWorkerMutationServiceImpl.changePassword
(String oldPassword, String newPassword) Changes the password of the user or worker.void
UserWorkerMutationServiceImpl.logout()
Logs out the user by invalidating the access token and the refresh token.