mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -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
|
||||
*/
|
||||
|
Reference in New Issue
Block a user