fr.ird.observe.maven.plugins.toolbox.TestConfigApplicationComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toolbox-maven-plugin Show documentation
Show all versions of toolbox-maven-plugin Show documentation
ObServe Toolbox Maven plugin module
package fr.ird.observe.maven.plugins.toolbox;
import com.google.auto.service.AutoService;
import fr.ird.observe.dto.decoration.ReferentialLocaleConfig;
import io.ultreia.java4all.application.context.ApplicationComponent;
import io.ultreia.java4all.application.context.ApplicationComponentSupplier;
import io.ultreia.java4all.application.context.ApplicationContext;
import io.ultreia.java4all.application.context.spi.ApplicationComponentInstantiateStrategy;
import javax.annotation.Generated;
@AutoService(value = ApplicationComponent.class)
@Generated(value = "io.ultreia.java4all.application.context.spi.GenerateApplicationComponentProcessor", date = "Mon Mar 23 09:56:19 UTC 2020")
public class TestConfigApplicationComponent extends ApplicationComponent {
public static ApplicationComponentSupplier INSTANCE = ApplicationContext.componentSupplier(TestConfig.class, TestConfigApplicationComponent.class);
public static TestConfigApplicationComponent component() {
return INSTANCE.get();
}
public static TestConfig value() {
return component().get();
}
public TestConfigApplicationComponent() {
super("ObServe test config", TestConfig.class,true, ApplicationComponentInstantiateStrategy.CONSTRUCTOR,new Class[]{ReferentialLocaleConfig.class},new Class[]{});
}
}