Interface ICertificateEventPublisher
public interface ICertificateEventPublisher
This interface defines a publisher for certificate-related events.
- Since:
- 8.5.0
- Author:
- Norman Lorenz
-
Method Summary
Modifier and TypeMethodDescriptionvoidfireCertificateCreatedEvent(Set<CertificateData> createdEntities) Fires an event indicating that certificates have been created.voidfireCertificateDeletedEvent(Set<CertificateData> deletedEntities) Fires an event indicating that certificates have been deleted.voidfireCertificateUpdatedEvent(Set<CertificateData> updatedEntities) Fires an event indicating that certificates have been updated.
-
Method Details
-
fireCertificateCreatedEvent
Fires an event indicating that certificates have been created.- Parameters:
createdEntities- the created certificate entities
-
fireCertificateDeletedEvent
Fires an event indicating that certificates have been deleted.- Parameters:
deletedEntities- the deleted certificate entities
-
fireCertificateUpdatedEvent
Fires an event indicating that certificates have been updated.- Parameters:
updatedEntities- the updated certificate entities
-