-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.puml
1304 lines (1302 loc) · 63.4 KB
/
test.puml
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@startuml
class io.jenkins.plugins.gitlabbranchsource.BranchSCMHead {
+ String getPronoun()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabTagSCMHead {
+ String getPronoun()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabWebHookListener {
+ {static} Logger LOGGER
- {static} long GITLAB_CACHING_TIMEOUT
- String origin
+ void onNoteEvent(NoteEvent)
+ void onMergeRequestEvent(MergeRequestEvent)
+ void onPushEvent(PushEvent)
+ void onTagPushEvent(TagPushEvent)
- void fireTrigger(SCMHeadEvent<?>,String)
- boolean findImmediateHookTrigger(GitLabServer)
- long findTriggerDelay(GitLabServer)
- GitLabServer findProjectServer(String)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMCauseAction {
+ String getDescription()
}
class io.jenkins.plugins.gitlabserverconfig.credentials.PersonalAccessTokenImplTest {
+ {static} JenkinsRule j
+ void configRoundtrip()
}
class io.jenkins.plugins.gitlabserverconfig.credentials.PersonalAccessTokenImplTest$CredentialsBuilder {
+ Credentials credentials
}
class io.jenkins.plugins.gitlabserverconfig.credentials.PersonalAccessTokenImplTest$CredentialsBuilder$DescriptorImpl {
+ String getDisplayName()
+ boolean isApplicable(Class<? extends AbstractProject>)
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabGroup {
- String fullName
- String description
+ String getFullName()
+ void setFullName(String)
+ String getWord()
+ String getDescription()
+ void setDescription(String)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabPushSCMEvent {
+ String descriptionFor(SCMNavigator)
+ String getSourceName()
+ String descriptionFor(SCMSource)
+ String description()
+ boolean isMatch(GitLabSCMNavigator)
+ boolean isMatch(GitLabSCMSource)
+ Map<SCMHead,SCMRevision> headsFor(GitLabSCMSource)
+ GitLabWebHookCause getCause()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSystemHookAction {
+ {static} Logger LOGGER
+ String getIconFileName()
+ String getDisplayName()
+ String getUrlName()
+ boolean process(HttpServletRequest,HttpServletResponse,FilterChain)
+ HttpResponse doPost(StaplerRequest)
- boolean isValidToken(String)
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabUser {
+ String getWord()
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabIcons {
+ {static} String ICON_PROJECT
+ {static} String ICON_BRANCH
+ {static} String ICON_GITLAB
+ {static} String ICON_COMMIT
+ {static} String ICON_MR
+ {static} String ICON_TAG
- {static} String ICON_PATH
+ {static} void initialize()
+ {static} String iconFileName(String,Size)
+ {static} String iconFilePathPattern(String)
- {static} String classSpec(String,Size)
- {static} void addIcon(String)
}
enum io.jenkins.plugins.gitlabbranchsource.helpers.Size {
+ SMALL
+ MEDIUM
+ LARGE
+ XLARGE
- String className
- String dimensions
- String style
+ {static} Size byDimensions(String)
}
class io.jenkins.plugins.gitlabserverconfig.servers.helpers.GitLabPersonalAccessTokenCreator {
+ {static} Logger LOGGER
- {static} List<AccessTokenUtils.Scope> GL_PLUGIN_REQUIRED_SCOPE
- String getShortName(String)
+ Descriptor<GitLabPersonalAccessTokenCreator> getDescriptor()
+ String getDisplayName()
+ ListBoxModel doFillCredentialsIdItems(String,String)
+ FormValidation doCreateTokenByCredentials(String,String)
+ FormValidation doCreateTokenByPassword(String,String,String)
- void createCredentials(String,String,String,String)
- void saveCredentials(String,PersonalAccessToken)
}
class io.jenkins.plugins.gitlabbranchsource.TagDiscoveryTrait {
# void decorateContext(SCMSourceContext<?,?>)
+ boolean includeCategory(SCMHeadCategory)
}
class io.jenkins.plugins.gitlabbranchsource.TagDiscoveryTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMSourceContext> getContextClass()
+ Class<? extends SCMSource> getSourceClass()
}
class io.jenkins.plugins.gitlabbranchsource.TagDiscoveryTrait$TagSCMHeadAuthority {
# boolean checkTrusted(SCMSourceRequest,GitLabTagSCMHead)
}
class io.jenkins.plugins.gitlabbranchsource.TagDiscoveryTrait$TagSCMHeadAuthority$DescriptorImpl {
+ String getDisplayName()
+ boolean isApplicableToOrigin(Class<? extends SCMHeadOrigin>)
}
class io.jenkins.plugins.gitlabbranchsource.Environment.GitLabWebHookEnvironmentContributor {
+ void buildEnvironmentFor(Run,EnvVars,TaskListener)
}
class io.jenkins.plugins.gitlabbranchsource.SSHCheckoutTrait {
- String credentialsId
+ String getCredentialsId()
# void decorateBuilder(SCMBuilder<?,?>)
}
class io.jenkins.plugins.gitlabbranchsource.SSHCheckoutTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMBuilder> getBuilderClass()
+ Class<? extends SCMSourceContext> getContextClass()
+ Class<? extends SCMSource> getSourceClass()
+ Class<? extends SCM> getScmClass()
+ ListBoxModel doFillCredentialsIdItems(Item,String,String)
}
class io.jenkins.plugins.gitlabserverconfig.servers.GitLabServers {
+ {static} Logger LOGGER
- List<GitLabServer> servers
+ {static} GitLabServers get()
- {static} Predicate<T> distinctByKey(Function<? super T,?>)
+ ListBoxModel getServerItems()
+ List<GitLabServer> getServers()
+ void setServers(List<? extends GitLabServer>)
+ String getDisplayName()
+ List<Descriptor> actions()
+ boolean addServer(GitLabServer)
+ boolean updateServer(GitLabServer)
+ boolean removeServer(String)
+ GitLabServer findServer(String)
}
class io.jenkins.plugins.gitlabbranchsource.LogCommentTrait {
- String sudoUser
- boolean logSuccess
+ void setLogSuccess(boolean)
+ void setSudoUser(String)
# void decorateContext(SCMSourceContext<?,?>)
+ String getSudoUser()
+ boolean getLogSuccess()
}
class io.jenkins.plugins.gitlabbranchsource.LogCommentTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMSourceContext> getContextClass()
+ Class<? extends SCMSource> getSourceClass()
}
abstract class io.jenkins.plugins.gitlabbranchsource.AbstractGitLabJobTrigger {
- E payload
+ {static} void fireNow(AbstractGitLabJobTrigger)
+ E getPayload()
+ {abstract}void isMatch()
}
class io.jenkins.plugins.gitlabbranchsource.MergeRequestSCMHead {
- long id
- BranchSCMHead target
- ChangeRequestCheckoutStrategy strategy
- String originName
- String originOwner
- SCMHeadOrigin origin
- String originProjectPath
- String title
+ String getPronoun()
+ ChangeRequestCheckoutStrategy getCheckoutStrategy()
+ String getOriginName()
+ String getId()
+ BranchSCMHead getTarget()
+ SCMHeadOrigin getOrigin()
+ String getOriginOwner()
+ String getOriginProjectPath()
+ String getTitle()
+ void setTitle(String)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabMarkUnstableAsSuccessTrait {
- boolean markUnstableAsSuccess
+ void setMarkUnstableAsSuccess(boolean)
+ boolean getMarkUnstableAsSuccess()
# void decorateContext(SCMSourceContext<?,?>)
+ boolean doMarkUnstableAsSuccess()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabMarkUnstableAsSuccessTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMSourceContext> getContextClass()
+ Class<? extends SCMSource> getSourceClass()
}
abstract class io.jenkins.plugins.gitlabbranchsource.AbstractGitLabSCMHeadEvent {
+ {static} Logger LOGGER
- {static} Pattern NONE_HASH_PATTERN
~ {static} Type typeOf(E)
- {static} boolean isPresent(String)
+ boolean isMatch(SCMNavigator)
+ {abstract}boolean isMatch(GitLabSCMNavigator)
+ boolean isMatch(SCMSource)
+ {abstract}boolean isMatch(GitLabSCMSource)
+ Map<SCMHead,SCMRevision> heads(SCMSource)
+ boolean isMatch(SCM)
# {abstract}Map<SCMHead,SCMRevision> headsFor(GitLabSCMSource)
+ {abstract}GitLabWebHookCause getCause()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMSourceRequest {
+ {static} Logger LOGGER
- boolean fetchBranches
- boolean fetchTags
- boolean fetchOriginMRs
- boolean fetchForkMRs
- Set<ChangeRequestCheckoutStrategy> originMRStrategies
- Set<ChangeRequestCheckoutStrategy> forkMRStrategies
- Set<Long> requestedMergeRequestNumbers
- Set<String> requestedOriginBranchNames
- Set<String> requestedTagNames
- Iterable<MergeRequest> mergeRequests
- Iterable<Branch> branches
- Iterable<Tag> tags
- HashMap<String,AccessLevel> members
- Project gitlabProject
- GitLabApi gitLabApi
+ boolean isFetchBranches()
+ boolean isFetchTags()
+ boolean isFetchMRs()
+ boolean isFetchOriginMRs()
+ boolean isFetchForkMRs()
+ Set<ChangeRequestCheckoutStrategy> getOriginMRStrategies()
+ Set<ChangeRequestCheckoutStrategy> getForkMRStrategies()
+ Set<ChangeRequestCheckoutStrategy> getMRStrategies(boolean)
+ Map<Boolean,Set<ChangeRequestCheckoutStrategy>> getMRStrategies()
+ Set<Long> getRequestedMergeRequestNumbers()
+ Set<String> getRequestedOriginBranchNames()
+ Set<String> getRequestedTagNames()
+ Iterable<MergeRequest> getMergeRequests()
+ void setMergeRequests(Iterable<MergeRequest>)
+ Iterable<Branch> getBranches()
+ void setBranches(Iterable<Branch>)
+ Iterable<Tag> getTags()
+ void setTags(Iterable<Tag>)
+ HashMap<String,AccessLevel> getMembers()
+ void setMembers(HashMap<String,AccessLevel>)
+ GitLabApi getGitLabApi()
+ void setGitLabApi(GitLabApi)
+ AccessLevel getPermission(String)
+ boolean isMember(String)
+ void close()
+ void setProject(Project)
+ Project getGitlabProject()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabMergeRequestTrigger {
+ {static} Logger LOGGER
+ boolean isMatch(GitLabSCMSource)
- boolean shouldBuild(MergeRequestEvent,GitLabSCMSourceContext)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabMergeRequestSCMEvent {
+ {static} Logger LOGGER
- {static} Type typeOf(MergeRequestEvent)
+ String descriptionFor(SCMNavigator)
+ boolean isMatch(GitLabSCMNavigator)
+ boolean isMatch(GitLabSCMSource)
+ String getSourceName()
+ String descriptionFor(SCMSource)
+ String description()
+ Map<SCMHead,SCMRevision> headsFor(GitLabSCMSource)
+ GitLabWebHookCause getCause()
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabAvatar {
- String avatar
+ String getAvatarImageOf(String)
+ boolean equals(Object)
+ int hashCode()
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabAvatarCache {
+ {static} Logger LOGGER
- ConcurrentMap<String,CacheEntry> cache
- ExecutorService service
- Object serviceLock
- Iterator<Map.Entry<String,CacheEntry>> iterator
+ {static} String buildUrl(String,String)
- {static} BufferedImage scaleImage(BufferedImage,int)
- {static} BufferedImage generateAvatar(String,int)
+ String getIconFileName()
+ String getDisplayName()
+ String getUrlName()
+ HttpResponse doDynamic(StaplerRequest,String)
- CacheEntry getCacheEntry(String,String)
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabAvatarCache$CacheEntry {
- String url
- BufferedImage image
- long lastModified
- long lastAccessed
- Future<CacheEntry> future
+ boolean pending()
+ void setFuture(Future<CacheEntry>)
+ boolean isStale()
+ void touch()
+ boolean isUnused()
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabAvatarCache$ImageResponse {
- BufferedImage image
- boolean flushImage
- String cacheControl
- long lastModified
+ void generateResponse(StaplerRequest,StaplerResponse,Object)
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabAvatarCache$FetchImage {
- String url
+ CacheEntry call()
}
class io.jenkins.plugins.gitlabbranchsource.TriggerMRCommentTrait {
- String commentBody
- boolean onlyTrustedMembersCanTrigger
+ String getCommentBody()
+ boolean getOnlyTrustedMembersCanTrigger()
# void decorateContext(SCMSourceContext<?,?>)
}
class io.jenkins.plugins.gitlabbranchsource.TriggerMRCommentTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMSourceContext> getContextClass()
+ Class<? extends SCMSource> getSourceClass()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMFileSystem {
- GitLabApi gitLabApi
- String projectPath
- String ref
+ long lastModified()
+ SCMFile getRoot()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMFileSystem$BuilderImpl {
+ boolean supports(SCM)
+ boolean supports(SCMSource)
# boolean supportsDescriptor(SCMDescriptor)
# boolean supportsDescriptor(SCMSourceDescriptor)
+ SCMFileSystem build(Item,SCM,SCMRevision)
+ SCMFileSystem build(SCMSource,SCMHead,SCMRevision)
+ SCMFileSystem build(SCMHead,SCMRevision,GitLabApi,String)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabAvatarTrait {
- boolean disableProjectAvatar
+ void setDisableProjectAvatar(boolean)
# void decorateContext(SCMSourceContext<?,?>)
+ boolean isDisableProjectAvatar()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabAvatarTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMSourceContext> getContextClass()
+ Class<? extends SCMSource> getSourceClass()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMNavigatorRequest {
- boolean wantSubgroupProjects
- int projectNamingStrategy
+ boolean wantSubgroupProjects()
+ int withProjectNamingStrategy()
}
class io.jenkins.plugins.gitlabserverconfig.servers.GitLabServerTest {
+ {static} JenkinsRule j
+ void testFixEmptyAndTrimOne()
+ void testFixEmptyAndTrimTwo()
+ void testFixEmptyAndTrimThree()
+ void testFixEmptyAndTrimFour()
+ void testFixEmptyAndTrimFive()
}
class io.jenkins.plugins.gitlabbranchsource.ExcludeArchivedRepositoriesTrait {
# void decorateContext(SCMNavigatorContext<?,?>)
}
class io.jenkins.plugins.gitlabbranchsource.ExcludeArchivedRepositoriesTrait$DescriptorImpl {
+ Class<? extends SCMNavigatorContext> getContextClass()
+ String getDisplayName()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabWebHookAction {
+ {static} Logger LOGGER
+ String getIconFileName()
+ String getDisplayName()
+ String getUrlName()
+ boolean process(HttpServletRequest,HttpServletResponse,FilterChain)
+ HttpResponse doPost(StaplerRequest)
- boolean isValidToken(String)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMFile {
- GitLabApi gitLabApi
- String projectPath
- String ref
- boolean isDir
# SCMFile newChild(String,boolean)
+ Iterable<SCMFile> children()
+ long lastModified()
# Type type()
+ InputStream content()
- InputStream fetchFile()
- List<TreeItem> fetchTree()
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabHelper {
+ {static} GitLabApi apiBuilder(AccessControlled,String)
+ {static} Map<String,Object> getProxyConfig(String)
+ {static} String getServerUrlFromName(String)
+ {static} String getServerUrl(GitLabServer)
- {static} String getServerUrl(String)
- {static} String sanitizeUrlValue(String)
+ {static} String getPrivateTokenAsPlainText(StandardCredentials)
+ {static} UriTemplateBuilder getUriTemplateFromServer(String)
+ {static} UriTemplate projectUriTemplate(String)
+ {static} UriTemplate branchUriTemplate(String)
+ {static} UriTemplate mergeRequestUriTemplate(String)
+ {static} UriTemplate tagUriTemplate(String)
+ {static} UriTemplate commitUriTemplate(String)
+ {static} String[] splitPath(String)
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabPipelineStatusNotifier {
+ {static} Logger LOGGER
~ {static} String GITLAB_PIPELINE_STATUS_PREFIX
~ {static} String GITLAB_PIPELINE_STATUS_DELIMITER
~ {static} Pattern MERGE_REQUEST_JOB_NAME_FORMAT
- {static} String getRootUrl(Run<?,?>)
- {static} GitLabSCMSourceContext getSourceContext(Run<?,?>,GitLabSCMSource)
- {static} GitLabSCMSource getSource(Run<?,?>)
- {static} String getStatusName(GitLabSCMSourceContext,Run<?,?>,EnvVars,SCMRevision)
- {static} String getStatusName(GitLabSCMSourceContext,Job<?,?>,EnvVars,SCMRevision)
~ {static} String getStatusName(GitLabSCMSourceContext,String,SCMRevision,EnvVars)
~ {static} String getRevisionRef(SCMRevision)
- {static} String getMrBuildName(MergeRequestSCMRevision)
- {static} void logComment(Run<?,?>,TaskListener)
~ {static} Long getSourceProjectId(Job,GitLabApi,String)
- {static} void sendNotifications(Run<?,?>,TaskListener,Boolean)
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabPipelineStatusNotifier$JobScheduledListener {
- AtomicLong nonce
- Map<Job,Long> resolving
+ void onEnterWaiting(Queue.WaitingItem)
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabPipelineStatusNotifier$JobCheckOutListener {
+ void onCheckout(Run<?,?>,SCM,FilePath,TaskListener,File,SCMRevisionState)
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabPipelineStatusNotifier$JobCompletedListener {
+ void onCompleted(Run<?,?>,TaskListener)
+ void onStarted(Run<?,?>,TaskListener)
}
enum io.jenkins.plugins.gitlabbranchsource.GitLabHookRegistration {
+ DISABLE
+ SYSTEM
+ ITEM
}
class io.jenkins.plugins.gitlabbranchsource.BuildStatusNameCustomPartTrait {
- String buildStatusNameCustomPart
- boolean buildStatusNameOverwrite
- boolean ignoreTypeInStatusName
+ void setBuildStatusNameCustomPart(String)
+ void setBuildStatusNameOverwrite(Boolean)
+ void setIgnoreTypeInStatusName(Boolean)
# void decorateContext(SCMSourceContext<?,?>)
+ String getBuildStatusNameCustomPart()
+ boolean getBuildStatusNameOverwrite()
+ boolean getIgnoreTypeInStatusName()
}
class io.jenkins.plugins.gitlabbranchsource.BuildStatusNameCustomPartTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMSourceContext> getContextClass()
+ Class<? extends SCMSource> getSourceClass()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabHookCreatorParameterizedTest {
+ {static} JenkinsRule r
- String jenkinsUrl
- boolean hookType
- String expectedPath
+ {static} Iterable<Object[]> data()
+ void hookUrl()
+ void hookUrlFromCustomRootUrl()
}
interface io.jenkins.plugins.gitlabserverconfig.credentials.PersonalAccessToken {
~ Secret getToken()
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabLink {
- String iconClassName
- String url
- String displayName
+ {static} GitLabLink toGroup(String)
+ {static} GitLabLink toProject(String)
+ {static} GitLabLink toBranch(String)
+ {static} GitLabLink toMergeRequest(String)
+ {static} GitLabLink toTag(String)
+ {static} GitLabLink toCommit(String)
+ String getUrl()
+ String getIconClassName()
+ String getIconFileName()
+ String getDisplayName()
+ void setDisplayName(String)
+ String getUrlName()
+ int hashCode()
+ boolean equals(Object)
+ String toString()
}
class io.jenkins.plugins.gitlabbranchsource.BranchSCMRevision {
}
class io.jenkins.plugins.gitlabserverconfig.credentials.helpers.GitLabCredentialMatcher {
- {static} long serialVersionUID
+ boolean matches(Credentials)
}
class io.jenkins.plugins.gitlabbranchsource.ProjectNamingStrategyTrait {
- int strategyId
+ int getStrategyId()
+ void setStrategyId(int)
# void decorateContext(SCMNavigatorContext<?,?>)
}
class io.jenkins.plugins.gitlabbranchsource.ProjectNamingStrategyTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMNavigator> getNavigatorClass()
+ ListBoxModel doFillStrategyIdItems()
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabBrowser {
+ String getProjectUrl()
+ URL getChangeSetLink(GitChangeSet)
+ URL getDiffLink(GitChangeSet.Path)
+ URL getFileLink(GitChangeSet.Path)
- URL diffLink(GitChangeSet.Path)
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabBrowser$DescriptorImpl {
+ String getDisplayName()
+ GitLabBrowser newInstance(StaplerRequest,JSONObject)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabHookCreator {
+ {static} Logger LOGGER
+ {static} void register(SCMNavigatorOwner,GitLabSCMNavigator,GitLabHookRegistration)
+ {static} void register(GitLabSCMSource,GitLabHookRegistration,GitLabHookRegistration)
+ {static} void createSystemHookWhenMissing(GitLabServer,StandardCredentials)
+ {static} String getHookUrl(boolean)
+ {static} String getHookUrl(GitLabServer,boolean)
~ {static} void checkURL(String)
+ {static} ProjectHook createWebHook()
+ {static} String createWebHookWhenMissing(GitLabApi,String,String,String)
+ {static} boolean isTokenEqual(String,String)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMBuilder {
- {static} SecureRandom RANDOM
- SCMSourceOwner context
- String serverUrl
- String projectPath
- String sshRemote
- String httpRemote
+ {static} UriTemplate checkoutUriTemplate(Item,String,String,String,String,String)
- String projectUrl(String)
+ UriTemplate checkoutUriTemplate()
+ GitLabSCMBuilder withGitLabRemote()
+ GitSCM build()
}
class io.jenkins.plugins.gitlabbranchsource.ForkMergeRequestDiscoveryTrait {
- int strategyId
- SCMHeadAuthority<? super GitLabSCMSourceRequest,? extends ChangeRequestSCMHead2,? extends SCMRevision> trust
- boolean buildMRForksNotMirror
+ int getStrategyId()
+ Set<ChangeRequestCheckoutStrategy> getStrategies()
+ SCMHeadAuthority<? super GitLabSCMSourceRequest,? extends ChangeRequestSCMHead2,? extends SCMRevision> getTrust()
+ boolean getBuildMRForksNotMirror()
+ void setBuildMRForksNotMirror(boolean)
# void decorateContext(SCMSourceContext<?,?>)
+ boolean includeCategory(SCMHeadCategory)
}
class io.jenkins.plugins.gitlabbranchsource.ForkMergeRequestDiscoveryTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMSourceContext> getContextClass()
+ Class<? extends SCMSource> getSourceClass()
+ ListBoxModel doFillStrategyIdItems()
+ List<SCMHeadAuthorityDescriptor> getTrustDescriptors()
+ SCMHeadAuthority<?,?,?> getDefaultTrust()
}
class io.jenkins.plugins.gitlabbranchsource.ForkMergeRequestDiscoveryTrait$TrustNobody {
+ boolean checkTrusted(SCMSourceRequest,ChangeRequestSCMHead2)
}
class io.jenkins.plugins.gitlabbranchsource.ForkMergeRequestDiscoveryTrait$TrustNobody$DescriptorImpl {
+ boolean isApplicableToOrigin(Class<? extends SCMHeadOrigin>)
+ String getDisplayName()
}
class io.jenkins.plugins.gitlabbranchsource.ForkMergeRequestDiscoveryTrait$TrustMembers {
# boolean checkTrusted(GitLabSCMSourceRequest,MergeRequestSCMHead)
}
class io.jenkins.plugins.gitlabbranchsource.ForkMergeRequestDiscoveryTrait$TrustMembers$DescriptorImpl {
+ String getDisplayName()
+ boolean isApplicableToOrigin(Class<? extends SCMHeadOrigin>)
}
class io.jenkins.plugins.gitlabbranchsource.ForkMergeRequestDiscoveryTrait$TrustPermission {
# boolean checkTrusted(GitLabSCMSourceRequest,MergeRequestSCMHead)
}
class io.jenkins.plugins.gitlabbranchsource.ForkMergeRequestDiscoveryTrait$TrustPermission$DescriptorImpl {
+ String getDisplayName()
+ boolean isApplicableToOrigin(Class<? extends SCMHeadOrigin>)
}
class io.jenkins.plugins.gitlabbranchsource.ForkMergeRequestDiscoveryTrait$TrustEveryone {
# boolean checkTrusted(SCMSourceRequest,ChangeRequestSCMHead2)
}
class io.jenkins.plugins.gitlabbranchsource.ForkMergeRequestDiscoveryTrait$TrustEveryone$DescriptorImpl {
+ String getDisplayName()
+ boolean isApplicableToOrigin(Class<? extends SCMHeadOrigin>)
}
class io.jenkins.plugins.gitlabbranchsource.BranchDiscoveryTrait {
- int strategyId
+ int getStrategyId()
+ boolean isBuildBranch()
+ boolean isBuildBranchesWithMR()
# void decorateContext(SCMSourceContext<?,?>)
+ boolean includeCategory(SCMHeadCategory)
}
class io.jenkins.plugins.gitlabbranchsource.BranchDiscoveryTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMSourceContext> getContextClass()
+ Class<? extends SCMSource> getSourceClass()
+ ListBoxModel doFillStrategyIdItems()
}
class io.jenkins.plugins.gitlabbranchsource.BranchDiscoveryTrait$BranchSCMHeadAuthority {
# boolean checkTrusted(SCMSourceRequest,BranchSCMHead)
}
class io.jenkins.plugins.gitlabbranchsource.BranchDiscoveryTrait$BranchSCMHeadAuthority$DescriptorImpl {
+ boolean isApplicableToOrigin(Class<? extends SCMHeadOrigin>)
+ String getDisplayName()
}
class io.jenkins.plugins.gitlabbranchsource.BranchDiscoveryTrait$ExcludeOriginMRBranchesSCMHeadFilter {
+ boolean isExcluded(SCMSourceRequest,SCMHead)
}
class io.jenkins.plugins.gitlabbranchsource.BranchDiscoveryTrait$OnlyOriginMRBranchesSCMHeadFilter {
+ boolean isExcluded(SCMSourceRequest,SCMHead)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMSourceBuilder {
- String id
- String serverName
- String credentialsId
- String projectOwner
- String projectPath
- String projectName
+ String getId()
+ String getCredentialsId()
+ GitLabSCMSource build()
}
class io.jenkins.plugins.gitlabbranchsource.WebhookListenerBuildConditionsTrait {
- boolean alwaysBuildMROpen
- boolean alwaysBuildMRReOpen
- boolean alwaysIgnoreMRApproval
- boolean alwaysIgnoreMRUnApproval
- boolean alwaysIgnoreMRApproved
- boolean alwaysIgnoreMRUnApproved
- boolean alwaysIgnoreNonCodeRelatedUpdates
- boolean alwaysIgnoreMRWorkInProgress
# void decorateContext(SCMSourceContext<?,?>)
+ boolean getAlwaysBuildMROpen()
+ boolean getAlwaysBuildMRReOpen()
+ boolean getAlwaysIgnoreMRApproval()
+ boolean getAlwaysIgnoreMRUnApproval()
+ boolean getAlwaysIgnoreMRApproved()
+ boolean getAlwaysIgnoreMRUnApproved()
+ boolean getAlwaysIgnoreNonCodeRelatedUpdates()
+ boolean getAlwaysIgnoreMRWorkInProgress()
+ void setAlwaysBuildMROpen(boolean)
+ void setAlwaysBuildMRReOpen(boolean)
+ void setAlwaysIgnoreMRApproval(boolean)
+ void setAlwaysIgnoreMRUnApproval(boolean)
+ void setAlwaysIgnoreMRApproved(boolean)
+ void setAlwaysIgnoreMRUnApproved(boolean)
+ void setAlwaysIgnoreNonCodeRelatedUpdates(boolean)
+ void setAlwaysIgnoreMRWorkInProgress(boolean)
}
class io.jenkins.plugins.gitlabbranchsource.WebhookListenerBuildConditionsTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMSourceContext> getContextClass()
+ Class<? extends SCMSource> getSourceClass()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMSourceDeserializationTest {
- {static} String PROJECT_NAME
- {static} String SOURCE_ID
+ RestartableJenkinsRule plan
+ void afterRestartingJenkinsTransientFieldsAreNotNull()
}
class io.jenkins.plugins.gitlabserverconfig.action.GitlabAction {
+ {static} Logger LOGGER
+ HttpResponse doServerList()
+ HttpResponse doProjectList(SCMSourceOwner,String,String)
+ String getIconFileName()
+ String getDisplayName()
+ String getUrlName()
}
class io.jenkins.plugins.gitlabserverconfig.casc.ConfigurationAsCodeTest {
+ {static} JenkinsConfiguredWithCodeRule j
+ void should_support_configuration_as_code()
+ void should_support_configuration_export()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMSourceContext {
- boolean wantBranches
- boolean wantTags
- boolean wantOriginMRs
- boolean wantForkMRs
- Set<ChangeRequestCheckoutStrategy> originMRStrategies
- Set<ChangeRequestCheckoutStrategy> forkMRStrategies
- GitLabHookRegistration webhookRegistration
- GitLabHookRegistration systemhookRegistration
- boolean buildMRForksNotMirror
- boolean notificationsDisabled
- boolean logCommentEnabled
- String sudoUser
- boolean logSuccess
- boolean mrCommentTriggerEnabled
- boolean onlyTrustedMembersCanTrigger
- String commentBody
- boolean projectAvatarDisabled
- String buildStatusNameCustomPart
- boolean buildStatusNameOverwrite
- boolean ignoreTypeInStatusName
- boolean alwaysBuildMROpen
- boolean alwaysBuildMRReOpen
- boolean alwaysIgnoreMRApproval
- boolean alwaysIgnoreMRUnApproval
- boolean alwaysIgnoreMRApproved
- boolean alwaysIgnoreMRUnApproved
- boolean alwaysIgnoreNonCodeRelatedUpdates
- boolean alwaysIgnoreMRWorkInProgress
- boolean markUnstableAsSuccess
+ boolean wantBranches()
+ boolean wantTags()
+ boolean wantMRs()
+ boolean wantOriginMRs()
+ boolean wantForkMRs()
+ Set<ChangeRequestCheckoutStrategy> originMRStrategies()
+ Set<ChangeRequestCheckoutStrategy> forkMRStrategies()
+ GitLabHookRegistration webhookRegistration()
+ GitLabHookRegistration systemhookRegistration()
+ boolean buildMRForksNotMirror()
+ boolean notificationsDisabled()
+ boolean projectAvatarDisabled()
+ boolean logCommentEnabled()
+ String getSudoUser()
+ boolean doLogSuccess()
+ boolean mrCommentTriggerEnabled()
+ boolean getOnlyTrustedMembersCanTrigger()
+ boolean getMarkUnstableAsSuccess()
+ boolean alwaysBuildMROpen()
+ boolean alwaysBuildMRReOpen()
+ boolean alwaysIgnoreMRApproval()
+ boolean alwaysIgnoreMRUnApproval()
+ boolean alwaysIgnoreMRApproved()
+ boolean alwaysIgnoreMRUnApproved()
+ boolean alwaysIgnoreNonCodeRelatedUpdates()
+ boolean alwaysIgnoreMRWorkInProgress()
+ String getCommentBody()
+ String getBuildStatusNameCustomPart()
+ boolean getBuildStatusNameOverwrite()
+ boolean getIgnoreTypeInStatusName()
+ GitLabSCMSourceContext wantBranches(boolean)
+ GitLabSCMSourceContext wantTags(boolean)
+ GitLabSCMSourceContext wantOriginMRs(boolean)
+ GitLabSCMSourceContext wantForkMRs(boolean)
+ GitLabSCMSourceContext withOriginMRStrategies(Set<ChangeRequestCheckoutStrategy>)
+ GitLabSCMSourceContext withForkMRStrategies(Set<ChangeRequestCheckoutStrategy>)
+ GitLabSCMSourceContext webhookRegistration(GitLabHookRegistration)
+ GitLabSCMSourceContext systemhookRegistration(GitLabHookRegistration)
+ GitLabSCMSourceContext withBuildMRForksNotMirror(boolean)
+ GitLabSCMSourceContext withNotificationsDisabled(boolean)
+ GitLabSCMSourceContext withProjectAvatarDisabled(boolean)
+ GitLabSCMSourceContext withMarkUnstableAsSuccess(boolean)
+ GitLabSCMSourceContext withLogCommentEnabled(boolean)
+ GitLabSCMSourceContext withMRCommentTriggerEnabled(boolean)
+ GitLabSCMSourceContext withOnlyTrustedMembersCanTrigger(boolean)
+ GitLabSCMSourceContext withSudoUser(String)
+ GitLabSCMSourceContext withLogSuccess(boolean)
+ GitLabSCMSourceContext withCommentBody(String)
+ GitLabSCMSourceContext withBuildStatusNameCustomPart(String)
+ GitLabSCMSourceContext withBuildStatusNameOverwrite(Boolean)
+ GitLabSCMSourceContext withIgnoreTypeInStatusName(Boolean)
+ GitLabSCMSourceRequest newRequest(SCMSource,TaskListener)
+ GitLabSCMSourceContext withAlwaysBuildMROpen(boolean)
+ GitLabSCMSourceContext withAlwaysBuildMRReOpen(boolean)
+ GitLabSCMSourceContext withAlwaysIgnoreMRApproval(boolean)
+ GitLabSCMSourceContext withAlwaysIgnoreMRUnApproval(boolean)
+ GitLabSCMSourceContext withAlwaysIgnoreMRApproved(boolean)
+ GitLabSCMSourceContext withAlwaysIgnoreMRUnApproved(boolean)
+ GitLabSCMSourceContext withAlwaysIgnoreNonCodeRelatedUpdates(boolean)
+ GitLabSCMSourceContext withAlwaysIgnoreMRWorkInProgress(boolean)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabWebHookCause {
- String description
- GitLabPushCauseData gitLabPushCauseData
- GitLabMergeRequestCauseData gitLabMergeRequestCauseData
- GitLabTagPushCauseData gitLabTagPushCauseData
+ GitLabWebHookCause fromPush(PushEvent)
+ GitLabWebHookCause fromMergeRequest(MergeRequestEvent)
+ GitLabWebHookCause fromTag(TagPushEvent)
+ String getShortDescription()
+ boolean equals(Object)
+ int hashCode()
+ GitLabPushCauseData getGitLabPushCauseData()
+ GitLabMergeRequestCauseData getGitLabMergeRequestCauseData()
+ GitLabTagPushCauseData getGitLabTagPushCauseData()
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabHelperTest {
+ void server_url_does_not_have_trailing_slash()
}
class io.jenkins.plugins.gitlabbranchsource.HookRegistrationTrait {
- GitLabHookRegistration webHookMode
- GitLabHookRegistration systemHookMode
+ GitLabHookRegistration getWebHookMode()
+ GitLabHookRegistration getSystemHookMode()
# void decorateContext(SCMSourceContext<?,?>)
}
class io.jenkins.plugins.gitlabbranchsource.HookRegistrationTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMSourceContext> getContextClass()
+ Class<? extends SCMSource> getSourceClass()
+ ListBoxModel doFillWebHookModeItems()
+ ListBoxModel doFillSystemHookModeItems()
- ListBoxModel getOptions(boolean)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabMergeRequestCommentTrigger {
+ {static} Logger LOGGER
+ void isMatch()
- boolean isTrustedMember(GitLabSCMSource,boolean)
}
class io.jenkins.plugins.gitlabbranchsource.SubGroupProjectDiscoveryTrait {
# void decorateContext(SCMNavigatorContext<?,?>)
}
class io.jenkins.plugins.gitlabbranchsource.SubGroupProjectDiscoveryTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMNavigator> getNavigatorClass()
}
class io.jenkins.plugins.gitlabbranchsource.Cause.GitLabMergeRequestCauseData {
- Map<String,String> variables
+ Map<String,String> getBuildVariables()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMNavigator {
+ {static} Logger LOGGER
- String projectOwner
- String serverName
- String credentialsId
- List<SCMTrait<? extends SCMTrait<?>>> traits
- HashSet<String> navigatorProjects
- boolean isGroup
- boolean wantSubGroupProjects
- GitLabOwner gitlabOwner
+ {static} String getProjectOwnerFromNamespace(String)
+ HashSet<String> getNavigatorProjects()
+ boolean isGroup()
+ boolean isWantSubGroupProjects()
+ String getCredentialsId()
+ void setCredentialsId(String)
+ String getServerName()
+ void setServerName(String)
+ String getProjectOwner()
+ List<SCMTrait<? extends SCMTrait<?>>> getTraits()
+ void setTraits(SCMTrait[])
- GitLabOwner getGitlabOwner(SCMNavigatorOwner)
- GitLabOwner getGitlabOwner(GitLabApi)
+ void setTraits(List<SCMTrait<? extends SCMTrait<?>>>)
# String id()
+ void visitSources(SCMSourceObserver)
- String getProjectName(GitLabApi,int,Project)
- StandardCredentials getWebHookCredentials(SCMSourceOwner)
# List<Action> retrieveActions(SCMNavigatorOwner,SCMNavigatorEvent,TaskListener)
+ void afterSave(SCMNavigatorOwner)
+ StandardCredentials credentials(SCMSourceOwner)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMNavigator$DescriptorImpl {
- GitLabSCMSource.DescriptorImpl delegate
+ {static} FormValidation doCheckProjectOwner(SCMSourceOwner,String,String)
+ String getDisplayName()
+ String getPronoun()
+ String getDescription()
+ String getIconClassName()
+ String getIconFilePathPattern()
+ SCMNavigator newInstance(String)
+ ListBoxModel doFillServerNameItems(SCMSourceOwner,String)
+ ListBoxModel doFillCredentialsIdItems(SCMSourceOwner,String,String)
+ List<NamedArrayList<? extends SCMTraitDescriptor<?>>> getTraitsDescriptorLists()
+ List<SCMTrait<? extends SCMTrait<?>>> getTraitsDefaults()
}
class io.jenkins.plugins.gitlabbranchsource.OriginMergeRequestDiscoveryTrait {
- int strategyId
+ int getStrategyId()
+ Set<ChangeRequestCheckoutStrategy> getStrategies()
# void decorateContext(SCMSourceContext<?,?>)
+ boolean includeCategory(SCMHeadCategory)
}
class io.jenkins.plugins.gitlabbranchsource.OriginMergeRequestDiscoveryTrait$DescriptorImpl {
+ String getDisplayName()
+ Class<? extends SCMSourceContext> getContextClass()
+ Class<? extends SCMSource> getSourceClass()
+ ListBoxModel doFillStrategyIdItems()
}
class io.jenkins.plugins.gitlabbranchsource.OriginMergeRequestDiscoveryTrait$OriginChangeRequestSCMHeadAuthority {
# boolean checkTrusted(SCMSourceRequest,ChangeRequestSCMHead2)
}
class io.jenkins.plugins.gitlabbranchsource.OriginMergeRequestDiscoveryTrait$OriginChangeRequestSCMHeadAuthority$DescriptorImpl {
+ boolean isApplicableToOrigin(Class<? extends SCMHeadOrigin>)
+ String getDisplayName()
}
class io.jenkins.plugins.gitlabbranchsource.Cause.GitLabPushCauseData {
- Map<String,String> variables
+ Map<String,String> getBuildVariables()
}
class io.jenkins.plugins.gitlabserverconfig.credentials.PersonalAccessTokenImpl {
- Secret token
+ Secret getToken()
}
class io.jenkins.plugins.gitlabserverconfig.credentials.PersonalAccessTokenImpl$DescriptorImpl {
- {static} int GITLAB_ACCESS_TOKEN_MINIMAL_LENGTH
+ String getDisplayName()
+ FormValidation doCheckToken(String)
}
class io.jenkins.plugins.gitlabbranchsource.Cause.GitLabMergeRequestNoteData {
- Map<String,String> variables
+ Map<String,String> getBuildVariables()
}
class io.jenkins.plugins.gitlabbranchsource.GitLabProjectSCMEvent {
- {static} Type typeOf(ProjectSystemHookEvent)
+ String descriptionFor(SCMNavigator)
+ String description()
+ String descriptionFor(SCMSource)
+ String getSourceName()
+ boolean isMatch(SCMNavigator)
- boolean isMatch(GitLabSCMNavigator)
+ boolean isMatch(SCMSource)
}
class io.jenkins.plugins.gitlabserverconfig.servers.GitLabServer {
+ {static} CredentialsMatcher CREDENTIALS_MATCHER
+ {static} String GITLAB_SERVER_DEFAULT_NAME
+ {static} String GITLAB_SERVER_URL
+ {static} String EMPTY_TOKEN
+ {static} Logger LOGGER
- {static} SecureRandom RANDOM
- {static} int SHORT_NAME_LENGTH
- {static} String[] COMMON_PREFIX_HOSTNAMES
- String name
- String serverUrl
- boolean manageWebHooks
- boolean manageSystemHooks
- String credentialsId
- String hooksRootUrl
- Secret secretToken
- String webhookSecretCredentialsId
+ {static} CredentialsMatcher WEBHOOK_SECRET_CREDENTIALS_MATCHER
- boolean immediateHookTrigger
- Integer hookTriggerDelay
- String getRandomName()
+ String getName()
+ String getServerUrl()
+ boolean isManageWebHooks()
+ void setManageWebHooks(boolean)
+ boolean isManageSystemHooks()
+ void setManageSystemHooks(boolean)
+ String getCredentialsId()
+ StandardCredentials getCredentials(AccessControlled)
+ void setHooksRootUrl(String)
+ String getHooksRootUrl()
+ void setSecretToken(Secret)
+ void setWebhookSecretCredentialsId(String)
+ String getWebhookSecretCredentialsId()
+ StringCredentials getWebhookSecretCredentials(AccessControlled)
+ DescriptorImpl getDescriptor()
+ Secret getSecretToken()
- StringCredentials getWebhookSecretCredentials(String)
+ String getSecretTokenAsPlainText()
- Object readResolve()
- void migrateWebhookSecretCredentials()
+ boolean isImmediateHookTrigger()
+ void setImmediateHookTrigger(boolean)
+ void setHookTriggerDelay(String)
+ Integer getHookTriggerDelay()
}
class io.jenkins.plugins.gitlabserverconfig.servers.GitLabServer$DescriptorImpl {
+ {static} FormValidation doCheckServerUrl(String)
+ {static} FormValidation doCheckHooksRootUrl(String)
+ {static} FormValidation doCheckHookTriggerDelay(String)
+ String getDisplayName()
+ FormValidation doTestConnection(String,String)
+ ListBoxModel doFillCredentialsIdItems(String,String)
+ ListBoxModel doFillWebhookSecretCredentialsIdItems(String,String)
- StandardCredentials getCredentials(String,String)
}
class io.jenkins.plugins.gitlabbranchsource.GitLabSCMNavigatorContext {
- boolean wantSubgroupProjects
- int projectNamingStrategy
- boolean excludeArchivedRepositories
+ GitLabSCMNavigatorRequest newRequest(SCMNavigator,SCMSourceObserver)
+ boolean wantSubgroupProjects()
+ GitLabSCMNavigatorContext wantSubgroupProjects(boolean)
+ int withProjectNamingStrategy()
+ GitLabSCMNavigatorContext withProjectNamingStrategy(int)
+ boolean isExcludeArchivedRepositories()
+ void setExcludeArchivedRepositories(boolean)
}
class io.jenkins.plugins.gitlabbranchsource.helpers.GitLabPipelineStatusNotifierTest {
+ void should_set_branch_status_name()
+ void should_set_branch_status_name_withBuildStatusNameCustomPart()
+ void should_set_branch_status_name_withIgnoreTypeInStatusName()
+ void should_set_merge_request_head_status_name()
+ void should_set_merge_request_merge_status_name()
+ void should_set_tag_status_name()
+ void should_set_branch_ref_name()