fi.evolver.basics.spring.status.model.Reportable Maven / Gradle / Ivy
package fi.evolver.basics.spring.status.model;
import java.util.List;
public interface Reportable {
public List getStatus();
/**
* Get the scope of the reportable, either SERVICE for service-wide data or INSTANCE for instance-specific data.
* By default, SERVICE is returned.
*/
default ReportableScope getReportableScope() {
return ReportableScope.SERVICE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy