ProjectBuilder.java
1.96 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 com.srh.api.builder;
import com.srh.api.model.*;
import java.time.LocalDate;
import java.util.List;
public final class ProjectBuilder {
private Integer id;
private String name;
private String description;
private LocalDate date;
private Boolean visible;
private Situations situation;
private Admin admin;
private List<Evaluator> evaluators;
private List<Item> itens;
private ProjectBuilder() {
}
public static ProjectBuilder aProject() {
return new ProjectBuilder();
}
public ProjectBuilder withId(Integer id) {
this.id = id;
return this;
}
public ProjectBuilder withName(String name) {
this.name = name;
return this;
}
public ProjectBuilder withDescription(String description) {
this.description = description;
return this;
}
public ProjectBuilder withDate(LocalDate date) {
this.date = date;
return this;
}
public ProjectBuilder withVisible(Boolean visible) {
this.visible = visible;
return this;
}
public ProjectBuilder withSituation(Situations situation) {
this.situation = situation;
return this;
}
public ProjectBuilder withAdmin(Admin admin) {
this.admin = admin;
return this;
}
public ProjectBuilder withEvaluators(List<Evaluator> evaluators) {
this.evaluators = evaluators;
return this;
}
public ProjectBuilder withItens(List<Item> itens) {
this.itens = itens;
return this;
}
public Project build() {
Project project = new Project();
project.setId(id);
project.setName(name);
project.setDescription(description);
project.setDate(date);
project.setVisible(visible);
project.setSituation(situation);
project.setAdmin(admin);
project.setEvaluators(evaluators);
project.setItens(itens);
return project;
}
}