
com.foryouandyourcustomers.health.HealthCheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of health-check Show documentation
Show all versions of health-check Show documentation
The main goal of this module is to enable the creation of health checks as a tool for testing the
application in run time.
The newest version!
package com.foryouandyourcustomers.health;
import static com.foryouandyourcustomers.health.HealthCheckType.ONCE;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface HealthCheck {
/**
* Defining the type of the health check allows you to define the period on which the health checks will be run.
* @return the type of the Health check. By default ${HealthCheckTyp.ONCE}.
*/
HealthCheckType type() default ONCE;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy