public class

AtomFeedHttpMessageConverter

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.AtomFeedHttpMessageConverter

Class Overview

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

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

See Also
  • Feed

Summary

[Expand]
Inherited Fields
From class org.springframework.http.converter.feed.AbstractWireFeedHttpMessageConverter
From class org.springframework.http.converter.AbstractHttpMessageConverter
Public Constructors
AtomFeedHttpMessageConverter()
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 AtomFeedHttpMessageConverter ()

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