fixed uniqueness validation and renamed the abstract class when empty values are valid

This commit is contained in:
2016-08-09 21:17:29 +02:00
parent c7873ef0ba
commit 7472c66823
11 changed files with 13 additions and 13 deletions

View File

@@ -30,7 +30,7 @@ import static org.apache.commons.validator.GenericValidator.isInt;
/**
* Checks if the value is an integer
*/
public class IntegerValidation extends EmptyAllowedValidation {
public class IntegerValidation extends EmptyValueIsValid {
@Override
public void check(int row, String value, ValidationError error) {