-
public interface HelidonFeatureProviderA provider of a feature that cannot use static initialization.For modules that are statically initialized before server is started, you can use methods on
HelidonFeaturesdirectly, to register a feature. In case the feature is not related to startup or discovery (such as an HTTP client), you can register a feature through this SPI.This SPI is invoked before the features are printed, so you can safely register your feature.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidregister()You can register your feature in this method, usingHelidonFeatures.register(io.helidon.common.HelidonFlavor, String...)orHelidonFeatures.register(String...), or in a static initializer of this implementation.
-
-
-
Method Detail
-
register
default void register()
You can register your feature in this method, usingHelidonFeatures.register(io.helidon.common.HelidonFlavor, String...)orHelidonFeatures.register(String...), or in a static initializer of this implementation.
-
-