EntityPropertyChangeSubscriber

SPI called for each pre-post change to a property of a domain entity during a result of the transaction. The callback is therefore quite fine-grained and will be called many (many) times for within any given transaction.

Only those properties of entities that have publishing enabled (using * DomainObject#entityChangePublishing() ) are included.

API

EntityPropertyChangeSubscriber.java
interface EntityPropertyChangeSubscriber {
  void onChanging(EntityPropertyChange entityPropertyChange)     (1)
}
1 onChanging(EntityPropertyChange)

Receives a single property change event for changing entities (with publishing enabled using DomainObject#entityChangePublishing() ) as an instance of EntityPropertyChange .

Members

onChanging(EntityPropertyChange)

Receives a single property change event for changing entities (with publishing enabled using DomainObject#entityChangePublishing() ) as an instance of EntityPropertyChange .

The callback is called (multiple times) at the end of the transaction, during the pre-commit phase.

Implementation

This is an SPI, but the framework provides a simple implementation, o.a.c.applib.services.publishing.log.EntityPropertyChangeLogger, that just logs events as they are received.