Uses of Interface
io.helidon.common.config.NamedService
Packages that use NamedService
Package
Description
Concurrency limits API and default implementations.
Provides the minimal set of types for immutable, tree-structured configuration access.
TLS Configuration for client and server.
Provides interfaces and classes for loading and working with immutable, tree-structured
configuration data.
DataSource support API.Hikari
DataSource support.JDBC
DataSource support.UCP
DataSource support.JDBC client for Helidon.
HTTP Content encoding support, usually used to compress entity, such as
gzip.Deflate encoding support.
Gzip encoding support.
Helidon Media Support.
Gson media type support.
Jackson media type support.
JSON-Binding Entity Media handling support.
JSON-Processing Entity Media handling support.
Multipart Entity Media handling support.
Provides classes and interfaces related to automatic and unobtrusive service instance registration in Netflix Eureka servers of version 2.0.3 or later.
Helidon Integrations of OCI Certificates Service.
Helidon OpenAPI UI support.
Helidon OpenAPI support.
Helidon WebClient gRPC Support.
Helidon gRPC client SPI.
Helidon WebClient gRPC tracing support.
Helidon WebClient HTTP/1.1 Support.
Helidon WebClient HTTP/2 Support.
Helidon WebClient JSON-RPC Support.
Helidon WebClient Metrics Support.
Helidon WebClient Security Support.
Helidon WebClient SPI.
Helidon WebClient Tracing Support.
Helidon WebClient WebSocket Support.
Helidon WebServer module, combining common server API, HTTP API and HTTP/1.1 API to create a server.
Helidon WebServer Access Log Support.
An implementation of a feature to protect all server requests with a limit.
Helidon WebServer Context Support.
Helidon WebServer CORS Support.
Helidon WebServer gRPC Support.
Helidon WebServer HTTP/1.1 specific APIs.
Helidon WebServer HTTP/2 Support.
Helidon WebServer Observability Support.
Helidon WebServer Observability Config Support.
Helidon WebServer Observability Health Support.
Helidon WebServer Observability Info Support.
Helidon WebServer Observability Log Support.
Helidon WebServer Observability Metrics Support.
Helidon WebServer Observability SPI.
Helidon WebServer Tracing Observability Support.
Helidon WebServer Security Support.
Helidon WebServer SPI.
Helidon WebServer Static Content Support.
WebSocket server support.
-
Uses of NamedService in io.helidon.common.concurrency.limits
Subinterfaces of NamedService in io.helidon.common.concurrency.limitsClasses in io.helidon.common.concurrency.limits that implement NamedServiceModifier and TypeClassDescriptionclassAIMD based limiter.classSemaphore based limit, that supports queuing for a permit, and timeout on the queue. -
Uses of NamedService in io.helidon.common.config
Classes in io.helidon.common.config with type parameters of type NamedServiceModifier and TypeInterfaceDescriptioninterfaceConfiguredProvider<T extends NamedService>Deprecated.Methods in io.helidon.common.config with type parameters of type NamedServiceModifier and TypeMethodDescriptionstatic <S extends NamedService,T extends ConfiguredProvider<S>>
Optional<S> ConfigBuilderSupport.discoverService(Config config, String configKey, HelidonServiceLoader<T> serviceLoader, Class<T> providerType, Class<S> configType, boolean allFromServiceLoader, Optional<S> existingValue) Deprecated, for removal: This API element is subject to removal in a future version.static <S extends NamedService,T extends ConfiguredProvider<S>>
Optional<S> ConfigBuilderSupport.discoverService(Config config, String configKey, Class<T> providerType, Class<S> configType, boolean allFromServiceLoader, Optional<S> existingValue) Deprecated, for removal: This API element is subject to removal in a future version.Discover service from configuration.static <T extends NamedService>
Optional<T> ConfigBuilderSupport.discoverService(Config config, String configKey, Optional<ServiceRegistry> serviceRegistry, Class<? extends ConfiguredProvider<T>> providerType, Class<T> configType, boolean discoverServices, Optional<T> existingValue) Deprecated, for removal: This API element is subject to removal in a future version.Used to discover service fromServiceRegistryfor builder options annotated withOption.Provider, if the blueprint is annotated withPrototype.RegistrySupport.static <S extends NamedService,T extends ConfiguredProvider<S>>
List<S> ConfigBuilderSupport.discoverServices(Config config, String configKey, HelidonServiceLoader<T> serviceLoader, Class<T> providerType, Class<S> configType, boolean allFromServiceLoader, List<S> existingInstances) Deprecated, for removal: This API element is subject to removal in a future version.static <S extends NamedService,T extends ConfiguredProvider<S>>
List<S> ConfigBuilderSupport.discoverServices(Config config, String configKey, Class<T> providerType, Class<S> configType, boolean allFromServiceLoader, List<S> existingInstances) Deprecated, for removal: This API element is subject to removal in a future version.Discover services from configuration.static <T extends NamedService>
List<T> ConfigBuilderSupport.discoverServices(Config config, String configKey, Optional<ServiceRegistry> serviceRegistry, Class<? extends ConfiguredProvider<T>> providerType, Class<T> configType, boolean allFromRegistry, List<T> existingValues) Deprecated, for removal: This API element is subject to removal in a future version.Used to discover services fromServiceRegistryfor builder options annotated withOption.Provider, if the blueprint is annotated withPrototype.RegistrySupport. -
Uses of NamedService in io.helidon.common.tls
Subinterfaces of NamedService in io.helidon.common.tlsModifier and TypeInterfaceDescriptioninterfaceImplementors of this contract are responsible for managing theSSLContextinstance lifecycle, as well as theTlsReloadableComponentinstances.Classes in io.helidon.common.tls that implement NamedService -
Uses of NamedService in io.helidon.config
Methods in io.helidon.config with type parameters of type NamedServiceModifier and TypeMethodDescriptionstatic <S extends NamedService,T extends ConfiguredProvider<S>>
Optional<S> ConfigBuilderSupport.discoverService(Config config, String configKey, Class<T> providerType, Class<S> configType, boolean allFromServiceLoader, Optional<S> existingValue) Discover service from configuration.static <T extends NamedService>
Optional<T> ConfigBuilderSupport.discoverService(Config config, String configKey, Optional<ServiceRegistry> serviceRegistry, Class<? extends ConfiguredProvider<T>> providerType, Class<T> configType, boolean discoverServices, Optional<T> existingValue) Used to discover service fromServiceRegistryfor builder options annotated withOption.Provider, if the blueprint is annotated withPrototype.RegistrySupport.static <S extends NamedService,T extends ConfiguredProvider<S>>
List<S> ConfigBuilderSupport.discoverServices(Config config, String configKey, Class<T> providerType, Class<S> configType, boolean allFromServiceLoader, List<S> existingInstances) Discover services from configuration.static <S extends NamedService,T extends ConfiguredProvider<S>>
List<S> ConfigBuilderSupport.discoverServices(Config config, String configKey, Optional<ServiceRegistry> serviceRegistry, Class<T> providerType, Class<S> configType, boolean allFromRegistry, List<S> existingValues) Used to discover services fromServiceRegistryfor builder options annotated withOption.Provider, if the blueprint is annotated withPrototype.RegistrySupport. -
Uses of NamedService in io.helidon.data.sql.datasource
Subinterfaces of NamedService in io.helidon.data.sql.datasource -
Uses of NamedService in io.helidon.data.sql.datasource.hikari
Subinterfaces of NamedService in io.helidon.data.sql.datasource.hikariModifier and TypeInterfaceDescriptioninterfaceHikari connection pool specific configuration forDataSource.(package private) interfaceio.helidon.data.sql.datasource.hikari.HikariDataSourceConfigBlueprintHikari connection pool specific configuration forDataSource.Classes in io.helidon.data.sql.datasource.hikari that implement NamedServiceModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations. -
Uses of NamedService in io.helidon.data.sql.datasource.jdbc
Subinterfaces of NamedService in io.helidon.data.sql.datasource.jdbcModifier and TypeInterfaceDescriptioninterfaceJDBC Data source configuration.(package private) interfaceio.helidon.data.sql.datasource.jdbc.JdbcDataSourceConfigBlueprintJDBC Data source configuration.Classes in io.helidon.data.sql.datasource.jdbc that implement NamedServiceModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations. -
Uses of NamedService in io.helidon.data.sql.datasource.ucp
Subinterfaces of NamedService in io.helidon.data.sql.datasource.ucpModifier and TypeInterfaceDescriptioninterfaceUCP specific configuration forDataSource.(package private) interfaceio.helidon.data.sql.datasource.ucp.UcpDataSourceConfigBlueprintUCP specific configuration forDataSource.Classes in io.helidon.data.sql.datasource.ucp that implement NamedServiceModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations. -
Uses of NamedService in io.helidon.dbclient.jdbc
Subinterfaces of NamedService in io.helidon.dbclient.jdbcModifier and TypeInterfaceDescriptioninterfaceCloseableJdbcConnectionPool is an interface that represents a JDBC connection pool that can be closed.interfaceJDBC connection pool. -
Uses of NamedService in io.helidon.http.encoding
Subinterfaces of NamedService in io.helidon.http.encodingModifier and TypeInterfaceDescriptioninterfaceContent encoding service created fromContentEncodingProvider, or directly implemented. -
Uses of NamedService in io.helidon.http.encoding.deflate
Classes in io.helidon.http.encoding.deflate that implement NamedService -
Uses of NamedService in io.helidon.http.encoding.gzip
Classes in io.helidon.http.encoding.gzip that implement NamedService -
Uses of NamedService in io.helidon.http.media
Subinterfaces of NamedService in io.helidon.http.mediaClasses in io.helidon.http.media that implement NamedServiceModifier and TypeClassDescriptionclassMedia support forMediaTypes.APPLICATION_FORM_URLENCODEDand its plaintext counterpart.classMedia support for Path.classMedia support for strings. -
Uses of NamedService in io.helidon.http.media.gson
Classes in io.helidon.http.media.gson that implement NamedServiceModifier and TypeClassDescriptionclassServiceLoaderprovider implementation for Gson media support. -
Uses of NamedService in io.helidon.http.media.jackson
Classes in io.helidon.http.media.jackson that implement NamedServiceModifier and TypeClassDescriptionclassServiceLoaderprovider implementation for Jackson media support. -
Uses of NamedService in io.helidon.http.media.jsonb
Classes in io.helidon.http.media.jsonb that implement NamedServiceModifier and TypeClassDescriptionclassServiceLoaderprovider implementation for JSON Binding media support. -
Uses of NamedService in io.helidon.http.media.jsonp
Classes in io.helidon.http.media.jsonp that implement NamedServiceModifier and TypeClassDescriptionclassMedia support implementation for JSON Processing media support. -
Uses of NamedService in io.helidon.http.media.multipart
Classes in io.helidon.http.media.multipart that implement NamedServiceModifier and TypeClassDescriptionclassMedia support implementation for support of multipart. -
Uses of NamedService in io.helidon.integrations.eureka
Classes in io.helidon.integrations.eureka that implement NamedServiceModifier and TypeClassDescriptionfinal classAServerFeaturethat automatically and unobtrusively attempts to register the currently running microservice as a Eureka Server service instance. -
Uses of NamedService in io.helidon.integrations.oci.tls.certificates
Subinterfaces of NamedService in io.helidon.integrations.oci.tls.certificates -
Uses of NamedService in io.helidon.integrations.openapi.ui
Classes in io.helidon.integrations.openapi.ui that implement NamedService -
Uses of NamedService in io.helidon.openapi
Subinterfaces of NamedService in io.helidon.openapiModifier and TypeInterfaceDescriptioninterfaceOpenApi manager.interfaceOpenAPI service.Classes in io.helidon.openapi that implement NamedService -
Uses of NamedService in io.helidon.webclient.context
Classes in io.helidon.webclient.context that implement NamedServiceModifier and TypeClassDescriptionclassClient service for context propagation. -
Uses of NamedService in io.helidon.webclient.grpc
Subinterfaces of NamedService in io.helidon.webclient.grpcModifier and TypeInterfaceDescriptioninterfaceConfiguration of a gRPC client.(package private) interfaceio.helidon.webclient.grpc.GrpcClientProtocolConfigBlueprintConfiguration of a gRPC client.Classes in io.helidon.webclient.grpc that implement NamedServiceModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations. -
Uses of NamedService in io.helidon.webclient.grpc.spi
Subinterfaces of NamedService in io.helidon.webclient.grpc.spiModifier and TypeInterfaceDescriptioninterfaceExtension that can modify gRPC client behavior. -
Uses of NamedService in io.helidon.webclient.grpc.tracing
Classes in io.helidon.webclient.grpc.tracing that implement NamedService -
Uses of NamedService in io.helidon.webclient.http1
Subinterfaces of NamedService in io.helidon.webclient.http1Modifier and TypeInterfaceDescriptioninterfaceConfiguration of an HTTP/1.1 client.(package private) interfaceio.helidon.webclient.http1.Http1ClientProtocolConfigBlueprintConfiguration of an HTTP/1.1 client.Classes in io.helidon.webclient.http1 that implement NamedServiceModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations. -
Uses of NamedService in io.helidon.webclient.http2
Subinterfaces of NamedService in io.helidon.webclient.http2Modifier and TypeInterfaceDescriptioninterfaceInterface generated from definition.(package private) interfaceio.helidon.webclient.http2.Http2ClientProtocolConfigBlueprintClasses in io.helidon.webclient.http2 that implement NamedServiceModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations. -
Uses of NamedService in io.helidon.webclient.jsonrpc
Subinterfaces of NamedService in io.helidon.webclient.jsonrpcModifier and TypeInterfaceDescriptioninterfaceConfiguration of a JSON-RPC client.(package private) interfaceio.helidon.webclient.jsonrpc.JsonRpcClientProtocolConfigBlueprintConfiguration of a JSON-RPC client.Classes in io.helidon.webclient.jsonrpc that implement NamedServiceModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations. -
Uses of NamedService in io.helidon.webclient.metrics
Classes in io.helidon.webclient.metrics that implement NamedServiceModifier and TypeClassDescriptionclassClient metric meter for all requests.classContainer object for all metrics created by the config. -
Uses of NamedService in io.helidon.webclient.security
Classes in io.helidon.webclient.security that implement NamedServiceModifier and TypeClassDescriptionclassClient service for security propagation. -
Uses of NamedService in io.helidon.webclient.spi
Subinterfaces of NamedService in io.helidon.webclient.spiModifier and TypeInterfaceDescriptioninterfaceClient protocol configuration.interfaceExtension that can modify web client behavior. -
Uses of NamedService in io.helidon.webclient.tracing
Classes in io.helidon.webclient.tracing that implement NamedService -
Uses of NamedService in io.helidon.webclient.websocket
Subinterfaces of NamedService in io.helidon.webclient.websocketModifier and TypeInterfaceDescriptioninterfaceConfiguration of an HTTP/1.1 client.(package private) interfaceio.helidon.webclient.websocket.WsClientProtocolConfigBlueprintConfiguration of an HTTP/1.1 client.Classes in io.helidon.webclient.websocket that implement NamedServiceModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations. -
Uses of NamedService in io.helidon.webserver
Classes in io.helidon.webserver that implement NamedServiceModifier and TypeClassDescriptionclassA feature that adds request scope support to Helidon declarative. -
Uses of NamedService in io.helidon.webserver.accesslog
Classes in io.helidon.webserver.accesslog that implement NamedServiceModifier and TypeClassDescriptionfinal classService that adds support for Access logging to Server. -
Uses of NamedService in io.helidon.webserver.concurrency.limits
Classes in io.helidon.webserver.concurrency.limits that implement NamedService -
Uses of NamedService in io.helidon.webserver.context
Classes in io.helidon.webserver.context that implement NamedService -
Uses of NamedService in io.helidon.webserver.cors
Classes in io.helidon.webserver.cors that implement NamedService -
Uses of NamedService in io.helidon.webserver.grpc
Subinterfaces of NamedService in io.helidon.webserver.grpcModifier and TypeInterfaceDescriptioninterfaceInterface generated from definition.(package private) interfaceio.helidon.webserver.grpc.GrpcConfigBlueprintClasses in io.helidon.webserver.grpc that implement NamedServiceModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations.classAdds gRPC reflection support to Helidon WebServer. -
Uses of NamedService in io.helidon.webserver.http1
Subinterfaces of NamedService in io.helidon.webserver.http1Modifier and TypeInterfaceDescriptioninterfaceHTTP/1.1 server configuration.(package private) interfaceio.helidon.webserver.http1.Http1ConfigBlueprintHTTP/1.1 server configuration.Classes in io.helidon.webserver.http1 that implement NamedServiceModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations. -
Uses of NamedService in io.helidon.webserver.http2
Subinterfaces of NamedService in io.helidon.webserver.http2Modifier and TypeInterfaceDescriptioninterfaceHTTP/2 server configuration.(package private) interfaceio.helidon.webserver.http2.Http2ConfigBlueprintHTTP/2 server configuration.Classes in io.helidon.webserver.http2 that implement NamedServiceModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations. -
Uses of NamedService in io.helidon.webserver.observe
Classes in io.helidon.webserver.observe that implement NamedServiceModifier and TypeClassDescriptionclassSupport for all observe providers that are available (or configured). -
Uses of NamedService in io.helidon.webserver.observe.config
Classes in io.helidon.webserver.observe.config that implement NamedService -
Uses of NamedService in io.helidon.webserver.observe.health
Classes in io.helidon.webserver.observe.health that implement NamedServiceModifier and TypeClassDescriptionclassObserver that registers health endpoint, and collects all health checks. -
Uses of NamedService in io.helidon.webserver.observe.info
Classes in io.helidon.webserver.observe.info that implement NamedService -
Uses of NamedService in io.helidon.webserver.observe.log
Classes in io.helidon.webserver.observe.log that implement NamedServiceModifier and TypeClassDescriptionclassObserver for information about loggers, and possibly to obtain log stream. -
Uses of NamedService in io.helidon.webserver.observe.metrics
Classes in io.helidon.webserver.observe.metrics that implement NamedServiceModifier and TypeClassDescriptionclassSupport for metrics for Helidon WebServer. -
Uses of NamedService in io.helidon.webserver.observe.spi
Subinterfaces of NamedService in io.helidon.webserver.observe.spiModifier and TypeInterfaceDescriptioninterfaceAn observer adds observability feature to HelidonObserveFeature, such as health, metrics. -
Uses of NamedService in io.helidon.webserver.observe.tracing
Classes in io.helidon.webserver.observe.tracing that implement NamedServiceModifier and TypeClassDescriptionclassObserver that registers tracing endpoint, and collects all tracing checks. -
Uses of NamedService in io.helidon.webserver.security
Classes in io.helidon.webserver.security that implement NamedServiceModifier and TypeClassDescriptionclassServer feature for security, to be registered withWebServerConfig.BuilderBase.addFeature(io.helidon.webserver.spi.ServerFeature). -
Uses of NamedService in io.helidon.webserver.spi
Subinterfaces of NamedService in io.helidon.webserver.spiModifier and TypeInterfaceDescriptioninterfaceProtocol configuration abstraction, used to setup a protocol.interfaceServer features provide a way to add or update server configuration. -
Uses of NamedService in io.helidon.webserver.staticcontent
Classes in io.helidon.webserver.staticcontent that implement NamedServiceModifier and TypeClassDescriptionclassWebServer feature to register static content. -
Uses of NamedService in io.helidon.webserver.websocket
Subinterfaces of NamedService in io.helidon.webserver.websocketModifier and TypeInterfaceDescriptioninterfaceWebSocket protocol configuration.(package private) interfaceio.helidon.webserver.websocket.WsConfigBlueprintWebSocket protocol configuration.Classes in io.helidon.webserver.websocket that implement NamedServiceModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations.
helidon-configmodule in Helidon 5