See: Description
Class | Description |
---|---|
AbstractCompressingPostProcessor |
Base class for post processors that compress the message body.
|
AbstractDecompressingPostProcessor |
Base class for post processors that decompress the message body if the
MessageProperties.SPRING_AUTO_DECOMPRESS header is true or to optionally always
decompress if the content encoding matches AbstractDecompressingPostProcessor.getEncoding() , or starts with
AbstractDecompressingPostProcessor.getEncoding() + ":", in which case the encoding following the colon becomes
the final content encoding of the decompressed message. |
AbstractDeflaterPostProcessor |
Base class for post processors based on
Deflater . |
DeflaterPostProcessor |
A post processor that uses a
DeflaterOutputStream to compress the message body. |
DelegatingDecompressingPostProcessor |
A
MessagePostProcessor that delegates to one of its MessagePostProcessor s
depending on the content encoding. |
GUnzipPostProcessor |
A post processor that uses a
GZIPInputStream to decompress the
message body. |
GZipPostProcessor |
A post processor that uses a
GZIPOutputStream to compress the message body. |
InflaterPostProcessor |
A post processor that uses a
InflaterInputStream to decompress the
message body. |
MessagePostProcessorUtils |
Utilities for message post processors.
|
UnzipPostProcessor |
A post processor that uses a
ZipInputStream to decompress the
message body. |
ZipPostProcessor |
A post processor that uses a
ZipOutputStream to compress the message body. |