Skip to content

Commit 823885e

Browse files
committed
feat: udpate structure terminology
Signed-off-by: Otavio Santana <[email protected]>
1 parent 15926f5 commit 823885e

File tree

1 file changed

+7
-7
lines changed
  • jnosql-tinkerpop/src/test/java/org/eclipse/jnosql/databases/tinkerpop/mapping/entities

1 file changed

+7
-7
lines changed

jnosql-tinkerpop/src/test/java/org/eclipse/jnosql/databases/tinkerpop/mapping/entities/Magazine.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,29 +79,29 @@ public String toString() {
7979
'}';
8080
}
8181

82-
public static BookBuilder builder() {
83-
return new BookBuilder();
82+
public static MagazineBuilder builder() {
83+
return new MagazineBuilder();
8484
}
8585

86-
public static class BookBuilder {
86+
public static class MagazineBuilder {
8787
private String name;
8888
private Integer age;
8989
private Long id;
9090

91-
private BookBuilder() {
91+
private MagazineBuilder() {
9292
}
9393

94-
public BookBuilder withName(String name) {
94+
public MagazineBuilder withName(String name) {
9595
this.name = name;
9696
return this;
9797
}
9898

99-
public BookBuilder withAge(Integer age) {
99+
public MagazineBuilder withAge(Integer age) {
100100
this.age = age;
101101
return this;
102102
}
103103

104-
public BookBuilder withId(Long id) {
104+
public MagazineBuilder withId(Long id) {
105105
this.id = id;
106106
return this;
107107
}

0 commit comments

Comments
 (0)