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.
  
 
Summary
| 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 
  
   
    
    
	 
    
        | boolean | canRead(Class<?> clazz, MediaType mediaType) Indicates whether the given class can be read by this converter.
  This implementation checks if the given class is supported,
 and if thesupported media typesincludethe given media type. |  
        | boolean | canRead(MediaType mediaType) |  
        | boolean | canWrite(Class<?> clazz, MediaType mediaType) Indicates whether the given class can be written by this converter.
  This implementation checks if the given class is supported,
 and if thesupported media typesincludethe given media type. |  
        | boolean | canWrite(MediaType mediaType) |  
        | Long | getContentLength(T t, MediaType contentType) Returns the content length for the given type. |  
        | MediaType | getDefaultContentType(T t) Returns the default content type for the given type. |  
        | List<MediaType> | getSupportedMediaTypes() Return the list of  MediaType objects supported by this converter. |  
        | final
            
            
            T | read(Class<? extends T> clazz, HttpInputMessage inputMessage) |  
        | abstract
            
            
            
            
            T | readInternal(Class<? extends T> clazz, HttpInputMessage inputMessage) Abstract template method that reads the actualy object. |  
        | void | setSupportedMediaTypes(List<MediaType> supportedMediaTypes) Set the list of  MediaType objects supported by this converter. |  
        | abstract
            
            
            
            
            boolean | supports(Class<?> clazz) Indicates whether the given class is supported by this converter. |  
        | final
            
            
            void | write(T t, MediaType contentType, HttpOutputMessage outputMessage) |  
        | abstract
            
            
            
            
            void | writeInternal(T t, HttpOutputMessage outputMessage) Abstract template method that writes the actual body. |  | 
|  From class
  java.lang.Object 
  
   
    
    
	 
    
        | Object | clone() |  
        | boolean | equals(Object arg0) |  
        | void | finalize() |  
        | final
            
            
            Class<?> | getClass() |  
        | int | hashCode() |  
        | final
            
            
            void | notify() |  
        | final
            
            
            void | notifyAll() |  
        | String | toString() |  
        | final
            
            
            void | wait() |  
        | final
            
            
            void | wait(long arg0, int arg1) |  
        | final
            
            
            void | wait(long arg0) |  | 
|  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
      - trueif supported;- falseotherwise