Open
Description
Hi @mp911de ,
the @Order
of the built-in EntityCallbacks (at the time of writing AuditingEntityCallback
and ValidatingEntityCallback
) is not distinctive, both have the same configuration
@Override
public int getOrder() {
return 100;
}
Furthermore, I would like to make the value referencable by exposing them as public constant, e.g.:
public static final int ORDER = xxx;
This change allows a clean code regarding ordering of the buit-in and app provided EntityCallbacks.