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!
Author
Arjen Poutsma
Author
Juergen Hoeller
Since
3.0
See Also
AbstractRssFeedViewAbstractAtomFeedView
AbstractFeedView()
Abstract base class for Atom and RSS Feed views, using the ROME package. >NOTE: As of Spring 4.1, this is based on the 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! |
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 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 Thanks to Jettro Coenradie and Sergio Bossa for the original feed view prototype! |
|
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 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 Thanks to Jettro Coenradie and Sergio Bossa for the original feed view prototype! |