Initial checkin for foundations of repo FormService and FormUI Share component. Test page also added to Share which just contains the new FormUI component: http://localhost:8081/share/page/form-test

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12179 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2008-11-28 19:21:16 +00:00
parent 3bd69a1734
commit d3e0477d38
12 changed files with 938 additions and 4 deletions

View File

@@ -27,6 +27,7 @@ package org.alfresco.service;
import java.util.Collection;
import org.alfresco.mbeans.VirtServerRegistry;
import org.alfresco.repo.forms.FormService;
import org.alfresco.repo.site.SiteService;
import org.alfresco.repo.transaction.RetryingTransactionHelper;
import org.alfresco.service.cmr.action.ActionService;
@@ -131,6 +132,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 FORM_SERVICE = QName.createQName(NamespaceService.ALFRESCO_URI, "FormService");
/**
* Get the list of services provided by the Repository
@@ -438,4 +440,11 @@ public interface ServiceRegistry
*/
@NotAuditable
SandboxService getSandboxService();
/**
* Get the form service (or null if one is not provided)
* @return
*/
@NotAuditable
FormService getFormService();
}