public class

FeedProperties

extends Object
java.lang.Object
   ↳ com.atlassian.confluence.rss.FeedProperties

Class Overview

Allows users to specify properties of the feed. Used primarily by FeedBuilder

Summary

Constants
String DEFAULT_FEED_TITLE
Public Constructors
FeedProperties(String title, String description, boolean showContent, boolean showDiff, boolean publicFeed)
This constructor is deprecated. Since 4.0. The showDiff parameter is ignored. Use FeedProperties(String, String, boolean, boolean) instead.
FeedProperties(String title, String description, boolean showContent, boolean publicFeed)
Public Methods
String getDescription()
String getTitle()
boolean isPublicFeed()
A public feed is one that doesn't require authentication and doesn't include any privileged links (like "comment").
boolean isShowContent()
boolean isShowDiff()
This method is deprecated. Since 4.0. Diffs are no longer supported in RSS feeds.
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String DEFAULT_FEED_TITLE

Constant Value: "Confluence RSS Feed"

Public Constructors

public FeedProperties (String title, String description, boolean showContent, boolean showDiff, boolean publicFeed)

This constructor is deprecated.
Since 4.0. The showDiff parameter is ignored. Use FeedProperties(String, String, boolean, boolean) instead.

Parameters
title the title. Uses DEFAULT_FEED_TITLE if none is specified.
description required.
showContent if the full content should be shown in the feed.
showDiff if diffs of content changes should be shown in the feed. Since 4.0 this parameter is ignored.
publicFeed if the feed is public.

public FeedProperties (String title, String description, boolean showContent, boolean publicFeed)

Parameters
title the title. Uses DEFAULT_FEED_TITLE if none is specified.
description required.
showContent if the full content should be shown in the feed.
publicFeed if the feed is public.

Public Methods

public String getDescription ()

public String getTitle ()

public boolean isPublicFeed ()

A public feed is one that doesn't require authentication and doesn't include any privileged links (like "comment").

public boolean isShowContent ()

public boolean isShowDiff ()

This method is deprecated.
Since 4.0. Diffs are no longer supported in RSS feeds.

Returns
  • since 4.0 this will always return false.