-
Notifications
You must be signed in to change notification settings - Fork 304
Expand file tree
/
Copy pathGitlabProject.java
More file actions
511 lines (373 loc) · 12.1 KB
/
Copy pathGitlabProject.java
File metadata and controls
511 lines (373 loc) · 12.1 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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
package org.gitlab.api.models;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GitlabProject {
public static final String URL = "/projects";
private Integer id;
private String name;
@JsonProperty("name_with_namespace")
private String nameWithNamespace;
private String description;
@JsonProperty("default_branch")
private String defaultBranch;
private GitlabUser owner;
private Boolean publicProject;
private String path;
@JsonProperty("visibility")
private String visibility;
@JsonProperty("path_with_namespace")
private String pathWithNamespace;
@JsonProperty("issues_enabled")
private Boolean issuesEnabled;
@JsonProperty("merge_requests_enabled")
private Boolean mergeRequestsEnabled;
@JsonProperty("snippets_enabled")
private Boolean snippetsEnabled;
@JsonProperty("wall_enabled")
private Boolean wallEnabled;
@JsonProperty("wiki_enabled")
private Boolean wikiEnabled;
@JsonProperty("jobs_enabled")
private Boolean jobsEnabled;
@JsonProperty("shared_runners_enabled")
private Boolean sharedRunnersEnabled;
@JsonProperty("public_jobs")
private Boolean publicJobs;
@JsonProperty("runners_token")
private String runnersToken;
@JsonProperty("created_at")
private Date createdAt;
@JsonProperty("ssh_url_to_repo")
private String sshUrl;
@JsonProperty("web_url")
private String webUrl;
@JsonProperty("http_url_to_repo")
private String httpUrl;
@JsonProperty("last_activity_at")
private Date lastActivityAt;
@JsonProperty("archived")
private Boolean archived;
private GitlabNamespace namespace;
@JsonProperty("permissions")
private GitlabPermission permissions;
@JsonProperty("avatar_url")
private String avatarUrl;
@JsonProperty("creator_id")
private Integer creatorId;
@JsonProperty("star_count")
private Integer starCount;
@JsonProperty("forks_count")
private Integer forksCount;
@JsonProperty("tag_list")
private List<String> tagList;
@JsonProperty("shared_with_groups")
private List<GitlabProjectSharedGroup> sharedWithGroups;
@JsonProperty("container_registry_enabled")
private Boolean containerRegistryEnabled;
@JsonProperty("only_allow_merge_if_pipeline_succeeds")
private Boolean onlyAllowMergeIfPipelineSucceeds;
@JsonProperty("only_allow_merge_if_all_discussions_are_resolved")
private Boolean onlyAllowMergeIfAllDiscussionsAreResolved;
@JsonProperty("lfs_enabled")
private Boolean lfsEnabled;
@JsonProperty("request_access_enabled")
private Boolean requestAccessEnabled;
@JsonProperty("repository_storage")
private String repositoryStorage;
@JsonProperty("approvals_before_merge")
private Integer approvalsBeforeMerge;
@JsonProperty("import_url")
private String importUrl;
@JsonProperty("forked_from_project")
private GitlabProject forkedFrom;
@JsonProperty("printing_merge_request_link_enabled")
private Boolean printingMergeRequestLinkEnabled;
@JsonProperty("import_status")
private String importStatus;
@JsonProperty("initialize_with_readme")
private Boolean initializeWithReadme;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getNameWithNamespace() {
return nameWithNamespace;
}
public void setNameWithNamespace(String nameWithNamespace) {
this.nameWithNamespace = nameWithNamespace;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getDefaultBranch() {
return defaultBranch;
}
public void setDefaultBranch(String defaultBranch) {
this.defaultBranch = defaultBranch;
}
public String getVisibility() {
return visibility;
}
public void setVisibility(String visibility) {
this.visibility = visibility;
}
public GitlabUser getOwner() {
return owner;
}
public void setOwner(GitlabUser owner) {
this.owner = owner;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getPathWithNamespace() {
return pathWithNamespace;
}
public void setPathWithNamespace(String pathWithNamespace) {
this.pathWithNamespace = pathWithNamespace;
}
public Boolean isIssuesEnabled() {
return issuesEnabled;
}
public void setIssuesEnabled(Boolean issuesEnabled) {
this.issuesEnabled = issuesEnabled;
}
public Boolean isMergeRequestsEnabled() {
return mergeRequestsEnabled;
}
public void setMergeRequestsEnabled(Boolean mergeRequestsEnabled) {
this.mergeRequestsEnabled = mergeRequestsEnabled;
}
public Boolean isSnippetsEnabled() {
return snippetsEnabled;
}
public void setSnippetsEnabled(Boolean snippetsEnabled) {
this.snippetsEnabled = snippetsEnabled;
}
public Boolean isWallEnabled() {
return wallEnabled;
}
public void setWallEnabled(Boolean wallEnabled) {
this.wallEnabled = wallEnabled;
}
public Boolean isWikiEnabled() {
return wikiEnabled;
}
public void setWikiEnabled(Boolean wikiEnabled) {
this.wikiEnabled = wikiEnabled;
}
public Boolean isJobsEnabled() {
return jobsEnabled;
}
public void setJobsEnabled(Boolean jobsEnabled) {
this.jobsEnabled = jobsEnabled;
}
public Boolean isRequestAccessEnabled() {
return requestAccessEnabled;
}
public void setRequestAccessEnabled(Boolean requestAccessEnabled) {
this.requestAccessEnabled = requestAccessEnabled;
}
public Boolean isLfsEnabled() {
return lfsEnabled;
}
public void setLfsEnabled(Boolean lfsEnabled) {
this.lfsEnabled = lfsEnabled;
}
public Boolean isSharedRunnersEnabled() {
return sharedRunnersEnabled;
}
public void setSharedRunnersEnabled(Boolean sharedRunnersEnabled) {
this.sharedRunnersEnabled = sharedRunnersEnabled;
}
public Boolean getOnlyAllowMergeIfPipelineSucceeds() {
return onlyAllowMergeIfPipelineSucceeds;
}
public void setOnlyAllowMergeIfPipelineSucceeds(Boolean onlyAllowMergeIfPipelineSucceeds) {
this.onlyAllowMergeIfPipelineSucceeds = onlyAllowMergeIfPipelineSucceeds;
}
public Boolean getOnlyAllowMergeIfAllDiscussionsAreResolved() {
return onlyAllowMergeIfAllDiscussionsAreResolved;
}
public void setOnlyAllowMergeIfAllDiscussionsAreResolved(Boolean onlyAllowMergeIfAllDiscussionsAreResolved) {
this.onlyAllowMergeIfAllDiscussionsAreResolved = onlyAllowMergeIfAllDiscussionsAreResolved;
}
public Boolean isContainerRegistryEnabled() {
return containerRegistryEnabled;
}
public void setContainerRegistryEnabled(Boolean containerRegistryEnabled) {
this.containerRegistryEnabled = containerRegistryEnabled;
}
public Boolean hasPublicJobs() {
return publicJobs;
}
public void setPublicJobs(Boolean publicJobs) {
this.publicJobs = publicJobs;
}
public String getRunnersToken() {
return runnersToken;
}
public void setRunnersToken(String runnersToken) {
this.runnersToken = runnersToken;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public String getSshUrl() {
return sshUrl;
}
public void setSshUrl(String sshUrl) {
this.sshUrl = sshUrl;
}
public String getWebUrl() {
return webUrl;
}
public void setWebUrl(String webUrl) {
this.webUrl = webUrl;
}
public String getHttpUrl() {
return httpUrl;
}
public void setHttpUrl(String httpUrl) {
this.httpUrl = httpUrl;
}
public GitlabNamespace getNamespace() {
return namespace;
}
public void setNamespace(GitlabNamespace namespace) {
this.namespace = namespace;
}
public Boolean isPublic() {
return publicProject;
}
public void setPublic(Boolean aPublic) {
publicProject = aPublic;
}
public Boolean isArchived() {
return archived;
}
public void setArchived(Boolean archived) {
this.archived = archived;
}
public Date getLastActivityAt() {
return lastActivityAt;
}
public void setLastActivityAt(Date lastActivityAt) {
this.lastActivityAt = lastActivityAt;
}
public GitlabPermission getPermissions() {
return permissions;
}
public void setPermissions(GitlabPermission permissions) {
this.permissions = permissions;
}
public String getAvatarUrl() {
return avatarUrl;
}
public void setAvatarUrl(String avatarUrl) {
this.avatarUrl = avatarUrl;
}
public Integer getCreatorId() {
return creatorId;
}
public void setCreatorId(Integer creatorId) {
this.creatorId = creatorId;
}
public Integer getStarCount() {
return starCount;
}
public void setStarCount(Integer starCount) {
this.starCount = starCount;
}
public Integer getForksCount() {
return forksCount;
}
public void setForksCount(Integer forksCount) {
this.forksCount = forksCount;
}
public List<String> getTagList() {
return tagList;
}
public void setTagList(List<String> tagList) {
this.tagList = tagList;
}
public List<GitlabProjectSharedGroup> getSharedWithGroups() {
return sharedWithGroups;
}
public void setSharedWithGroups(List<GitlabProjectSharedGroup> sharedWithGroups) {
this.sharedWithGroups = sharedWithGroups;
}
public String getRepositoryStorage() {
return repositoryStorage;
}
public void setRepositoryStorage(String repositoryStorage) {
this.repositoryStorage = repositoryStorage;
}
public Integer getApprovalsBeforeMerge() {
return approvalsBeforeMerge;
}
public void setApprovalsBeforeMerge(Integer approvalsBeforeMerge) {
this.approvalsBeforeMerge = approvalsBeforeMerge;
}
public String getImportUrl() {
return importUrl;
}
public void setImportUrl(String importUrl) {
this.importUrl = importUrl;
}
public GitlabProject getForkedFrom() {
return forkedFrom;
}
public void setForkedFrom(GitlabProject forkedFrom) {
this.forkedFrom = forkedFrom;
}
public Boolean isPrintingMergeRequestLinkEnabled() {
return printingMergeRequestLinkEnabled;
}
public void setPrintingMergeRequestLinkEnabled(Boolean printingMergeRequestLinkEnabled) {
this.printingMergeRequestLinkEnabled = printingMergeRequestLinkEnabled;
}
public Boolean isInitializeWithReadme() {
return initializeWithReadme;
}
public void setInitializeWithReadme(Boolean initializeWithReadme) {
this.initializeWithReadme = initializeWithReadme;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GitlabProject that = (GitlabProject) o;
if (id != null || that.id != null) {
return id != null && id.equals(that.id);
} else {
if (name != null ? !name.equals(that.name) : that.name != null) return false;
return namespace != null ? namespace.equals(that.namespace) : that.namespace == null;
}
}
@Override
public int hashCode() {
int result = id != null ? id.hashCode() : 0;
result = 31 * result + (name != null ? name.hashCode() : 0);
result = 31 * result + (namespace != null ? namespace.hashCode() : 0);
return result;
}
}