Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TASK]Implement Spring Security UserDetails & UserDetailsService interfaces to handle user details and authentication #97

Open
ulrich-jato opened this issue Oct 27, 2023 · 0 comments
Assignees
Labels
task This is a subtask of a story
Milestone

Comments

@ulrich-jato
Copy link
Collaborator

User Story:

Description

  • The UserDetails interface is a core part of Spring Security. It represents essential user information, such as a user's username, password, and their granted authorities (roles). When implementing this interface, we create a class that holds these user details. This class will include fields like username, password, and a collection of authorities.
  • The UserDetailsService interface also a core component of Spring Security. It is used to load user details during the authentication process. Implementing this interface requires defining a method called loadUserByUsername(String username). This method retrieves user details based on a given username.
@ulrich-jato ulrich-jato added the task This is a subtask of a story label Oct 27, 2023
@ulrich-jato ulrich-jato self-assigned this Oct 27, 2023
@ulrich-jato ulrich-jato added this to the Sprint 3 milestone Oct 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
task This is a subtask of a story
Projects
None yet
Development

No branches or pull requests

1 participant