ALF-9385. Moved BlogService interface to standard org.alfresco.service.cmr package.

Also moved the BlogService_Security bean from blog-context.xml into public-services-security-context.xml.
  Loads of imports had to be repointed, hence the long change set. Also some spring config.
  Didn't repackage BlogIntegrationService as it has been released in previous Alfresco versions in its current location.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28958 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Neil McErlean
2011-07-12 15:22:05 +00:00
parent db158066a0
commit 90102ca33e
13 changed files with 73 additions and 36 deletions

View File

@@ -38,6 +38,7 @@ import org.alfresco.service.cmr.avm.AVMService;
import org.alfresco.service.cmr.avm.deploy.DeploymentService;
import org.alfresco.service.cmr.avm.locking.AVMLockingService;
import org.alfresco.service.cmr.avmsync.AVMSyncService;
import org.alfresco.service.cmr.blog.BlogService;
import org.alfresco.service.cmr.calendar.CalendarService;
import org.alfresco.service.cmr.coci.CheckOutCheckInService;
import org.alfresco.service.cmr.dictionary.DictionaryService;
@@ -139,6 +140,7 @@ public interface ServiceRegistry
static final QName RATING_SERVICE = QName.createQName(NamespaceService.ALFRESCO_URI, "RatingService");
static final QName REPO_ADMIN_SERVICE = QName.createQName(NamespaceService.ALFRESCO_URI, "RepoAdminService");
static final QName NODE_LOCATOR_SERVICE = QName.createQName(NamespaceService.ALFRESCO_URI, "nodeLocatorService");
static final QName BLOG_SERVICE = QName.createQName(NamespaceService.ALFRESCO_URI, "BlogService");
static final QName CALENDAR_SERVICE = QName.createQName(NamespaceService.ALFRESCO_URI, "CalendarService");
// WCM / AVM
@@ -519,9 +521,20 @@ public interface ServiceRegistry
@NotAuditable
NodeLocatorService getNodeLocatorService();
/**
* Get the blog service (or null if one is not provided)
* @return
*
* @since 4.0
*/
@NotAuditable
BlogService getBlogService();
/**
* Get the calendar service (or null if one is not provided)
* @return
*
* @since 4.0
*/
@NotAuditable
CalendarService getCalendarService();