public class

RssChannelHttpMessageConverter

extends AbstractWireFeedHttpMessageConverter<T extends WireFeed>
java.lang.Object
   ↳ org.springframework.http.converter.AbstractHttpMessageConverter<T>
     ↳ org.springframework.http.converter.feed.AbstractWireFeedHttpMessageConverter<T extends WireFeed>
       ↳ org.springframework.http.converter.feed.RssChannelHttpMessageConverter

Class Overview

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

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

See Also
  • Channel

Summary

[Expand]
Inherited Fields
From class org.springframework.http.converter.feed.AbstractWireFeedHttpMessageConverter
From class org.springframework.http.converter.AbstractHttpMessageConverter
Public Constructors
RssChannelHttpMessageConverter()
Protected Methods
boolean supports(Class<?> clazz)
Indicates whether the given class is supported by this converter.
[Expand]
Inherited Methods
From class org.springframework.http.converter.feed.AbstractWireFeedHttpMessageConverter
From class org.springframework.http.converter.AbstractHttpMessageConverter
From class java.lang.Object
From interface org.springframework.http.converter.HttpMessageConverter

Public Constructors

public RssChannelHttpMessageConverter ()

Protected Methods

protected boolean supports (Class<?> clazz)

Indicates whether the given class is supported by this converter.

Parameters
clazz the class to test for support
Returns
  • true if supported; false otherwise