spring-framework / org.springframework.http.converter.feed

Package org.springframework.http.converter.feed

Types

AtomFeedHttpMessageConverter

open class AtomFeedHttpMessageConverter : AbstractWireFeedHttpMessageConverter<Feed>

Implementation of org.springframework.http.converter.HttpMessageConverter that can read and write Atom feeds. Specifically, this converter can handle Feed objects from the ROME project.

>NOTE: As of Spring 4.1, this is based on the com.rometools variant of ROME, version 1.5. Please upgrade your build dependency.

By default, this converter reads and writes the media type (application/atom+xml). This can be overridden through the supportedMediaTypes property.

RssChannelHttpMessageConverter

open class RssChannelHttpMessageConverter : AbstractWireFeedHttpMessageConverter<Channel>

Implementation of org.springframework.http.converter.HttpMessageConverter that can read and write RSS feeds. Specifically, this converter can handle Channel objects from the ROME project.

>NOTE: As of Spring 4.1, this is based on the com.rometools variant of ROME, version 1.5. Please upgrade your build dependency.

By default, this converter reads and writes the media type (application/rss+xml). This can be overridden through the supportedMediaTypes property.