
hudson.model.HealthReportingAction Maven / Gradle / Ivy
Show all versions of hudson-core Show documentation
/*******************************************************************************
*
* Copyright (c) 2004-2009 Oracle Corporation.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*
* Kohsuke Kawaguchi, Stephen Connolly
*
*
*******************************************************************************/
package hudson.model;
/**
* An {@link Action} that can return information about the health of the Job.
* The health of a {@link Job} is the lowest health returned by the
* HealthReportingAction's that contribute to the Job.
When a particular
* Action "wins", it's gets to determine the icon and associated description.
*
This provides a mechanism for plugins to present important summary
* information on the {@link View} main pages without eating up significant
* screen real estate.
*
* @author Stephen Connolly
* @since 1.115
*/
public interface HealthReportingAction extends Action {
/**
* Get this {@link Action}'s {@link HealthReport}.
*
* @return The health report for this instance of the Action or
* null
if the Action does not want to contribute a
* HealthReport.
*/
HealthReport getBuildHealth();
}