com.atlassian.confluence.it.dashboard
Interface RecentlyUpdatedChangeSet

All Superinterfaces:
java.lang.Iterable<RecentlyUpdatedItem>
All Known Implementing Classes:
WebRecentlyUpdatedChangeSet

public interface RecentlyUpdatedChangeSet
extends java.lang.Iterable<RecentlyUpdatedItem>

A set of related RecentlyUpdatedItems with a common author, as displayed on the Confluence dashboard.


Method Summary
 java.lang.String getAuthor()
          The author of the changeset.
 java.lang.String getAuthorUrl()
          The URL of the link to the author, which may be relative.
 java.lang.String getImageLinkUrl()
          The URL of the link surrounding the image used for the author.
 java.lang.String getImageUrl()
          The URL of the source of the image used for the author.
 RecentlyUpdatedItem getItem(int index)
          Returns the recent update with the specified index, or null if no such item exists.
 int size()
          Returns the number of items in this changeset.
 
Methods inherited from interface java.lang.Iterable
iterator
 

Method Detail

getAuthor

java.lang.String getAuthor()
The author of the changeset. Normally a user's full name, or "Anonymous".


getAuthorUrl

java.lang.String getAuthorUrl()
The URL of the link to the author, which may be relative. If there is no URL on the author's name in this change-set, returns null.


getImageUrl

java.lang.String getImageUrl()
The URL of the source of the image used for the author. Normally a user's profile picture, or the "add your profile picture" prompt image. If there is no author image for the change-set, returns null.


getImageLinkUrl

java.lang.String getImageLinkUrl()
The URL of the link surrounding the image used for the author. Normally links to the user's profile or personal space. If there is no author image for the change-set, or the image does not have a link, returns null.


size

int size()
Returns the number of items in this changeset. There will always be at least 1.


getItem

RecentlyUpdatedItem getItem(int index)
Returns the recent update with the specified index, or null if no such item exists. The index is zero-based, with zero being the most recent item.

Parameters:
index - zero-based index of the item to return
Returns:
the item with the given index, or null if it does not exist.


Copyright © 2003-2014 Atlassian. All Rights Reserved.