public class LuhnCheckValidator extends ModCheckBase implements ConstraintValidator<LuhnCheck,CharSequence>
| Constructor and Description |
|---|
LuhnCheckValidator() |
| Modifier and Type | Method and Description |
|---|---|
void |
initialize(LuhnCheck constraintAnnotation) |
boolean |
isCheckDigitValid(List<Integer> digits,
char checkDigit)
Validate check digit using Luhn algorithm
|
extractDigit, initialize, isValidclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitisValidpublic void initialize(LuhnCheck constraintAnnotation)
initialize in interface ConstraintValidator<LuhnCheck,CharSequence>public boolean isCheckDigitValid(List<Integer> digits, char checkDigit)
isCheckDigitValid in class ModCheckBasedigits - The digits over which to calculate the checksumcheckDigit - the check digittrue if the luhn check result matches the check digit, false otherwiseCopyright © 2007-2014 Red Hat, Inc. All Rights Reserved