Class MediaSupportConfig.Builder
java.lang.Object
io.helidon.http.media.MediaSupportConfig.BuilderBase<MediaSupportConfig.Builder, MediaSupportConfig>
io.helidon.http.media.MediaSupportConfig.Builder
- All Implemented Interfaces:
Prototype.Builder<MediaSupportConfig.Builder, MediaSupportConfig>, Builder<MediaSupportConfig.Builder, MediaSupportConfig>, ConfigBuilderSupport.ConfiguredBuilder<MediaSupportConfig.Builder, MediaSupportConfig>, Supplier<MediaSupportConfig>
- Enclosing interface:
MediaSupportConfig
public static class MediaSupportConfig.Builder
extends MediaSupportConfig.BuilderBase<MediaSupportConfig.Builder, MediaSupportConfig>
implements Builder<MediaSupportConfig.Builder, MediaSupportConfig>
Fluent API builder for
MediaSupportConfig.-
Nested Class Summary
Nested classes/interfaces inherited from class MediaSupportConfig.BuilderBase
MediaSupportConfig.BuilderBase.MediaSupportConfigImplModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations. -
Method Summary
Modifier and TypeMethodDescriptionbuild()Create an instance from this builder.Create an instance of the prototype.Methods inherited from class MediaSupportConfig.BuilderBase
acceptedMediaTypes, acceptedMediaTypes, addAcceptedMediaType, addAcceptedMediaTypes, clearAcceptedMediaTypes, config, config, contentType, contentType, contentType, contentType, from, from, name, name, preBuildPrototype, toString, validatePrototypeModifier and TypeMethodDescriptionTypes accepted by this media support.acceptedMediaTypes(Set<? extends MediaType> acceptedMediaTypes) Types accepted by this media support.addAcceptedMediaType(MediaType acceptedMediaType) Types accepted by this media support.addAcceptedMediaTypes(Set<? extends MediaType> acceptedMediaTypes) Types accepted by this media support.Clear all acceptedMediaTypes.config()Configuration used to configure this instance.Update builder from configuration (node of this type).Content type to use if not configured (in response headers for server, and in request headers for client).contentType(HttpMediaType contentType) Content type to use if not configured (in response headers for server, and in request headers for client).contentType(Consumer<HttpMediaType.Builder> consumer) Content type to use if not configured (in response headers for server, and in request headers for client).contentType(Supplier<? extends HttpMediaType> supplier) Content type to use if not configured (in response headers for server, and in request headers for client).from(MediaSupportConfig prototype) Update this builder from an existing prototype instance.from(MediaSupportConfig.BuilderBase<?, ?> builder) Update this builder from an existing prototype builder instance.name()Name of the support.Name of the support.protected voidHandles providers and decorators.toString()protected voidValidates required properties.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface Builder
get, identity, updateModifier and TypeMethodDescriptiondefault MediaSupportConfigget()default MediaSupportConfig.Builderidentity()Instance of this builder as the correct type.default MediaSupportConfig.Builderupdate(Consumer<MediaSupportConfig.Builder> consumer) Update the builder in a fluent API way.Methods inherited from interface Prototype.Builder
selfModifier and TypeMethodDescriptiondefault MediaSupportConfig.Builderself()Instance of this builder as the correct type.
-
Method Details
-
buildPrototype
Create an instance of the prototype. Calling this method may update this builder from providers and decorators, so repeated calls may have side effects.- Specified by:
buildPrototypein interfacePrototype.Builder<MediaSupportConfig.Builder, MediaSupportConfig>- Returns:
- an instance of the setup object created from this builder
-
build
Create an instance from this builder. Calling this method may update this builder from providers and decorators, so repeated calls may have side effects.- Specified by:
buildin interfaceBuilder<MediaSupportConfig.Builder, MediaSupportConfig>- Returns:
- instance of the built type
-