Class AbstractAtomFeedView

    • Method Detail

      • newFeed

        protected com.rometools.rome.feed.atom.Feed newFeed()
        Create a new Feed instance to hold the entries.

        By default returns an Atom 1.0 feed, but the subclass can specify any Feed.

        Specified by:
        newFeed in class AbstractFeedView<com.rometools.rome.feed.atom.Feed>
        Returns:
        the newly created Feed instance
        See Also:
        setFeedType(String)
      • buildFeedEntries

        protected abstract List<com.rometools.rome.feed.atom.Entry> buildFeedEntries​(Map<String,​Object> model,
                                                                                     HttpServletRequest request,
                                                                                     HttpServletResponse response)
                                                                              throws Exception
        Subclasses must implement this method to build feed entries, given the model.

        Note that the passed-in HTTP response is just supposed to be used for setting cookies or other HTTP headers. The built feed itself will automatically get written to the response after this method returns.

        Parameters:
        model - the model Map
        request - in case we need locale etc. Shouldn't look at attributes.
        response - in case we need to set cookies. Shouldn't write to it.
        Returns:
        the feed entries to be added to the feed
        Throws:
        Exception - any exception that occurred during document building
        See Also:
        Entry