Package io.helidon.http.media.jackson
Interface JacksonSupportConfig
- All Superinterfaces:
Prototype.Api
,Prototype.Factory<JacksonSupport>
- All Known Implementing Classes:
JacksonSupportConfig.BuilderBase.JacksonSupportConfigImpl
Configuration of the
JacksonSupport
.- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
Fluent API builder forJacksonSupport
.static class
JacksonSupportConfig.BuilderBase<BUILDER extends JacksonSupportConfig.BuilderBase<BUILDER,
PROTOTYPE>, PROTOTYPE extends JacksonSupportConfig> Fluent API builder base forJacksonSupport
. -
Method Summary
Modifier and TypeMethodDescriptionstatic JacksonSupportConfig.Builder
builder()
Create a new fluent API builder to customize configuration.static JacksonSupportConfig.Builder
builder
(JacksonSupportConfig instance) Create a new fluent API builder from an existing instance.static JacksonSupportConfig
create()
Create a new instance with default values.static JacksonSupportConfig
Deprecated.static JacksonSupportConfig
Create a new instance from configuration.name()
Name of the support.JacksonObjectMapper
instance.Jackson configuration properties.Methods inherited from interface io.helidon.builder.api.Prototype.Factory
build
-
Method Details
-
builder
Create a new fluent API builder to customize configuration.- Returns:
- a new builder
-
builder
Create a new fluent API builder from an existing instance.- Parameters:
instance
- an existing instance used as a base for the builder- Returns:
- a builder based on an instance
-
create
Create a new instance from configuration.- Parameters:
config
- used to configure the new instance- Returns:
- a new instance configured from configuration
-
create
Deprecated.Create a new instance from configuration.- Parameters:
config
- used to configure the new instance- Returns:
- a new instance configured from configuration
-
create
Create a new instance with default values.- Returns:
- a new instance
-
name
String name()Name of the support. Default value isjackson
.- Returns:
- name of the support
-
objectMapper
ObjectMapper objectMapper()JacksonObjectMapper
instance.- Returns:
- jackson object mapper instance
-
properties
Jackson configuration properties. Properties are being ignored if specificJacksonSupport
is set. Onlyboolean
configuration values are supported.- Returns:
- jackson config properties
-
create(io.helidon.config.Config)