fish.payara.nucleus.healthcheck.configuration.CpuUsageCheckerInjector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-embedded-all Show documentation
Show all versions of payara-embedded-all Show documentation
Payara-Embedded-All 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 = "cpu-usage-checker", metadata = "=collection:org.jvnet.hk2.config.types.Property,@enabled=optional,@enabled=datatype:java.lang.String,@enabled=leaf,@name=optional,@name=default:CPUC,@name=datatype:java.lang.String,@name=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.CpuUsageChecker")
@InjectionTarget(CpuUsageChecker.class)
public class CpuUsageCheckerInjector
extends NoopConfigInjector
{
}