mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged DEV/WCM_SERVICES2 to HEAD
12236: Implementation of Sandbox Revert REST API 12305: WCM Services - "asset service" initial checkpoint (more tests to be added) 12334: placeholder for WCM Asset implementation 12338: Check in to get server working ... 12341: WCM Services - "asset service" checkpoint (locking fixes, bulk import, more tests added) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12544 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -69,6 +69,7 @@ import org.alfresco.service.descriptor.DescriptorService;
|
||||
import org.alfresco.service.namespace.NamespaceService;
|
||||
import org.alfresco.service.namespace.QName;
|
||||
import org.alfresco.service.transaction.TransactionService;
|
||||
import org.alfresco.wcm.asset.AssetService;
|
||||
import org.alfresco.wcm.sandbox.SandboxService;
|
||||
import org.alfresco.wcm.webproject.WebProjectService;
|
||||
|
||||
@@ -132,6 +133,7 @@ public interface ServiceRegistry
|
||||
static final QName DEPLOYMENT_SERVICE = QName.createQName(NamespaceService.ALFRESCO_URI, "DeploymentService");
|
||||
static final QName WEBPROJECT_SERVICE = QName.createQName(NamespaceService.ALFRESCO_URI, "WebProjectService");
|
||||
static final QName SANDBOX_SERVICE = QName.createQName(NamespaceService.ALFRESCO_URI, "SandboxService");
|
||||
static final QName ASSET_SERVICE = QName.createQName(NamespaceService.ALFRESCO_URI, "AssetService");
|
||||
static final QName FORM_SERVICE = QName.createQName(NamespaceService.ALFRESCO_URI, "FormService");
|
||||
|
||||
/**
|
||||
@@ -428,19 +430,26 @@ public interface ServiceRegistry
|
||||
DeploymentService getDeploymentService();
|
||||
|
||||
/**
|
||||
* Get the WebProject Service
|
||||
* Get the WCM WebProject Service
|
||||
* @return
|
||||
*/
|
||||
@NotAuditable
|
||||
WebProjectService getWebProjectService();
|
||||
|
||||
/**
|
||||
* Get the Sandbox Service
|
||||
* Get the WCM Sandbox Service
|
||||
* @return
|
||||
*/
|
||||
@NotAuditable
|
||||
SandboxService getSandboxService();
|
||||
|
||||
/**
|
||||
* Get the WCM Asset Service
|
||||
* @return
|
||||
*/
|
||||
@NotAuditable
|
||||
AssetService getAssetService();
|
||||
|
||||
/**
|
||||
* Get the form service (or null if one is not provided)
|
||||
* @return
|
||||
|
Reference in New Issue
Block a user