mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ALF-9385. Separation of taggingService from Blog CannedQueries.
Initial implementation provides separate 'findTaggedBlogPosts' method and removes taggingService from the CQs. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28816 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -31,7 +31,6 @@ public class DraftsAndPublishedBlogPostsCannedQueryParams extends BlogEntity
|
||||
private final String cmCreator;
|
||||
private final Date createdFromDate;
|
||||
private final Date createdToDate;
|
||||
private final String tag;
|
||||
|
||||
public DraftsAndPublishedBlogPostsCannedQueryParams(Long blogContainerNodeId,
|
||||
Long nameQNameId,
|
||||
@@ -39,15 +38,13 @@ public class DraftsAndPublishedBlogPostsCannedQueryParams extends BlogEntity
|
||||
Long contentTypeQNameId,
|
||||
String cmCreator,
|
||||
Date createdFromDate,
|
||||
Date createdToDate,
|
||||
String tag)
|
||||
Date createdToDate)
|
||||
{
|
||||
super(blogContainerNodeId, nameQNameId, publishedQNameId, contentTypeQNameId, null, null);
|
||||
|
||||
this.cmCreator = cmCreator;
|
||||
this.createdFromDate = createdFromDate;
|
||||
this.createdToDate = createdToDate;
|
||||
this.tag = tag;
|
||||
}
|
||||
|
||||
public String getCmCreator()
|
||||
@@ -64,9 +61,4 @@ public class DraftsAndPublishedBlogPostsCannedQueryParams extends BlogEntity
|
||||
{
|
||||
return createdToDate;
|
||||
}
|
||||
|
||||
public String getTag()
|
||||
{
|
||||
return tag;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user