[x] Build tester method (public static void main) for Person Pojo. Test zero argument and all argument constructor. build toString method to display attributes of the class.
toString method created by @Entity tag
[x] Create a Day POJO which has attributes for a day, including those not specified in tech talk
[x] Add API to create a person
/createPerson
[x] Add API to add stats for a person on a specific day
/setStats
[x] Add API to get data for a person
/getPerson
[x] Add API to get stats for a person on a specific day
/getStats
[x] Add API to delete person
/deletePerson
[x] Correct the BUG in setStats! Currently, it won't let you do more than one date.
[x] extra: Calculate activeSteps based on statistics from person
[x] extra: login system (must pass email/password to view/edit stats)
Stores SHA256 hash instead of password for extra security
@Entity
tag