summaryrefslogtreecommitdiff
path: root/configmgr/source
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-03-30 13:59:39 +0000
committerRüdiger Timm <rt@openoffice.org>2004-03-30 13:59:39 +0000
commitde0c2a49cb9561e87b3c92854418eaf41312be55 (patch)
treec6e9e6a2f19893ec5de46fc91ea60ee4e2ff974c /configmgr/source
parentf4d27ef1ebef67a48480eadfd9a50173d3cb9988 (diff)
INTEGRATION: CWS cfg04 (1.25.52); FILE MERGED
2003/12/18 13:31:57 ssmith 1.25.52.3: #114070# support for system integration feature 2003/12/10 17:13:36 ssmith 1.25.52.2: #114070# partial implementation 2003/12/01 11:20:26 ssmith 1.25.52.1: merge from apoco2
Diffstat (limited to 'configmgr/source')
-rw-r--r--configmgr/source/misc/configunoreg.cxx19
1 files changed, 17 insertions, 2 deletions
diff --git a/configmgr/source/misc/configunoreg.cxx b/configmgr/source/misc/configunoreg.cxx
index f05acd71d0f4..16da461fdd88 100644
--- a/configmgr/source/misc/configunoreg.cxx
+++ b/configmgr/source/misc/configunoreg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: configunoreg.cxx,v $
*
- * $Revision: 1.25 $
+ * $Revision: 1.26 $
*
- * last change: $Author: rt $ $Date: 2003-04-17 13:30:57 $
+ * last change: $Author: rt $ $Date: 2004-03-30 14:59:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -288,9 +288,12 @@ extern "C" sal_Bool SAL_CALL component_writeInfo(
// backends
RegisterService(configmgr::backend::getDefaultBackendServiceInfo(), xKey) ;
RegisterService(configmgr::backend::getSingleBackendAdapterServiceInfo(), xKey) ;
+ RegisterService(configmgr::backend::getMultiStratumBackendServiceInfo(), xKey) ;
RegisterService(configmgr::localbe::getLocalBackendServiceInfo(), xKey) ;
RegisterService(configmgr::localbe::getLocalDataImportServiceInfo(), xKey) ;
RegisterService(configmgr::localbe::getLocalHierarchyBrowserServiceInfo(), xKey) ;
+ RegisterService(configmgr::localbe::getLocalSchemaSupplierServiceInfo(), xKey) ;
+ RegisterService(configmgr::localbe::getLocalSingleStratumServiceInfo(), xKey) ;
// im/export
RegisterService(configmgr::backend::getMergeImportServiceInfo(), xKey);
@@ -373,6 +376,10 @@ extern "C" void* SAL_CALL component_getFactory(
configmgr::backend::instantiateSingleBackendAdapter)
||
aReq.CreateServiceFactory(
+ configmgr::backend::getMultiStratumBackendServiceInfo(),
+ configmgr::backend::instantiateMultiStratumBackend)
+ ||
+ aReq.CreateServiceFactory(
configmgr::localbe::getLocalBackendServiceInfo(),
configmgr::localbe::instantiateLocalBackend)
||
@@ -384,6 +391,14 @@ extern "C" void* SAL_CALL component_getFactory(
configmgr::localbe::getLocalHierarchyBrowserServiceInfo(),
configmgr::localbe::instantiateLocalHierarchyBrowser)
||
+ aReq.CreateServiceFactory(
+ configmgr::localbe::getLocalSchemaSupplierServiceInfo(),
+ configmgr::localbe::instantiateLocalSchemaSupplier)
+ ||
+ aReq.CreateServiceFactory(
+ configmgr::localbe::getLocalSingleStratumServiceInfo(),
+ configmgr::localbe::instantiateLocalSingleStratum)
+ ||
// im/export
aReq.CreateServiceFactory(
configmgr::backend::getMergeImportServiceInfo(),