-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathClient.java
59 lines (44 loc) · 943 Bytes
/
Client.java
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
package com.ifood.demo.client;
import java.util.UUID;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import lombok.Data;
import lombok.RequiredArgsConstructor;
@Entity
@Data
@RequiredArgsConstructor
public class Client {
private @Id @GeneratedValue UUID id;
private final String name;
private final String email;
private final String phone;
protected Client() {
this.name = null;
this.email = null;
this.phone = null;
}
public Client(String name, String email, String phone) {
this.name = name;
this.email = email;
this.phone = phone;
}
public String toString() {
return this.name+"-"+this.email+"-"+this.phone;
}
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public String getName() {
return name;
}
public String getEmail() {
return email;
}
public String getPhone() {
return phone;
}
}