ALF-9153 Discussions Topic Finding (lucene based) on the Java Service for getting topics by tag

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29890 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Nick Burch
2011-08-18 16:11:40 +00:00
parent 6172585955
commit 53778ee973
4 changed files with 190 additions and 1 deletions

View File

@@ -164,6 +164,19 @@ public interface DiscussionService {
@NotAuditable
PagingResults<TopicInfo> listTopics(NodeRef nodeRef, PagingRequest paging);
/**
* Searches for all topics in a site, filtered by tag
*/
@NotAuditable
PagingResults<TopicInfo> findTopics(String siteShortName, String tag, PagingRequest paging);
/**
* Searches for all topics attached to the specified Node, filtered by tag
*/
@NotAuditable
PagingResults<TopicInfo> findTopics(NodeRef nodeRef, String tag, PagingRequest paging);
/**
* Retrieves all posts in a topic, ordered by creation date
*/