Skip to content

Instantly share code, notes, and snippets.

@swestcott
Created October 24, 2010 11:22
Show Gist options
  • Save swestcott/643459 to your computer and use it in GitHub Desktop.
Save swestcott/643459 to your computer and use it in GitHub Desktop.
public class BuildAllAction implements RootAction {
private static final Logger LOGGER = Logger.getLogger(BuildAllAction.class.getName());
public String getIconFileName() {
return "doesnotexist";
}
public String getDisplayName() {
return "Build All";
}
public String getUrlName() {
return "/buildall";
}
public void doBuildAll(StaplerRequest req, StaplerResponse rsp) {
LOGGER.log(Level.SEVERE, "calling doBuildAll");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment