// not cool...
throw new ValidationConstraintViolationException(e);
}
if (value == null || value instanceof String && ((String) value).isEmpty()) {
ConstraintViolation violation = ConstraintViolation.newConstraintViolation("@" + Required.class.getSimpleName(), field);
leafs.add(violation);
}
}
}