inputUser.setSize(getMaxLenght());
inputUser.setMaxlength(getMaxLenght());
validator.setMaximum(getMaxLenght());
}
validator.setMinimum(getMinLenght());
inputUser.addValidator(validator);
return inputUser;
}
public void setMaxLenght(Integer size) {
getStateHelper().put(PropertyKeys.maxLength, size);