Annotation Interface FeedViewBinding
An annotation used on a feed view class to bind entryable view classes and the feed type.
This annotation can only be used on the implementation class of
FeedableView
.- See Also:
-
Required Element Summary
Modifier and TypeRequired ElementDescriptionClass<? extends EntryableView>[]
Specifies the entry view classes bound to the feed view class annotated by this annotation. -
Optional Element Summary
-
Element Details
-
value
Class<? extends EntryableView>[] valueSpecifies the entry view classes bound to the feed view class annotated by this annotation. When a feed is rendering, it needs to look up the entry views for the paged model instances to render as atom entries. When multiple views are defined, each entry view definition must be corresponding to a unique model class.- Returns:
- the list of entry view classes.
-
-
-
feedType
Specifies the atom feed class which is used for instantiating the feed for thePage
. The default isAtomFeed
. If the custom view defines a custom atom feed class for the page, sets the custom atom feed class here.- Returns:
- the feed class
- Default:
- com.emc.documentum.rest.model.AtomFeed.class
-