|
Revision 13964, 1.1 kB
(checked in by janguenot, 2 years ago)
|
log entry factory impl
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
<component name="org.nuxeo.ecm.platform.audit.service.NXAuditEventsService"> |
|---|
| 3 |
|
|---|
| 4 |
<documentation> |
|---|
| 5 |
|
|---|
| 6 |
Service that deals with audit. |
|---|
| 7 |
|
|---|
| 8 |
<p/> |
|---|
| 9 |
|
|---|
| 10 |
Most of the work is done at EJB layer though |
|---|
| 11 |
|
|---|
| 12 |
This supports JMS events based notifications on a dedicated topic. |
|---|
| 13 |
|
|---|
| 14 |
@version 1.0 |
|---|
| 15 |
@author <a href="mailto:ja@nuxeo.com">Julien Anguenot</a> |
|---|
| 16 |
</documentation> |
|---|
| 17 |
|
|---|
| 18 |
<implementation class="org.nuxeo.ecm.platform.audit.service.NXAuditEventsService"/> |
|---|
| 19 |
|
|---|
| 20 |
<extension-point name="event"> |
|---|
| 21 |
|
|---|
| 22 |
<documentation> |
|---|
| 23 |
This service registered auditable events. |
|---|
| 24 |
|
|---|
| 25 |
<p/> Registered events are dummy strings for now. |
|---|
| 26 |
|
|---|
| 27 |
<p/> This service is used to filter auditable events from the JMS topic based on their |
|---|
| 28 |
names. |
|---|
| 29 |
</documentation> |
|---|
| 30 |
|
|---|
| 31 |
<object |
|---|
| 32 |
class="org.nuxeo.ecm.platform.audit.service.extension.EventDescriptor"/> |
|---|
| 33 |
</extension-point> |
|---|
| 34 |
|
|---|
| 35 |
<extension-point name="logEntryFactory"> |
|---|
| 36 |
|
|---|
| 37 |
<documentation> This service registered loge entry factory XXX </documentation> |
|---|
| 38 |
|
|---|
| 39 |
<object |
|---|
| 40 |
class="org.nuxeo.ecm.platform.audit.service.extension.LogEntryFactoryDescriptor"/> |
|---|
| 41 |
</extension-point> |
|---|
| 42 |
|
|---|
| 43 |
</component> |
|---|