Package hudson.plugins.jobConfigHistory
Class JobConfigBadgeAction
- java.lang.Object
-
- hudson.plugins.jobConfigHistory.JobConfigBadgeAction
-
- All Implemented Interfaces:
Action
,BuildBadgeAction
,ModelObject
,RunAction2
public class JobConfigBadgeAction extends Object implements BuildBadgeAction, RunAction2
This class adds a badge to the build history marking builds that occurred after the configuration was changed.- Author:
- Kathi Stutz
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JobConfigBadgeAction.Listener
Listener.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
createLink()
Creates the target for the link to the showDiffFiles page.String
getDisplayName()
Non-use interface method.String
getIcon()
Returns the path to our nice little icon.String
getIconFileName()
Non-use interface method.String
getTooltip()
Returns tooltip so users know what our nice little icon stands for.String
getUrlName()
Non-use interface method.boolean
oldConfigsExist()
Check if the config history files that are attached to the build still exist.void
onAttached(Run<?,?> r)
void
onLoad(Run<?,?> r)
boolean
showBadge()
Returns true if the config change build badges should appear (depending on plugin settings and user permissions).
-
-
-
Method Detail
-
onAttached
public void onAttached(Run<?,?> r)
- Specified by:
onAttached
in interfaceRunAction2
-
onLoad
public void onLoad(Run<?,?> r)
- Specified by:
onLoad
in interfaceRunAction2
-
showBadge
public boolean showBadge()
Returns true if the config change build badges should appear (depending on plugin settings and user permissions). Called from badge.jelly.- Returns:
- True if badges should appear.
-
oldConfigsExist
public boolean oldConfigsExist()
Check if the config history files that are attached to the build still exist.- Returns:
- True if both files exist.
-
createLink
public String createLink()
Creates the target for the link to the showDiffFiles page.- Returns:
- Link target as String.
-
getTooltip
public String getTooltip()
Returns tooltip so users know what our nice little icon stands for.- Returns:
- Explanatory text as string
-
getIcon
public String getIcon()
Returns the path to our nice little icon.- Returns:
- Icon path as string
-
getIconFileName
public String getIconFileName()
Non-use interface method.- Specified by:
getIconFileName
in interfaceAction
-
getDisplayName
public String getDisplayName()
Non-use interface method.- Specified by:
getDisplayName
in interfaceAction
- Specified by:
getDisplayName
in interfaceModelObject
-
getUrlName
public String getUrlName()
Non-use interface method.- Specified by:
getUrlName
in interfaceAction
-
-