Skip to content

Commit

Permalink
Polishing.
Browse files Browse the repository at this point in the history
Reintroduce deprecated constructor to retain compile compatibility. Update Javadoc.

See #910
Original pull request: #913
  • Loading branch information
mp911de committed Jan 19, 2021
1 parent 9a23493 commit 732a9ee
Showing 1 changed file with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,30 @@
*
* @since 1.1
* @author Jens Schauder
* @author Mark Paluch
*/
public class BeforeConvertEvent<E> extends RelationalEventWithEntity<E> {

private static final long serialVersionUID = -5716795164911939224L;

/**
* @param instance the saved entity. Must not be {@literal null}.
* @since 2.1.4
*/
public BeforeConvertEvent(E instance) {
super(instance);
}

/**
* @param instance the saved entity. Must not be {@literal null}.
* @param change the {@link AggregateChange} encoding the actions to be performed on the database as change. Since
* this event is fired before the conversion the change is actually empty, but contains information if the
* aggregate is considered new in {@link AggregateChange#getKind()}. Must not be {@literal null}.
* @deprecated since 2.1.4, use {@link #BeforeConvertEvent(Object)} as we don't expect an {@link AggregateChange}
* before converting an aggregate.
*/
public BeforeConvertEvent(E instance) {
@Deprecated
public BeforeConvertEvent(E instance, AggregateChange<E> change) {
super(instance);
}
}

0 comments on commit 732a9ee

Please sign in to comment.