In the following JAX-RS endpoint:
public Response myEndpoint(@Context HttpServletRequest httpRequest,
@Valid
@NotNull
@MyBodyPojoIsValid
MyBodyPojo body) {
}
Is it possible to specify that @NotNull will run before my custom validator?