Uses of Class
com.greenloop.auth_service.dto.AuthResponse
Packages that use AuthResponse
-
Uses of AuthResponse in com.greenloop.auth_service.controller
Methods in com.greenloop.auth_service.controller that return types with arguments of type AuthResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<AuthResponse> AuthController.adminSignup(@Valid SignUpRequest request, jakarta.servlet.http.HttpServletResponse response) Registers a new admin user.org.springframework.http.ResponseEntity<AuthResponse> AuthController.login(@Valid LoginRequest request, jakarta.servlet.http.HttpServletResponse response) Authenticates a user and issues a JWT cookie.org.springframework.http.ResponseEntity<AuthResponse> AuthController.signup(@Valid SignUpRequest request, jakarta.servlet.http.HttpServletResponse response) Registers a new end-user and sets a JWT in an HTTP-only cookie. -
Uses of AuthResponse in com.greenloop.auth_service.service
Methods in com.greenloop.auth_service.service that return AuthResponseModifier and TypeMethodDescriptionAuthService.adminSignup(SignUpRequest request, jakarta.servlet.http.HttpServletResponse response) Registers a new user with the ADMIN role.AuthService.login(LoginRequest request, jakarta.servlet.http.HttpServletResponse response) Authenticates a user and sets JWT in cookie.AuthService.signup(SignUpRequest request, jakarta.servlet.http.HttpServletResponse response) Registers a new user and sets JWT in cookie.