This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package util; | |
| import org.apache.commons.lang3.StringUtils; | |
| public class IdNumberValidator { | |
| // Invalid Result is used as a return value when the test fails | |
| private static final IdNumberValidatorResult invalid = new IdNumberValidatorResult(); | |
| public static IdNumberValidatorResult validate(String value) { |