*/
protected void scheduleNewBuild(BuildRequest buildRequest) {
// Code will go here to kick off new build thread, running
// in the background. When thread completes, it'll change
// the state to FINISHED or FAILED.
BuildRequestProcessor t = new BuildRequestProcessor(buildRequest);
new Thread(t).start();
}