ItemBuilder.java
1.99 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
package com.srh.api.builder;
import com.srh.api.model.*;
import java.util.List;
public final class ItemBuilder {
private Integer id;
private String name;
private String description;
private List<ItemRating> itemRatings;
private List<Recommendation> recommendations;
private Project project;
private TypeItem typeItem;
private List<Tag> tags;
private List<Attribute> attributes;
private ItemBuilder() {
}
public static ItemBuilder anItem() {
return new ItemBuilder();
}
public ItemBuilder withId(Integer id) {
this.id = id;
return this;
}
public ItemBuilder withName(String name) {
this.name = name;
return this;
}
public ItemBuilder withDescription(String description) {
this.description = description;
return this;
}
public ItemBuilder withItemRatings(List<ItemRating> itemRatings) {
this.itemRatings = itemRatings;
return this;
}
public ItemBuilder withRecommendations(List<Recommendation> recommendations) {
this.recommendations = recommendations;
return this;
}
public ItemBuilder withProject(Project project) {
this.project = project;
return this;
}
public ItemBuilder withTypeItem(TypeItem typeItem) {
this.typeItem = typeItem;
return this;
}
public ItemBuilder withTags(List<Tag> tags) {
this.tags = tags;
return this;
}
public ItemBuilder withAttributes(List<Attribute> attributes) {
this.attributes = attributes;
return this;
}
public Item build() {
Item item = new Item();
item.setId(id);
item.setName(name);
item.setDescription(description);
item.setItemRatings(itemRatings);
item.setRecommendations(recommendations);
item.setProject(project);
item.setTypeItem(typeItem);
item.setTags(tags);
item.setAttributes(attributes);
return item;
}
}