Uses of Interface
io.helidon.media.common.MessageBodyReader
-
Packages that use MessageBodyReader Package Description io.helidon.media.common Common classes for processing content with a specificMediaType.io.helidon.media.jackson Jackson media type support.io.helidon.media.jsonb JSON-B media type support.io.helidon.media.jsonp JSON-P media type support.io.helidon.media.multipart Helidon Media MultiPart.io.helidon.webclient A reactive client for rest calls.io.helidon.webserver Reactive web server API. -
-
Uses of MessageBodyReader in io.helidon.media.common
Methods in io.helidon.media.common that return MessageBodyReader Modifier and Type Method Description static MessageBodyReader<FormParams>DefaultMediaSupport. formParamReader()ReturnFormParamsreader instance.static MessageBodyReader<InputStream>DefaultMediaSupport. inputStreamReader()ReturnInputStreamreader instance.static MessageBodyReader<String>DefaultMediaSupport. stringReader()ReturnStringreader instance.Methods in io.helidon.media.common that return types with arguments of type MessageBodyReader Modifier and Type Method Description Collection<MessageBodyReader<?>>DefaultMediaSupport. readers()default Collection<MessageBodyReader<?>>MediaSupport. readers()Returns the collection of the readers which should be registered.Methods in io.helidon.media.common with parameters of type MessageBodyReader Modifier and Type Method Description MediaContext.BuilderMediaContext.Builder. addReader(MessageBodyReader<?> reader)TMediaContextBuilder. addReader(MessageBodyReader<?> reader)Registers new reader.MessageBodyReadableContentMessageBodyReadableContent. registerReader(MessageBodyReader<?> reader)MessageBodyReaderContextMessageBodyReaderContext. registerReader(MessageBodyReader<?> reader)MessageBodyReadersMessageBodyReaders. registerReader(MessageBodyReader<?> reader)Register a reader.<T> Single<T>MessageBodyReaderContext. unmarshall(Flow.Publisher<DataChunk> payload, MessageBodyReader<T> reader, GenericType<T> type)Convert a given HTTP payload into a publisher by selecting a reader with the specified class.Method parameters in io.helidon.media.common with type arguments of type MessageBodyReader Modifier and Type Method Description default TMediaContextBuilder. addReader(Supplier<MessageBodyReader<?>> readerSupplier)Registers new reader. -
Uses of MessageBodyReader in io.helidon.media.jackson
Methods in io.helidon.media.jackson that return MessageBodyReader Modifier and Type Method Description static MessageBodyReader<Object>JacksonSupport. reader()Return a default Jackson entity reader.static MessageBodyReader<Object>JacksonSupport. reader(ObjectMapper objectMapper)Create a new Jackson entity reader based onObjectMapperinstance.MessageBodyReader<Object>JacksonSupport. readerInstance()Return Jackson reader instance.Methods in io.helidon.media.jackson that return types with arguments of type MessageBodyReader Modifier and Type Method Description Collection<MessageBodyReader<?>>JacksonSupport. readers() -
Uses of MessageBodyReader in io.helidon.media.jsonb
Methods in io.helidon.media.jsonb that return MessageBodyReader Modifier and Type Method Description static MessageBodyReader<Object>JsonbSupport. reader()Return a default JSON-B entity reader.static MessageBodyReader<Object>JsonbSupport. reader(Jsonb jsonb)Create a new JSON-B entity reader based onJsonbinstance.MessageBodyReader<Object>JsonbSupport. readerInstance()Return JSON-B reader instance.Methods in io.helidon.media.jsonb that return types with arguments of type MessageBodyReader Modifier and Type Method Description Collection<MessageBodyReader<?>>JsonbSupport. readers() -
Uses of MessageBodyReader in io.helidon.media.jsonp
Methods in io.helidon.media.jsonp that return MessageBodyReader Modifier and Type Method Description static MessageBodyReader<JsonStructure>JsonpSupport. reader()Return a default JSON-P entity reader.static MessageBodyReader<JsonStructure>JsonpSupport. reader(JsonReaderFactory readerFactory)Create a new JSON-P entity reader based onJsonReaderFactory.MessageBodyReader<JsonStructure>JsonpSupport. readerInstance()Return JSON-P reader instance.Methods in io.helidon.media.jsonp that return types with arguments of type MessageBodyReader Modifier and Type Method Description Collection<MessageBodyReader<?>>JsonpSupport. readers() -
Uses of MessageBodyReader in io.helidon.media.multipart
Classes in io.helidon.media.multipart that implement MessageBodyReader Modifier and Type Class Description classMultiPartBodyReaderDeprecated, for removal: This API element is subject to removal in a future version.UseBodyPartBodyStreamReaderinstead.Methods in io.helidon.media.multipart that return types with arguments of type MessageBodyReader Modifier and Type Method Description Collection<MessageBodyReader<?>>MultiPartSupport. readers() -
Uses of MessageBodyReader in io.helidon.webclient
Methods in io.helidon.webclient with parameters of type MessageBodyReader Modifier and Type Method Description WebClient.BuilderWebClient.Builder. addReader(MessageBodyReader<?> reader) -
Uses of MessageBodyReader in io.helidon.webserver
Methods in io.helidon.webserver with parameters of type MessageBodyReader Modifier and Type Method Description WebServer.BuilderWebServer.Builder. addReader(MessageBodyReader<?> reader)
-