So I want to change the validation messages used to validate a model through a DropWizard resource.
I\'m using java bean validation annotations. For example here is
@ValidationMethod should be useful here. isn't it?
http://www.dropwizard.io/0.9.0/docs/manual/validation.html
@ValidationMethod(message="Password cannot be empty") @JsonIgnore public boolean isPasswordProvided() { return false if password not provided; }