fssa-batch3 / fssa-batch3/sec_a_aravindth.kannan__corejava_project_2
User module | Login feature
- Dominant language
- Java
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
### DAO
- [ ] findUserByEmail()
### Service
- [ ] loginUser()
### Service Tests
- [ ] testLoginSuccess()
- [ ] testLoginFail()
- [ ] testLoginInvalidEmailCheck()
### Estimation
- [ ] 5 hours
### Flow Chart
```mermaid
graph TD
A[[Start]] --> B([Validate User])
B --> |Valid| C[(Retrieve User from Database)]
B --> |Invalid| E{{Validation Exception}}
C --> |User Not Found| F{{ServiceException}}
C --> |User Found| D([Check Password Match])
D --> |Returns User| I([Login Successful])
E --> G([Login Failed])
F --> G
D --> |Password Mismatch| G
G --> H[[End]]
I --> H
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.