|
Revision 24047, 0.8 kB
(checked in by sfermigier, 2 years ago)
|
Format / fix component doc.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?xml version="1.0"?> |
|---|
| 2 |
|
|---|
| 3 |
<component name="org.nuxeo.ecm.core.api.CoreService" version="1.0"> |
|---|
| 4 |
<documentation> |
|---|
| 5 |
The core service provides a way to register session factories. |
|---|
| 6 |
Session factories are used by clients to open sessions on core repositories. |
|---|
| 7 |
Each type of client may implement its factory. |
|---|
| 8 |
|
|---|
| 9 |
For now there are 2 type of sessions: |
|---|
| 10 |
- local sessions |
|---|
| 11 |
- remote sessions (based on EJB remote interfaces) |
|---|
| 12 |
|
|---|
| 13 |
@author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> |
|---|
| 14 |
</documentation> |
|---|
| 15 |
|
|---|
| 16 |
<implementation class="org.nuxeo.ecm.core.api.CoreService"/> |
|---|
| 17 |
|
|---|
| 18 |
<extension-point name="sessionFactory"> |
|---|
| 19 |
<documentation> |
|---|
| 20 |
Used to register new session factories. Contributions for this extension |
|---|
| 21 |
point are of the form: |
|---|
| 22 |
<factory class="..."/> |
|---|
| 23 |
</documentation> |
|---|
| 24 |
</extension-point> |
|---|
| 25 |
|
|---|
| 26 |
</component> |
|---|