Question: Task 3 Your application allows you to manage Task and Project entities. You have to add missing annotations and code over entity classes and converters

Task 3
Your application allows you to manage Task and Project
entities.
You have to add missing annotations and code over entity classes
and converters to make it possible to store Task and Project
and their relations in specified tables.
Requirements
Project. updates should be persisted in a table with the
following structure:
Table name: PROJECT_EVENT_UPDATES
Columns:
PROJECT_ID : foreign key;
USER_NAME : value of Itemupdate.user ;
EVENT_DATE: value of Itemupdate. date .
Task, watchers should be persisted in a table with the
following structure:
Table name: TODO_WATCHERS :
Columns:
TODO_ID : foreign key;
LOGIN: value of string from the set.Task 3
NAME: Key trom the Map;
DESCRIPTION: value from the Map .
Tables
The following tables should exist after implementation:
PROJECTS with columnS PROJECT_ID, NAME ;
PROJECT_EVENT_UPDATES with columnS PROJECT_ID,
USER_NAME, EVENT_DATE ;
TODOS with columns TODO_ID, SUBJECT, DETAILS;
TODO_WATCHERS with columnS TODO_ID, LOGIN ;
TODO_COMMENTS with columns TODO_ID, AUTHOR,
ADD_DATE, COMMENT ;
TODO_UPDATES with columns TODO_ID, AUTHOR,
UPDATE_DATE;
TODO_WATCHERS with columnS TODO_ID, NAME,
DESCRIPTION .
Assumptions
Class names and function signatures should not be changed.
 Task 3 Your application allows you to manage Task and Project

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!