This repository contains the integrative project developed in the ambit of LAPR2 course, ISEP 2021.
This application is intended to manage and overview the vaccination process performed by multiple vaccinations centers as well as many health care professionals, from the creation of centers and the vaccination process, to the viewing of statistics.
It also contains multiple brute-force and sorting algorithms, used to analyze the performance of a center, with their complexity analised using discrete mathematics theorems.
This application was developed using agile and GRASP methodologies and all the developed functionalities can be viewed in the docs folder, in the directory of their respective sprint.
- Sprint B - US11: As an administrator, I want to get a list of Employees with a given function/role.
- Sprint C - US04: As a receptionist at a vaccination center, I want to register the arrival of a SNS user to take the vaccine
- Sprint D - US16: As a center coordinator, I intend to analyze the performance of a center.
The following sequence diagram graphically represents the intended flow for the application where there is a clear separation (decoupling) between the domain classes and the user interaction classes (user interface). This decoupling is performed by classes with the suffix Controller.
The execution of some functionalities by users must be preceded and verified by an authorization mechanism based on users' roles. This verification can be carried out as follows:
Users' authentication and authorization processes are reutilizing an external component called AuthLib. Documentation regarding this component is available here.