Events
No events are published by this service at runtime. The event infrastructure exists but is not active:
- The event publisher is a no-op stub — its publish operations only write a log line and do not emit anything to a real event bus.
- The publisher is available to the service but is never called from any request-handling path, so no policy or role change produces an event.
Event model defined for completeness (documented even though it is not emitted):
| Field | Values |
|---|---|
entityType (EventEntityType) |
policy, role |
eventType (EventType) |
created, updated, deleted |
Envelope (EventPayload) |
{ entityType, eventType, instanceId?, entity, userId?, beforeState? } |
There is no event source, no detail-type, and no event-bus configuration wired in — the real event-bus integration was never implemented.
Flag: NOT CURRENTLY ENABLED / not wired. If event emission is required, both a real publisher implementation and calls from the service layer would need to be added.
Revision History
2026-08-05 | AN – Page created and uploaded the contents