Uses of Interface
jakarta.ws.rs.ext.MessageBodyWriter
-
Packages that use MessageBodyWriter 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.org.glassfish.jersey.server Jersey server-side classes. -
-
Uses of MessageBodyWriter in jakarta.ws.rs.ext
Methods in jakarta.ws.rs.ext that return MessageBodyWriter Modifier and Type Method Description <T> MessageBodyWriter<T>Providers. getMessageBodyWriter(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType)Get a message body writer that matches a set of criteria. -
Uses of MessageBodyWriter in org.glassfish.jersey.internal
Methods in org.glassfish.jersey.internal that return MessageBodyWriter Modifier and Type Method Description <T> MessageBodyWriter<T>JaxrsProviders. getMessageBodyWriter(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType) -
Uses of MessageBodyWriter in org.glassfish.jersey.message
Methods in org.glassfish.jersey.message that return MessageBodyWriter Modifier and Type Method Description <T> MessageBodyWriter<T>MessageBodyWorkers. getMessageBodyWriter(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType)Get a message body writer that matches a set of criteria.<T> MessageBodyWriter<T>MessageBodyWorkers. getMessageBodyWriter(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType, PropertiesDelegate propertiesDelegate)Get a message body writer that matches a set of criteria.Methods in org.glassfish.jersey.message that return types with arguments of type MessageBodyWriter Modifier and Type Method Description List<MessageBodyWriter>MessageBodyWorkers. getMessageBodyWritersForType(Class<?> type)Get a list ofMessageBodyWriters that are suitable for the giventype.Map<MediaType,List<MessageBodyWriter>>MessageBodyWorkers. getWriters(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 MessageBodyWriter Modifier and Type Method Description StringMessageBodyWorkers. writersToString(Map<MediaType,List<MessageBodyWriter>> writers)Convert a map media type to list of message body writers to a string.Constructors in org.glassfish.jersey.message with parameters of type MessageBodyWriter Constructor Description WriterModel(MessageBodyWriter provider, List<MediaType> types, Boolean custom)Create new writer model instance. -
Uses of MessageBodyWriter in org.glassfish.jersey.message.internal
Classes in org.glassfish.jersey.message.internal that implement MessageBodyWriter 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.SourceWriterProvider for marshalingSourceinstances.classStreamingOutputProviderMessage body writer that supportsstreaming outputmarshalling.Methods in org.glassfish.jersey.message.internal that return MessageBodyWriter Modifier and Type Method Description <T> MessageBodyWriter<T>MessageBodyFactory. getMessageBodyWriter(Class<T> c, Type t, Annotation[] as, MediaType mediaType)<T> MessageBodyWriter<T>MessageBodyFactory. getMessageBodyWriter(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 MessageBodyWriter Modifier and Type Method Description List<MessageBodyWriter>MessageBodyFactory. getMessageBodyWritersForType(Class<?> type)Map<MediaType,List<MessageBodyWriter>>MessageBodyFactory. getWriters(MediaType mediaType)Methods in org.glassfish.jersey.message.internal with parameters of type MessageBodyWriter Modifier and Type Method Description static booleanMessageBodyFactory. isWriteable(MessageBodyWriter<?> provider, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType)Safely invokesisWriteablemethod on the supplied provider.Method parameters in org.glassfish.jersey.message.internal with type arguments of type MessageBodyWriter Modifier and Type Method Description StringMessageBodyFactory. writersToString(Map<MediaType,List<MessageBodyWriter>> writers) -
Uses of MessageBodyWriter in org.glassfish.jersey.server
Classes in org.glassfish.jersey.server that implement MessageBodyWriter Modifier and Type Class Description classChunkedResponseWriterUsed for writingChunkedOutput.
-