Class ClassicDisplayURLProvider
- java.lang.Object
-
- org.jenkinsci.plugins.displayurlapi.DisplayURLProvider
-
- org.jenkinsci.plugins.displayurlapi.ClassicDisplayURLProvider
-
- All Implemented Interfaces:
ExtensionPoint
@Extension public class ClassicDisplayURLProvider extends DisplayURLProvider
Display URL Provider for the Classical Jenkins UI
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description ClassicDisplayURLProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetChangesURL(Run<?,?> run)Fully qualified URL for a page that displays changes for a project.StringgetDisplayName()Display name of this provider e.g.StringgetJobURL(Job<?,?> job)Fully qualified URL for a Jobs homeStringgetName()Name of provider to be used as an id.StringgetRunURL(Run<?,?> run)Fully qualified URL for a RunStringgetTestsURL(Run<?,?> run)Fully qualified URL for a page that displays tests for a Run.-
Methods inherited from class org.jenkinsci.plugins.displayurlapi.DisplayURLProvider
all, get, getArtifactsURL, getDefault, getPreferredProvider, getRoot
-
-
-
-
Method Detail
-
getDisplayName
@NonNull public String getDisplayName()
Description copied from class:DisplayURLProviderDisplay name of this provider e.g. "Jenkins Classic", "Blue Ocean", etc- Overrides:
getDisplayNamein classDisplayURLProvider
-
getName
@NonNull public String getName()
Description copied from class:DisplayURLProviderName of provider to be used as an id. Do not use i18n- Overrides:
getNamein classDisplayURLProvider
-
getRunURL
@NonNull public String getRunURL(Run<?,?> run)
Description copied from class:DisplayURLProviderFully qualified URL for a Run- Specified by:
getRunURLin classDisplayURLProvider
-
getChangesURL
@NonNull public String getChangesURL(Run<?,?> run)
Description copied from class:DisplayURLProviderFully qualified URL for a page that displays changes for a project.- Specified by:
getChangesURLin classDisplayURLProvider
-
getTestsURL
@NonNull public String getTestsURL(Run<?,?> run)
Description copied from class:DisplayURLProviderFully qualified URL for a page that displays tests for a Run.- Specified by:
getTestsURLin classDisplayURLProvider
-
getJobURL
@NonNull public String getJobURL(Job<?,?> job)
Description copied from class:DisplayURLProviderFully qualified URL for a Jobs home- Specified by:
getJobURLin classDisplayURLProvider
-
-