- This event has passed.
9 AM – Intro To Java
February 21, 2021 @ 9:00 am - 10:00 am
- Homework:
- For Account class add the following class attributes
- String firstName
- String lastName
- String email
- String ID
- String password
- Create the getters and setters method.
- For Message class add the following class attributes
- String senderAccountId
- List<String> recipientAccountIds
- String message
- Date sentDate
- Create the getters and setters method.
- In the EmailMain, create a menu like below
-
Welcome to AYCLOGIC Email Application Please enter your selection 1. Create an account 2. Login Enter your selection: 1 Enter the account information Enter your First Name: Gamas Enter your Last Name : Chang Enter your email : gamas@ayclogic.com Enter your password: abcdefg Email gamas@ayclogic.com is created
- After user enter account information add to the “accounts” list.
-
- For Account class add the following class attributes