3

I'm developing a Jenkins plugin where I'm trying to add a link with an icon to the sidepanel under Manage Jenkins->Manage Nodes. My link would be placed just below "New Node".

I've implemented a simple Action, but what should I do with it to make it appear in the sidepanel?

public class BuildCountAction implements Action {

    public BuildCountAction() {}

    public String getIconFileName() {
        return "clipboard.gif";
    }

    public String getDisplayName() {
        return "Test";
    }

    public String getUrlName() {
        return "testurl";
    }
}
  • just wondering if you ever figured out how to solve this problem? Ive been struggling for awhile with no luck. – Chebz Aug 02 '15 at 01:11

1 Answers1

0

You may want to take a look at similar plugins that already exist for Hudson/Jenkins..

Akhil Jain
  • 13,872
  • 15
  • 57
  • 93
Peter Bernier
  • 8,038
  • 6
  • 38
  • 53