fish.payara.service.example.config.ExampleServiceConfigurationInjector 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.service.example.config;
import org.jvnet.hk2.annotations.Service;
import org.jvnet.hk2.config.InjectionTarget;
import org.jvnet.hk2.config.NoopConfigInjector;
@Service(name = "example-service-configuration", metadata = "@message=optional,@message=default:Hello World,@message=datatype:java.lang.String,@message=leaf,target=fish.payara.service.example.config.ExampleServiceConfiguration")
@InjectionTarget(ExampleServiceConfiguration.class)
public class ExampleServiceConfigurationInjector
extends NoopConfigInjector
{
}