Package com.atlassian.confluence.rss
Class FeedProperties
- java.lang.Object
 - 
- com.atlassian.confluence.rss.FeedProperties
 
 
- 
public class FeedProperties extends Object
Allows users to specify properties of the feed. Used primarily byFeedBuilder 
- 
- 
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_FEED_TITLE 
- 
Constructor Summary
Constructors Constructor Description FeedProperties(String title, String description, boolean showContent, boolean publicFeed) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()StringgetTitle()booleanisPublicFeed()A public feed is one that doesn't require authentication and doesn't include any privileged links (like "comment").booleanisShowContent() 
 - 
 
- 
- 
Field Detail
- 
DEFAULT_FEED_TITLE
public static final String DEFAULT_FEED_TITLE
- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Constructor Detail
- 
FeedProperties
public FeedProperties(String title, String description, boolean showContent, boolean publicFeed)
- Parameters:
 title- the title. UsesDEFAULT_FEED_TITLEif none is specified.description- required.showContent- if the full content should be shown in the feed.publicFeed- if the feed is public.
 
 - 
 
 -