Uses of Interface
org.springframework.data.relational.core.conversion.MutableAggregateChange
Packages that use MutableAggregateChange
Package
Description
-
Uses of MutableAggregateChange in org.springframework.data.relational.core.conversion
Classes in org.springframework.data.relational.core.conversion with type parameters of type MutableAggregateChangeModifier and TypeInterfaceDescriptioninterfaceBatchingAggregateChange<T,C extends MutableAggregateChange<T>> Represents the changes happening to one or more aggregates (as used in the context of Domain Driven Design) as a whole.Subinterfaces of MutableAggregateChange in org.springframework.data.relational.core.conversionModifier and TypeInterfaceDescriptioninterfaceRepresents the change happening to the aggregate (as used in the context of Domain Driven Design) as a whole.Classes in org.springframework.data.relational.core.conversion that implement MutableAggregateChangeModifier and TypeClassDescriptionclassRepresents the change happening to the aggregate (as used in the context of Domain Driven Design) as a whole.Methods in org.springframework.data.relational.core.conversion with parameters of type MutableAggregateChangeModifier and TypeMethodDescriptionvoidRelationalEntityDeleteWriter.write(Object id, MutableAggregateChange<?> aggregateChange) Fills the providedMutableAggregateChangewith the necessaryDbActions to delete the aggregate root identified byid. -
Uses of MutableAggregateChange in org.springframework.data.relational.core.mapping.event
Methods in org.springframework.data.relational.core.mapping.event with parameters of type MutableAggregateChangeModifier and TypeMethodDescriptionBeforeDeleteCallback.onBeforeDelete(T aggregate, MutableAggregateChange<T> aggregateChange) Entity callback method invoked before an aggregate root is deleted.BeforeSaveCallback.onBeforeSave(T aggregate, MutableAggregateChange<T> aggregateChange) Entity callback method invoked before an aggregate root is saved.