|
Revision 19318, 1.3 kB
(checked in by fguillaume, 3 years ago)
|
Rename package org.nuxeo.ecm.core.jcr to org.nuxeo.ecm.core.repository.jcr.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?xml version="1.0"?> |
|---|
| 2 |
|
|---|
| 3 |
<component name="org.nuxeo.ecm.core.repository.RepositoryService" version="1.0"> |
|---|
| 4 |
<documentation> |
|---|
| 5 |
A service managing repositories. It provides a way of defining new reposiotries and retrieving existing ones. |
|---|
| 6 |
|
|---|
| 7 |
@author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> |
|---|
| 8 |
</documentation> |
|---|
| 9 |
|
|---|
| 10 |
<implementation class="org.nuxeo.ecm.core.repository.RepositoryService"/> |
|---|
| 11 |
|
|---|
| 12 |
<service> |
|---|
| 13 |
<provide interface="org.nuxeo.ecm.core.api.CoreSession"/> |
|---|
| 14 |
</service> |
|---|
| 15 |
|
|---|
| 16 |
<extension-point name="repository"> |
|---|
| 17 |
<documentation> |
|---|
| 18 |
Extension point to register new repositories. |
|---|
| 19 |
The extension should use the format: |
|---|
| 20 |
<repository name="demo" |
|---|
| 21 |
factory="org.nuxeo.ecm.core.repository.jcr.JCRRepositoryFactory" |
|---|
| 22 |
securityManager="org.nuxeo.ecm.core.repository.jcr.JCRSecurityManager"> |
|---|
| 23 |
... random XML content ... |
|---|
| 24 |
</repository> |
|---|
| 25 |
The repository tag may contains any valid XML content that can be used by to specify |
|---|
| 26 |
repository implementation specific configuration data. |
|---|
| 27 |
<p/> |
|---|
| 28 |
The name of the repository must be unique in the application |
|---|
| 29 |
</documentation> |
|---|
| 30 |
|
|---|
| 31 |
<object class="org.nuxeo.ecm.core.repository.RepositoryDescriptor"/> |
|---|
| 32 |
</extension-point> |
|---|
| 33 |
|
|---|
| 34 |
</component> |
|---|