All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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