Changeset 29008

Show
Ignore:
Timestamp:
01/14/08 12:47:26 (11 months ago)
Author:
sfermigier
Message:

Heinsenfix forward port.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • org.nuxeo.ecm.core/trunk/nuxeo-core-jcr-connector-test/src/main/resources/RepositoryService.xml

    r16663 r29008  
    11<?xml version="1.0"?> 
     2<component name="org.nuxeo.ecm.core.repository.RepositoryService" version="1.0"> 
     3  <documentation> 
     4        A service managing repositories. 
     5        It provides a way of defining new repositories and retrieving existing ones. 
    26 
    3 <component name="org.nuxeo.ecm.core.repository.RepositoryService"> 
    4  
    5         <implementation class="org.nuxeo.ecm.core.repository.RepositoryService"/> 
    6          
    7         <extension-point name="repository"> 
    8                 <object class="org.nuxeo.ecm.core.repository.RepositoryDescriptor"/> 
    9         </extension-point>               
    10          
     7        @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> 
     8    </documentation> 
     9  <implementation class="org.nuxeo.ecm.core.repository.RepositoryService"/> 
     10  <service> 
     11    <provide interface="org.nuxeo.ecm.core.api.CoreSession"/> 
     12  </service> 
     13  <extension-point name="repository"> 
     14    <documentation> 
     15        Extension point to register new repositories. 
     16        The extension should use the format: 
     17         <repository name="demo" factory="org.nuxeo.ecm.core.repository.jcr.JCRRepositoryFactory" securityManager="org.nuxeo.ecm.core.repository.jcr.JCRSecurityManager"> 
     18           ... random XML content ... 
     19        </repository> 
     20        The repository tag may contains any valid XML content that can be used by to specify 
     21        repository implementation specific configuration data. 
     22        <p/> 
     23        The name of the repository must be unique in the application 
     24        </documentation> 
     25    <object class="org.nuxeo.ecm.core.repository.RepositoryDescriptor"/> 
     26  </extension-point> 
    1127</component>