Uses of Interface
org.springframework.http.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
Modifier and TypeInterfaceDescriptioninterface
Represents an HTTP output message that allows for setting a streaming body. -
Uses of HttpOutputMessage in org.springframework.http.client
Modifier and TypeInterfaceDescriptioninterface
Represents a client-side HTTP request.Modifier 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
Modifier and TypeMethodDescriptionvoid
ResourceHttpMessageConverter.addDefaultHeaders
(HttpOutputMessage message, Resource resource, MediaType contentType) Add 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)
.final void
AbstractSmartHttpMessageConverter.write
(T t, ResolvableType type, MediaType contentType, HttpOutputMessage outputMessage, Map<String, Object> hints) This implementation sets the default headers by callingAbstractHttpMessageConverter.addDefaultHeaders(org.springframework.http.HttpHeaders, T, org.springframework.http.MediaType)
, and then callsAbstractSmartHttpMessageConverter.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.void
SmartHttpMessageConverter.write
(T t, ResolvableType type, MediaType contentType, HttpOutputMessage outputMessage, Map<String, Object> hints) Write a given object to the given output message.default void
SmartHttpMessageConverter.write
(T t, MediaType contentType, HttpOutputMessage outputMessage) 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 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 final void
AbstractKotlinSerializationHttpMessageConverter.writeInternal
(Object object, ResolvableType type, HttpOutputMessage outputMessage, Map<String, Object> hints) protected abstract void
AbstractSmartHttpMessageConverter.writeInternal
(T t, ResolvableType type, HttpOutputMessage outputMessage, Map<String, Object> hints) Abstract template method that writes the actual body.protected void
AbstractSmartHttpMessageConverter.writeInternal
(T t, HttpOutputMessage outputMessage) 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
Modifier and TypeMethodDescriptionprotected void
AbstractWireFeedHttpMessageConverter.writeInternal
(T wireFeed, HttpOutputMessage outputMessage) -
Uses of HttpOutputMessage in org.springframework.http.converter.json
Modifier 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
Modifier and TypeMethodDescriptionprotected void
ProtobufHttpMessageConverter.writeInternal
(com.google.protobuf.Message message, HttpOutputMessage outputMessage) -
Uses of HttpOutputMessage in org.springframework.http.converter.xml
Modifier 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
Modifier and TypeInterfaceDescriptioninterface
Represents a server-side HTTP response.Modifier 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
-
Uses of HttpOutputMessage in org.springframework.mock.http.client