Class TextPlainObjectBodyReader<T>

java.lang.Object
io.micronaut.http.body.TextPlainObjectBodyReader<T>
Type Parameters:
T - The body type
All Implemented Interfaces:
ChunkedMessageBodyReader<T>, MessageBodyReader<T>, TypedMessageBodyReader<T>

@Produces("text/plain") @Consumes("text/plain") @Singleton @Internal public final class TextPlainObjectBodyReader<T> extends Object implements TypedMessageBodyReader<T>, ChunkedMessageBodyReader<T>
The body reader that reads a text/plain string converting it into the argument type.
Since:
4.6
Author:
Denis Stepanov