Uses of Interface
jakarta.ws.rs.ext.MessageBodyReader
-
Packages that use MessageBodyReader Package Description jakarta.ws.rs.ext APIs that provide extensions to the types supported by the JAX-RS API.org.glassfish.jersey.internal Common Jersey internal API classes.org.glassfish.jersey.message Common Jersey messaging classes.org.glassfish.jersey.message.internal Common Jersey internal messaging classes. -
-
Uses of MessageBodyReader in jakarta.ws.rs.ext
Methods in jakarta.ws.rs.ext that return MessageBodyReader Modifier and Type Method Description <T> MessageBodyReader<T>Providers. getMessageBodyReader(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType)Get a message body reader that matches a set of criteria. -
Uses of MessageBodyReader in org.glassfish.jersey.internal
Methods in org.glassfish.jersey.internal that return MessageBodyReader Modifier and Type Method Description <T> MessageBodyReader<T>JaxrsProviders. getMessageBodyReader(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType) -
Uses of MessageBodyReader in org.glassfish.jersey.message
Methods in org.glassfish.jersey.message that return MessageBodyReader Modifier and Type Method Description <T> MessageBodyReader<T>MessageBodyWorkers. getMessageBodyReader(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType)Get a message body reader that matches a set of criteria.<T> MessageBodyReader<T>MessageBodyWorkers. getMessageBodyReader(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType, PropertiesDelegate propertiesDelegate)Get a message body reader that matches a set of criteria.Methods in org.glassfish.jersey.message that return types with arguments of type MessageBodyReader Modifier and Type Method Description List<MessageBodyReader>MessageBodyWorkers. getMessageBodyReadersForType(Class<?> type)Get a list ofMessageBodyReaders that are suitable for the giventype.Map<MediaType,List<MessageBodyReader>>MessageBodyWorkers. getReaders(MediaType mediaType)Get the map of media type to list of message body writers that are compatible with a media type.Method parameters in org.glassfish.jersey.message with type arguments of type MessageBodyReader Modifier and Type Method Description StringMessageBodyWorkers. readersToString(Map<MediaType,List<MessageBodyReader>> readers)Convert a map media type to list of message body readers to a string.Constructors in org.glassfish.jersey.message with parameters of type MessageBodyReader Constructor Description ReaderModel(MessageBodyReader provider, List<MediaType> types, Boolean custom)Create new reader model instance. -
Uses of MessageBodyReader in org.glassfish.jersey.message.internal
Classes in org.glassfish.jersey.message.internal that implement MessageBodyReader Modifier and Type Class Description classAbstractFormProvider<T>Abstract base class for form entity types marshalling & un-marshalling support.classAbstractMessageReaderWriterProvider<T>Abstract entity provider (reader and writer) base class.classByteArrayProviderDefault Jersey byte array entity provider (reader and writer).classDataSourceProviderProvider for marshalling/un-marshalling ofapplication/octet-streamentity type to/from aDataSourceinstance.classFileProviderProvider for marshalling/un-marshalling ofapplication/octet-streamentity type to/from aFileinstance.classFormMultivaluedMapProviderProvider for marshalling/un-marshalling ofapplication/x-www-form-urlencodedentity type to/frommulti-valued mapinstance.classFormProviderProvider for marshalling/un-marshalling ofapplication/x-www-form-urlencodedentity type to/fromJAX-RS Forminstance.classInputStreamProviderclassReaderProviderclassRenderedImageProviderstatic classSourceProvider.DomSourceReaderProvider for marshalling/un-marshallingDOMSourceinstances.static classSourceProvider.SaxSourceReaderProvider for un-marshallingSAXSourceinstances.static classSourceProvider.StreamSourceReaderProvider for un-marshallingStreamSourceinstances.Methods in org.glassfish.jersey.message.internal that return MessageBodyReader Modifier and Type Method Description <T> MessageBodyReader<T>MessageBodyFactory. getMessageBodyReader(Class<T> c, Type t, Annotation[] as, MediaType mediaType)<T> MessageBodyReader<T>MessageBodyFactory. getMessageBodyReader(Class<T> c, Type t, Annotation[] as, MediaType mediaType, PropertiesDelegate propertiesDelegate)Methods in org.glassfish.jersey.message.internal that return types with arguments of type MessageBodyReader Modifier and Type Method Description List<MessageBodyReader>MessageBodyFactory. getMessageBodyReadersForType(Class<?> type)Map<MediaType,List<MessageBodyReader>>MessageBodyFactory. getReaders(MediaType mediaType)Methods in org.glassfish.jersey.message.internal with parameters of type MessageBodyReader Modifier and Type Method Description static booleanMessageBodyFactory. isReadable(MessageBodyReader<?> provider, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType)Safely invokesisReadablemethod on the supplied provider.Method parameters in org.glassfish.jersey.message.internal with type arguments of type MessageBodyReader Modifier and Type Method Description StringMessageBodyFactory. readersToString(Map<MediaType,List<MessageBodyReader>> readers)
-