-
Notifications
You must be signed in to change notification settings - Fork 0
/
Client.java
44 lines (36 loc) · 1001 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
import java.util.Date;
public class Client {
private String clientName;
private Date rejectDate;
private RejectReason rejectReason;
public Client(String clientName) {
this.clientName = clientName;
}
public String getClientName() {
if (clientName == null) {
clientName = "";
}
return clientName;
}
public void setClientName(String clientName) {
this.clientName = clientName;
}
public Date getRejectDate() {
if (rejectDate == null) {
rejectDate = new Date();
}
return rejectDate;
}
public void setRejectDate(Date rejectDate) {
this.rejectDate = rejectDate;
}
public RejectReason getRejectReason() {
if (rejectReason == null) {
setRejectReason(RejectReason.Undefined);
}
return rejectReason;
}
public void setRejectReason(RejectReason rejectReason) {
this.rejectReason = rejectReason;
}
}