Uses of Class
com.markvarga21.studentmanager.entity.AppUser
Packages that use AppUser
Package
Description
This package contains the controllers of the application.
A package containing the applications repositories.
A package for handling authentication and authorization.
This package contains the implementation of the authentication service.
-
Uses of AppUser in com.markvarga21.studentmanager.controller
Methods in com.markvarga21.studentmanager.controller that return types with arguments of type AppUserModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<AppUser>
AppUserController.fetchUsers
(Integer page, Integer size) Endpoint for fetching all users.org.springframework.http.ResponseEntity<AppUser>
AppUserController.getUserById
(Long id) Endpoint for fetching a user by its id.org.springframework.http.ResponseEntity<AppUser>
AppUserController.registerUser
(@Valid AppUser user) Endpoint for registering a user.Methods in com.markvarga21.studentmanager.controller with parameters of type AppUserModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<AppUser>
AppUserController.registerUser
(@Valid AppUser user) Endpoint for registering a user. -
Uses of AppUser in com.markvarga21.studentmanager.repository
Methods in com.markvarga21.studentmanager.repository that return types with arguments of type AppUserModifier and TypeMethodDescriptionAppUserRepository.findByFirstNameAndLastName
(String firstName, String lastName) This method is used to find a user by their first- and last name.AppUserRepository.findByUsername
(String username) This method is used to find a user by username. -
Uses of AppUser in com.markvarga21.studentmanager.service.auth
Methods in com.markvarga21.studentmanager.service.auth that return AppUserModifier and TypeMethodDescriptionAppUserService.getUserById
(Long id) Method for fetching a user by its id.AppUserService.registerUser
(AppUser user) This method is used to register a user.Methods in com.markvarga21.studentmanager.service.auth that return types with arguments of type AppUserModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<AppUser>
AppUserService.getAllUsers
(Integer page, Integer size) This method is used to fetch all users.AppUserService.getUserByUsername
(String username) This method is used to get the user by its username.Methods in com.markvarga21.studentmanager.service.auth with parameters of type AppUserModifier and TypeMethodDescriptionAppUserService.registerUser
(AppUser user) This method is used to register a user. -
Uses of AppUser in com.markvarga21.studentmanager.service.auth.impl
Methods in com.markvarga21.studentmanager.service.auth.impl that return AppUserModifier and TypeMethodDescriptionAppUserServiceImpl.getUserById
(Long id) Method for fetching a user by its id.AppUserServiceImpl.registerUser
(AppUser user) This method is used to register a user.Methods in com.markvarga21.studentmanager.service.auth.impl that return types with arguments of type AppUserModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<AppUser>
AppUserServiceImpl.getAllUsers
(Integer page, Integer size) This method is used to fetch all users.AppUserServiceImpl.getUserByUsername
(String username) This method is used to get the user by the username.Methods in com.markvarga21.studentmanager.service.auth.impl with parameters of type AppUserModifier and TypeMethodDescriptionAppUserServiceImpl.registerUser
(AppUser user) This method is used to register a user.