com.atlassian.confluence.plugins.macros.dashboard.recentupdates.rest
Class RecentlyUpdatedContentResource

java.lang.Object
  extended by com.atlassian.confluence.plugins.macros.dashboard.recentupdates.rest.RecentlyUpdatedContentResource

public class RecentlyUpdatedContentResource
extends java.lang.Object

REST service for the RecentlyUpdatedContentMacro

Since:
4.3

Constructor Summary
RecentlyUpdatedContentResource(RecentlyUpdatedContentService recentlyUpdatedContentService, RecentlyUpdatedMacroTabProvider tabProvider, LabelManager labelManager, UserAccessor userAccessor)
           
 
Method Summary
 javax.ws.rs.core.Response getDefault()
          Get the default dashboard tab
 javax.ws.rs.core.Response getUpdates(java.lang.String tabKey, int maxResults, java.lang.String showProfilePic, java.lang.String labelsFilter, java.lang.String spacesFilter, java.lang.String usersFilter, java.lang.String typesFilter, java.lang.String category, java.lang.String spaceKey)
          Query a list of recent updates matching the given parameters.
 javax.ws.rs.core.Response getUpdatesPost(java.lang.String tabKey, int maxResults, java.lang.String showProfilePic, java.lang.String labelsFilter, java.lang.String spacesFilter, java.lang.String usersFilter, java.lang.String typesFilter, java.lang.String category, java.lang.String spaceKey)
          We support POST in case the query string is too long for GET.
 javax.ws.rs.core.Response setDefault(java.lang.String tabKey)
          Set the default dashboard tab
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RecentlyUpdatedContentResource

public RecentlyUpdatedContentResource(RecentlyUpdatedContentService recentlyUpdatedContentService,
                                      RecentlyUpdatedMacroTabProvider tabProvider,
                                      LabelManager labelManager,
                                      UserAccessor userAccessor)
Method Detail

getUpdates

public javax.ws.rs.core.Response getUpdates(java.lang.String tabKey,
                                            int maxResults,
                                            java.lang.String showProfilePic,
                                            java.lang.String labelsFilter,
                                            java.lang.String spacesFilter,
                                            java.lang.String usersFilter,
                                            java.lang.String typesFilter,
                                            java.lang.String category,
                                            java.lang.String spaceKey)
                                     throws java.lang.Exception
Query a list of recent updates matching the given parameters.

Parameters:
tabKey - The value from the tab's getName method
maxResults - The maximum number of results to return (number of RecentUpdate, not RecentUpdateGroup objects)
Returns:
JSON representation of a list of RecentUpdateGroup objects
Throws:
InvalidSearchException - If the search failed
java.lang.Exception

getUpdatesPost

public javax.ws.rs.core.Response getUpdatesPost(java.lang.String tabKey,
                                                int maxResults,
                                                java.lang.String showProfilePic,
                                                java.lang.String labelsFilter,
                                                java.lang.String spacesFilter,
                                                java.lang.String usersFilter,
                                                java.lang.String typesFilter,
                                                java.lang.String category,
                                                java.lang.String spaceKey)
                                         throws java.lang.Exception
We support POST in case the query string is too long for GET.

Parameters:
tabKey - The value from the tab's getName method
maxResults - The maximum number of results to return (number of RecentUpdate, not RecentUpdateGroup objects)
Returns:
JSON representation of a list of RecentUpdateGroup objects
Throws:
InvalidSearchException - If the search failed
java.lang.Exception

getDefault

public javax.ws.rs.core.Response getDefault()
Get the default dashboard tab

Returns:
JSON representation of the default dashboard tab

setDefault

public javax.ws.rs.core.Response setDefault(java.lang.String tabKey)
Set the default dashboard tab

Parameters:
tabKey - the value from the tab's getName method
Returns:
200 OK on success


Copyright © 2003-2014 Atlassian. All Rights Reserved.