Skip to content

lhedrick05/CodingEventsJava

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodingEventsJava

Our Person class might hold the following fields:

id (int) - the unique user ID firstName (String) - the user’s first name lastName (String) - the user’s last name email (String) - the user’s email, which will also function as their username password (String) - the user’s password The class would need getters for all of these fields. It could have setters for all fields except id (since it shouldn’t change).

The Person class might also have the following references:

PersonProfile - a class to gather up all of the profile information about the user List eventsAttending - to store events the user wants to attend List eventsOwned - a different list, to store the events the user has created Person would have a many-to-many relationship with Event via List eventsAttending. It would have a one-to-many relationship with Event via List eventsOwned.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Java 74.0%
  • HTML 26.0%