File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed
src/main/java/org/gitlab4j/api/webhook Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ package org .gitlab4j .api .webhook ;
2+
3+ import java .util .Date ;
4+
5+ public class IssueChanges extends EventChanges {
6+
7+ private ChangeContainer <Date > dueDate ;
8+ private ChangeContainer <Boolean > confidential ;
9+
10+ public ChangeContainer <Date > getDueDate () {
11+ return dueDate ;
12+ }
13+
14+ public void setDueDate (ChangeContainer <Date > dueDate ) {
15+ this .dueDate = dueDate ;
16+ }
17+
18+ public ChangeContainer <Boolean > getConfidential () {
19+ return confidential ;
20+ }
21+
22+ public void setConfidential (ChangeContainer <Boolean > confidential ) {
23+ this .confidential = confidential ;
24+ }
25+ }
Original file line number Diff line number Diff line change 1+ package org .gitlab4j .api .webhook ;
2+
3+ public class MergeRequestChanges extends EventChanges {
4+
5+ private ChangeContainer <String > mergeStatus ;
6+
7+ public ChangeContainer <String > getMergeStatus () {
8+ return mergeStatus ;
9+ }
10+
11+ public void setMergeStatus (ChangeContainer <String > mergeStatus ) {
12+ this .mergeStatus = mergeStatus ;
13+ }
14+ }
You can’t perform that action at this time.
0 commit comments