-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathContact.java
More file actions
39 lines (37 loc) · 776 Bytes
/
Contact.java
File metadata and controls
39 lines (37 loc) · 776 Bytes
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
public class Contact {
private String firstName;
private String lastName;
private String email;
private String id;
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Contact(String firstName, String lastName, String email, String id) {
super();
this.firstName = firstName;
this.lastName = lastName;
this.email = email;
this.id = id;
}
}