spring-framework / org.springframework.web.servlet.view.feed

Package org.springframework.web.servlet.view.feed

Types

AbstractAtomFeedView

abstract class AbstractAtomFeedView : AbstractFeedView<Feed>

Abstract superclass for Atom Feed views, using the ROME package.

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

Application-specific view classes will extend this class. The view will be held in the subclass itself, not in a template. Main entry points are the #buildFeedMetadata and #buildFeedEntries.

Thanks to Jettro Coenradie and Sergio Bossa for the original feed view prototype!

AbstractFeedView

abstract class AbstractFeedView<T : WireFeed> : AbstractView

Abstract base class for Atom and RSS Feed views, using the ROME package.

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

Application-specific view classes will typically extend from either AbstractRssFeedView or AbstractAtomFeedView instead of from this class.

Thanks to Jettro Coenradie and Sergio Bossa for the original feed view prototype!

AbstractRssFeedView

abstract class AbstractRssFeedView : AbstractFeedView<Channel>

Abstract superclass for RSS Feed views, using the ROME package.

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

Application-specific view classes will extend this class. The view will be held in the subclass itself, not in a template. Main entry points are the #buildFeedMetadata and #buildFeedItems.

Thanks to Jettro Coenradie and Sergio Bossa for the original feed view prototype!