Interface JsonbSupportConfig

All Superinterfaces:
Prototype.Api, Prototype.Factory<JsonbSupport>
All Known Implementing Classes:
JsonbSupportConfig.BuilderBase.JsonbSupportConfigImpl

public interface JsonbSupportConfig extends Prototype.Api
Configuration of the JsonbSupport.
See Also:
  • Method Details

    • builder

      static JsonbSupportConfig.Builder 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

      static JsonbSupportConfig create(Config config)
      Create a new instance from configuration.
      Parameters:
      config - used to configure the new instance
      Returns:
      a new instance configured from configuration
    • create

      @Deprecated static JsonbSupportConfig create(Config config)
      Create a new instance from configuration.
      Parameters:
      config - used to configure the new instance
      Returns:
      a new instance configured from configuration
    • create

      static JsonbSupportConfig create()
      Create a new instance with default values.
      Returns:
      a new instance
    • name

      String name()
      Name of the support. Default value is jsonb.
      Returns:
      name of the support
    • jsonb

      Jsonb jsonb()
      Jsonb instance.
      Returns:
      jsonb instance
    • stringProperties

      Map<String,String> stringProperties()
      Jsonb String configuration properties. Properties are being ignored if specific Jsonb is set.
      Returns:
      jsonb config properties
    • booleanProperties

      Map<String,Boolean> booleanProperties()
      Jsonb boolean configuration properties. Properties are being ignored if specific Jsonb is set.
      Returns:
      jsonb config properties
    • classProperties

      Map<String,Class<?>> classProperties()
      Jsonb Class configuration properties. Properties are being ignored if specific Jsonb is set.
      Returns:
      jsonb config properties
    • properties

      Map<String,Object> properties()
      Jsonb configuration properties. Properties are being ignored if specific Jsonb is set.
      Returns:
      jsonb config properties