-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmail.java
More file actions
84 lines (75 loc) · 2.7 KB
/
Email.java
File metadata and controls
84 lines (75 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package emailapp;
import java.util.Scanner;
public class Email {
private String firstName;
private String lastName;
private String password;
private String department;
private String email;
private int mailboxCapacity = 500;
private int defaultPasswordLength = 10;
private String alternateEmail;
private String companySuffix = "company.com";
// constructor to receive the first name and last name
public Email(String firstName, String lastName) {
this.firstName = firstName;
this.lastName = lastName;
//System.out.println("Email Created: " + this.firstName + " " + this.lastName);
// call a method asking for the department - return the department
this.department = setDepartment();
//System.out.println("Department: " + this.department);
// call a method that returns a random password
this.password = randomPassword(defaultPasswordLength);
System.out.println("Your password is: " + this.password);
// combine elements to generate email
email = firstName.toLowerCase() + "." + lastName.toLowerCase() + "@" + department + "." + companySuffix;
//System.out.println("Your email is: " + email);
}
// Ask for the department //private method
private String setDepartment() {
System.out.print(
"New Worker:" + firstName + "\nDepartment Codes:\n1 for Sales\n2 for Development\n3 for Accounting\n0 for none\n Enter department code: ");
Scanner in = new Scanner(System.in);
int depChoice = in.nextInt();
if (depChoice == 1) {
return "sales";
} else if (depChoice == 2) {
return "dev";
} else if (depChoice == 3) {
return "acct";
} else {
return "";
}
}
// generate a random password
private String randomPassword(int length) {
String passwordSet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%";
char[] password = new char[length];
for (int i = 0; i < length; i++) {
int rand = (int) (Math.random() * passwordSet.length());
password[i] = passwordSet.charAt(rand);
}
return new String(password);
}
//set the mailbox capacity
public void setMailboxCapacity(int capacity) {
this.mailboxCapacity = capacity;
}
// set the alternate email
public void setAlternateEmail(String altEmail) {
this.alternateEmail = altEmail;
}
// change the password
public void changePassword(String password) {
this.password = password;
}
//get methods
public int getMailboxCapacity() {return mailboxCapacity;}
public String getAlternateEmail() {return alternateEmail;}
public String getPassword() {return password;}
public String showInfo() {
return "Display Name : " + firstName + " " + lastName +
"\nCompany Email :" + email +
"\nMailbox Capacity :" + mailboxCapacity + "mb";
}
}