fish.payara.nucleus.healthcheck.configuration.GarbageCollectorCheckerInjector 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 = "garbage-collector-checker", metadata = "=collection:org.jvnet.hk2.config.types.Property,@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,@name=optional,@name=default:GBGC,@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.GarbageCollectorChecker")
@InjectionTarget(GarbageCollectorChecker.class)
public class GarbageCollectorCheckerInjector
extends NoopConfigInjector
{
}