-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy pathGitlabMergeRequest.java
More file actions
434 lines (321 loc) · 9.15 KB
/
GitlabMergeRequest.java
File metadata and controls
434 lines (321 loc) · 9.15 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
package org.gitlab.api.models;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Date;
import java.util.List;
public class GitlabMergeRequest {
public static final String URL = "/merge_requests";
public static final String STATUS_OPENED = "opened";
public static final String STATUS_MERGED = "merged";
public static final String STATUS_CLOSED = "closed";
private Integer id;
private Integer iid;
private String title;
private String state;
private String description;
private boolean closed;
private boolean merged;
private GitlabUser author;
private GitlabUser assignee;
private List<GitlabUser> assignees;
private GitlabMilestone milestone;
private String[] labels;
private List<GitlabCommitDiff> changes;
private Integer upvotes;
private Integer downvotes;
@JsonProperty("updated_at")
private Date updatedAt;
@JsonProperty("created_at")
private Date createdAt;
@JsonProperty("target_branch")
private String targetBranch;
@JsonProperty("source_branch")
private String sourceBranch;
@JsonProperty("project_id")
private Integer projectId;
@JsonProperty("source_project_id")
private Integer sourceProjectId;
@JsonProperty("target_project_id")
private Integer targetProjectId;
@JsonProperty("milestone_id")
private Integer milestoneId;
@JsonProperty("work_in_progress")
private Boolean workInProgress;
@JsonProperty("merge_when_pipeline_succeeds")
private Boolean mergeWhenPipelineSucceeds;
@JsonProperty("merge_status")
private String mergeStatus;
@JsonProperty("sha")
private String sha;
@JsonProperty("merge_commit_sha")
private String mergeCommitSHA;
@JsonProperty("user_notes_count")
private Integer userNotesCount;
@JsonProperty("discussion_locked")
private Boolean discussionLocked;
@JsonProperty("should_remove_source_branch")
private Boolean shouldRemoveSourceBranch;
@JsonProperty("force_remove_source_branch")
private Boolean forceRemoveSourceBranch;
@JsonProperty("web_url")
private String webUrl;
private Boolean squash;
@JsonProperty("changes_count")
private String changesCount;
@JsonProperty("merged_by")
private GitlabUser mergedBy;
@JsonProperty("merged_at")
private Date mergedAt;
@JsonProperty("closed_by")
private GitlabUser closedBy;
@JsonProperty("closed_at")
private Date closedAt;
@JsonProperty("latest_build_started_at")
private Date latestBuildStartedAt;
@JsonProperty("latest_build_finished_at")
private Date latestBuildFinishedAt;
@JsonProperty("first_deployed_to_production_at")
private Date firstDeployedToProductionAt;
@JsonProperty("diff_refs")
private DiffRefs diffRefs;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@Deprecated
public Integer getMilestoneId() {
return milestoneId;
}
@Deprecated
public void setMilestoneId(Integer id) {
milestoneId = id;
}
public Integer getIid() {
return iid;
}
public void setIid(Integer iid) {
this.iid = iid;
}
public String getTargetBranch() {
return targetBranch;
}
public void setTargetBranch(String targetBranch) {
this.targetBranch = targetBranch;
}
public String getSourceBranch() {
return sourceBranch;
}
public void setSourceBranch(String sourceBranch) {
this.sourceBranch = sourceBranch;
}
public Integer getProjectId() {
return projectId;
}
public void setProjectId(Integer projectId) {
this.projectId = projectId;
}
public Integer getSourceProjectId() {
return sourceProjectId;
}
public void setSourceProjectId(Integer sourceProjectId) {
this.sourceProjectId = sourceProjectId;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String d) {
description = d;
}
@Deprecated
public boolean isClosed() {
return closed;
}
@Deprecated
public void setClosed(boolean closed) {
this.closed = closed;
}
@Deprecated
public boolean isMerged() {
return merged;
}
@Deprecated
public void setMerged(boolean merged) {
this.merged = merged;
}
public GitlabUser getAuthor() {
return author;
}
public void setAuthor(GitlabUser author) {
this.author = author;
}
public GitlabUser getAssignee() {
return assignee;
}
public void setAssignee(GitlabUser assignee) {
this.assignee = assignee;
}
public List<GitlabUser> getAssignees() {
return assignees;
}
public void setAssignees(List<GitlabUser> assignees) {
this.assignees = assignees;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
if (state != null) {
closed = state.equals("closed");
merged = state.equals("merged");
}
}
public GitlabMilestone getMilestone() {
return milestone;
}
public void setMilestone(GitlabMilestone milestone) {
this.milestone = milestone;
}
public String[] getLabels() {
return labels;
}
public void setLabels(String[] labels) {
this.labels = labels;
}
public Integer getUpvotes() {
return upvotes;
}
public void setUpvotes(int upvotes) {
this.upvotes = upvotes;
}
public Integer getDownvotes() {
return downvotes;
}
public void setDownvotes(int downvotes) {
this.downvotes = downvotes;
}
public Integer getTargetProjectId() {
return targetProjectId;
}
public void setTargetProjectId(Integer targetProjectId) {
this.targetProjectId = targetProjectId;
}
public Date getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(Date updatedAt) {
this.updatedAt = updatedAt;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public List<GitlabCommitDiff> getChanges() {
return changes;
}
public void setChanges(List<GitlabCommitDiff> changes) {
this.changes = changes;
}
public String getMergeCommitSHA() {
return mergeCommitSHA;
}
public void setMergeCommitSHA(String mergeCommitSHA) {
this.mergeCommitSHA = mergeCommitSHA;
}
public String getMergeStatus() {
return mergeStatus;
}
public void setMergeStatus(String mergeStatus) {
this.mergeStatus = mergeStatus;
}
public String getWebUrl() {
return webUrl;
}
public void setWebUrl(String webUrl) {
this.webUrl = webUrl;
}
public String getSha() {
return sha;
}
public void setSha(String sha) {
this.sha = sha;
}
public Boolean isWorkInProgress() {
return workInProgress;
}
public Boolean isMergeWhenPipelineSucceeds() {
return mergeWhenPipelineSucceeds;
}
public Integer getUserNotesCount() {
return userNotesCount;
}
public Boolean isDiscussionLocked() {
return discussionLocked;
}
public Boolean isShouldRemoveSourceBranch() {
return shouldRemoveSourceBranch;
}
public Boolean isForceRemoveSourceBranch() {
return forceRemoveSourceBranch;
}
public Boolean isSquash() {
return squash;
}
public String getChangesCount() {
return changesCount;
}
public GitlabUser getMergedBy() {
return mergedBy;
}
public Date getMergedAt() {
return mergedAt;
}
public GitlabUser getClosedBy() {
return closedBy;
}
public Date getClosedAt() {
return closedAt;
}
public Date getLatestBuildStartedAt() {
return latestBuildStartedAt;
}
public Date getLatestBuildFinishedAt() {
return latestBuildFinishedAt;
}
public Date getFirstDeployedToProductionAt() {
return firstDeployedToProductionAt;
}
public String getBaseSha() {
return diffRefs == null ? null : diffRefs.baseSha;
}
public String getHeadSha() {
return diffRefs == null ? null : diffRefs.headSha;
}
public String getStartSha() {
return diffRefs == null ? null : diffRefs.startSha;
}
/**
* Class representing the diff_refs json object, which is just a collection
* of sha references of the merge request. It is currently not provided by
* GitLab when fetching multiple merge requests.
*
* @author Patrizio Bonzani
*/
private static class DiffRefs {
@JsonProperty("base_sha")
private String baseSha;
@JsonProperty("head_sha")
private String headSha;
@JsonProperty("start_sha")
private String startSha;
}
}