/**
* we're using the existing behaviors to keep a correct DRYness
*/
@Override
public void modify(final FormComponent<?> component, final ComponentTag tag, final Max annotation) {
ValueBag bag = new ValueBag(getLabelString(component), annotation.value());
final ParsleyMaxValueValidationBehavior maxValidator =
new ParsleyMaxValueValidationBehavior(annotation.value(),
getLocalizedMessage(component, annotation.message(), bag));
maxValidator.onComponentTag(component, tag);
}