/**
* we're using the existing behaviors to keep a correct DRYness
*/
@Override
public void modify(final FormComponent<?> component, final ComponentTag tag, final Min annotation) {
final ParsleyMinValueValidationBehavior minValidator = new ParsleyMinValueValidationBehavior(annotation.value());
minValidator.onComponentTag(component, tag);
}