Uses of Interface
org.springframework.http.HttpOutputMessage
Packages that use HttpOutputMessage
Package
Description
Contains a basic abstraction over client/server-side HTTP.
Contains an abstraction over client-side HTTP.
Provides an HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages.
Provides HttpMessageConverter implementations for handling Atom and RSS feeds.
Provides HttpMessageConverter implementations for handling JSON.
Provides an HttpMessageConverter implementation for handling
Google Protocol Buffers.
Provides HttpMessageConverter implementations for handling XML.
Contains an abstraction over server-side HTTP.
Mock implementations of client/server-side HTTP abstractions.
Mock implementations of client-side HTTP abstractions.
-
Uses of HttpOutputMessage in org.springframework.http
Subinterfaces of HttpOutputMessage in org.springframework.httpModifier and TypeInterfaceDescriptioninterface
Represents an HTTP output message that allows for setting a streaming body. -
Uses of HttpOutputMessage in org.springframework.http.client
Subinterfaces of HttpOutputMessage in org.springframework.http.clientModifier and TypeInterfaceDescriptioninterface
Represents a client-side HTTP request.Classes in org.springframework.http.client that implement HttpOutputMessageModifier and TypeClassDescriptionclass
Abstract base forClientHttpRequest
that makes sure that headers and body are not written multiple times. -
Uses of HttpOutputMessage in org.springframework.http.converter
Methods in org.springframework.http.converter with parameters of type HttpOutputMessageModifier and TypeMethodDescriptionvoid
ResourceHttpMessageConverter.addDefaultHeaders
(HttpOutputMessage message, Resource resource, MediaType contentType) Adds the default headers for the given resource to the given message.final void
AbstractGenericHttpMessageConverter.write
(T t, Type type, MediaType contentType, HttpOutputMessage outputMessage) This implementation sets the default headers by callingAbstractHttpMessageConverter.addDefaultHeaders(org.springframework.http.HttpHeaders, T, org.springframework.http.MediaType)
, and then callsAbstractGenericHttpMessageConverter.writeInternal(T, org.springframework.http.HttpOutputMessage)
.final void
AbstractHttpMessageConverter.write
(T t, MediaType contentType, HttpOutputMessage outputMessage) This implementation sets the default headers by callingAbstractHttpMessageConverter.addDefaultHeaders(org.springframework.http.HttpHeaders, T, org.springframework.http.MediaType)
, and then callsAbstractHttpMessageConverter.writeInternal(T, org.springframework.http.HttpOutputMessage)
.void
BufferedImageHttpMessageConverter.write
(BufferedImage image, MediaType contentType, HttpOutputMessage outputMessage) void
FormHttpMessageConverter.write
(MultiValueMap<String, ?> map, MediaType contentType, HttpOutputMessage outputMessage) void
GenericHttpMessageConverter.write
(T t, Type type, MediaType contentType, HttpOutputMessage outputMessage) Write a given object to the given output message.void
HttpMessageConverter.write
(T t, MediaType contentType, HttpOutputMessage outputMessage) Write a given object to the given output message.protected void
ResourceHttpMessageConverter.writeContent
(Resource resource, HttpOutputMessage outputMessage) protected abstract void
AbstractGenericHttpMessageConverter.writeInternal
(T t, Type type, HttpOutputMessage outputMessage) Abstract template method that writes the actual body.protected void
AbstractGenericHttpMessageConverter.writeInternal
(T t, HttpOutputMessage outputMessage) protected abstract void
AbstractHttpMessageConverter.writeInternal
(T t, HttpOutputMessage outputMessage) Abstract template method that writes the actual body.protected final void
AbstractKotlinSerializationHttpMessageConverter.writeInternal
(Object object, Type type, HttpOutputMessage outputMessage) protected abstract void
AbstractKotlinSerializationHttpMessageConverter.writeInternal
(Object object, kotlinx.serialization.KSerializer<Object> serializer, T format, HttpOutputMessage outputMessage) Write the given object to the output message with the given serializer and format.protected void
ByteArrayHttpMessageConverter.writeInternal
(byte[] bytes, HttpOutputMessage outputMessage) protected void
KotlinSerializationBinaryHttpMessageConverter.writeInternal
(Object object, kotlinx.serialization.KSerializer<Object> serializer, T format, HttpOutputMessage outputMessage) protected void
KotlinSerializationStringHttpMessageConverter.writeInternal
(Object object, kotlinx.serialization.KSerializer<Object> serializer, T format, HttpOutputMessage outputMessage) protected void
ObjectToStringHttpMessageConverter.writeInternal
(Object obj, HttpOutputMessage outputMessage) protected void
ResourceHttpMessageConverter.writeInternal
(Resource resource, HttpOutputMessage outputMessage) protected void
ResourceRegionHttpMessageConverter.writeInternal
(Object object, Type type, HttpOutputMessage outputMessage) protected void
StringHttpMessageConverter.writeInternal
(String str, HttpOutputMessage outputMessage) protected void
ResourceRegionHttpMessageConverter.writeResourceRegion
(ResourceRegion region, HttpOutputMessage outputMessage) -
Uses of HttpOutputMessage in org.springframework.http.converter.feed
Methods in org.springframework.http.converter.feed with parameters of type HttpOutputMessageModifier and TypeMethodDescriptionprotected void
AbstractWireFeedHttpMessageConverter.writeInternal
(T wireFeed, HttpOutputMessage outputMessage) -
Uses of HttpOutputMessage in org.springframework.http.converter.json
Methods in org.springframework.http.converter.json with parameters of type HttpOutputMessageModifier and TypeMethodDescriptionprotected void
AbstractJackson2HttpMessageConverter.writeInternal
(Object object, Type type, HttpOutputMessage outputMessage) protected final void
AbstractJsonHttpMessageConverter.writeInternal
(Object object, Type type, HttpOutputMessage outputMessage) -
Uses of HttpOutputMessage in org.springframework.http.converter.protobuf
Methods in org.springframework.http.converter.protobuf with parameters of type HttpOutputMessageModifier and TypeMethodDescriptionprotected void
ProtobufHttpMessageConverter.writeInternal
(com.google.protobuf.Message message, HttpOutputMessage outputMessage) -
Uses of HttpOutputMessage in org.springframework.http.converter.xml
Methods in org.springframework.http.converter.xml with parameters of type HttpOutputMessageModifier and TypeMethodDescriptionvoid
Jaxb2CollectionHttpMessageConverter.write
(T t, Type type, MediaType contentType, HttpOutputMessage outputMessage) protected final void
AbstractXmlHttpMessageConverter.writeInternal
(T t, HttpOutputMessage outputMessage) protected void
SourceHttpMessageConverter.writeInternal
(T t, HttpOutputMessage outputMessage) -
Uses of HttpOutputMessage in org.springframework.http.server
Subinterfaces of HttpOutputMessage in org.springframework.http.serverModifier and TypeInterfaceDescriptioninterface
Represents a server-side HTTP response.Classes in org.springframework.http.server that implement HttpOutputMessageModifier and TypeClassDescriptionclass
Implementation ofServerHttpResponse
that delegates all calls to a given targetServerHttpResponse
.class
ServerHttpResponse
implementation that is based on aHttpServletResponse
. -
Uses of HttpOutputMessage in org.springframework.mock.http
Classes in org.springframework.mock.http that implement HttpOutputMessage -
Uses of HttpOutputMessage in org.springframework.mock.http.client
Classes in org.springframework.mock.http.client that implement HttpOutputMessage