Interface JsonpSupportConfig

All Superinterfaces:
MediaSupportConfig, Prototype.Api, Prototype.Factory<JsonpSupport>
All Known Implementing Classes:
JsonpSupportConfig.BuilderBase.JsonpSupportConfigImpl

public interface JsonpSupportConfig extends Prototype.Api, MediaSupportConfig
Configuration of the JsonpSupport.
See Also:
  • Method Details

    • builder

      static JsonpSupportConfig.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 JsonpSupportConfig 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 JsonpSupportConfig 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 JsonpSupportConfig create()
      Create a new instance with default values.
      Returns:
      a new instance
    • readerFactory

      JsonReaderFactory readerFactory()
      Jsonp reader factory.
      Returns:
      reader factory
    • writerFactory

      JsonWriterFactory writerFactory()
      Jsonp writer factory.
      Returns:
      writer factory
    • name

      String name()
      Description copied from interface: MediaSupportConfig
      Name of the support. Each extension should provide its own default. This is to enable multiple instance of the same type.
      Specified by:
      name in interface MediaSupportConfig
      Returns:
      name of the support
    • acceptedMediaTypes

      Set<MediaType> acceptedMediaTypes()
      Types accepted by this media support. When server processes the response, it checks the Accept header, to choose the right media support, if there are more supports available for the provided entity object.

      Supported accepted types defaults to "application/json", and "application/json-patch+json".

      Specified by:
      acceptedMediaTypes in interface MediaSupportConfig
      Returns:
      accepted media types
    • contentType

      HttpMediaType contentType()
      Content type to use if not configured (in response headers for server, and in request headers for client).
      Specified by:
      contentType in interface MediaSupportConfig
      Returns:
      content type to use, defaults to HttpMediaTypes.JSON