fish.payara.nucleus.healthcheck.configuration.CheckerInjector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-micro Show documentation
Show all versions of payara-micro Show documentation
Micro Distribution of the Payara Project
package fish.payara.nucleus.healthcheck.configuration;
import org.jvnet.hk2.annotations.Service;
import org.jvnet.hk2.config.InjectionTarget;
import org.jvnet.hk2.config.NoopConfigInjector;
@Service(name = "checker", metadata = "@add-to-micro-profile-health=optional,@add-to-micro-profile-health=datatype:java.lang.String,@add-to-micro-profile-health=leaf,@enabled=optional,@enabled=default:false,@enabled=datatype:java.lang.String,@enabled=leaf,@time=optional,@time=default:5,@time=datatype:java.lang.Long,@time=leaf,@unit=optional,@unit=default:MINUTES,@unit=datatype:java.lang.String,@unit=leaf,target=fish.payara.nucleus.healthcheck.configuration.Checker")
@InjectionTarget(Checker.class)
public class CheckerInjector
extends NoopConfigInjector
{
}