| 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> |
|---|