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";
}
}