Skip to content

dgomesdev/to_do_list_api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

To do list API

Description

This application allows the userEntity to register, login, add, modify and delete tasks. It has unit tests with Mockito and JUnit

Class diagram

classDiagram
    class User {
        -UUID id
        -String username
        -String email
        -String password
    }
    
    class Task {
        -UUID id
        -String title
        -String description
        -Priority priority
        -Status status
        -UUID userId
    }

    User "1" *-- "N" Task

Stacks Used

Technical Requirements

  • Java 17

How to Run the Application

Clone the repository/download and unzip the source code and run using an IDE.

Releases

No releases published

Packages

No packages published

Languages