Skip to content

Commit 804a294

Browse files
MarkEWaitekrisstern
andcommitted
Switch Note.id from Integer to Long (#1706)
* Switch Note.id from Integer to Long GitLab has changed the data type of the Note id field from int to bigint. Fixes #1705 #1705 (comment) describes the issue in more detail. * NoteObjectAttributes.id needs to be Long also --------- Co-authored-by: Kris Stern <[email protected]>
1 parent 3f2cfd8 commit 804a294

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/main/java/com/dabsquared/gitlabjenkins/gitlab/api/model/Note.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
@GeneratePojoBuilder(intoPackage = "*.builder.generated", withFactoryMethod = "*")
1010
public class Note {
11-
private Integer id;
11+
private Long id;
1212
private Integer projectId;
1313
private User author;
1414
private Date createdAt;
@@ -17,11 +17,11 @@ public class Note {
1717

1818
public Note() {}
1919

20-
public Integer getId() {
20+
public Long getId() {
2121
return id;
2222
}
2323

24-
public void setId(Integer id) {
24+
public void setId(Long id) {
2525
this.id = id;
2626
}
2727

src/main/java/com/dabsquared/gitlabjenkins/gitlab/hook/model/NoteObjectAttributes.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@
1212
@GeneratePojoBuilder(intoPackage = "*.builder.generated", withFactoryMethod = "*")
1313
public class NoteObjectAttributes {
1414

15-
private Integer id;
15+
private Long id;
1616
private String note;
1717
private Integer authorId;
1818
private Integer projectId;
1919
private Date createdAt;
2020
private Date updatedAt;
2121
private String url;
2222

23-
public Integer getId() {
23+
public Long getId() {
2424
return id;
2525
}
2626

27-
public void setId(Integer id) {
27+
public void setId(Long id) {
2828
this.id = id;
2929
}
3030

src/test/java/com/dabsquared/gitlabjenkins/trigger/handler/note/NoteHookTriggerHandlerImplTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListen
7272
project,
7373
noteHook()
7474
.withObjectAttributes(noteObjectAttributes()
75-
.withId(1)
75+
.withId(1L)
7676
.withNote("ci-run")
7777
.withAuthorId(1)
7878
.withProjectId(1)
@@ -119,7 +119,7 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListen
119119
project,
120120
noteHook()
121121
.withObjectAttributes(noteObjectAttributes()
122-
.withId(1)
122+
.withId(1L)
123123
.withNote("ci-run")
124124
.withAuthorId(1)
125125
.withProjectId(1)

0 commit comments

Comments
 (0)