com.tikal.jenkins.plugins.multijob.views.LastFailureColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jenkins-multijob-plugin Show documentation
Show all versions of jenkins-multijob-plugin Show documentation
Enabling full hierarchy of Jenkins jobs
The newest version!
package com.tikal.jenkins.plugins.multijob.views;
import hudson.Extension;
import hudson.views.ListViewColumnDescriptor;
import org.kohsuke.stapler.DataBoundConstructor;
public class LastFailureColumn extends MultiJobListViewColumn {
@DataBoundConstructor
public LastFailureColumn() {
}
@Extension
public static class DescriptorImpl extends ListViewColumnDescriptor {
@Override
public String getDisplayName() {
return "MultiJob - Last Failure";
}
public boolean shownByDefault() {
return false;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy