Interface PinValidator<T>
-
- Type Parameters:
T- Type of pin
public interface PinValidator<T>Interface having a method to validate a pin- Since:
- 1.0.0
- Author:
- Uday Kumar
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanvalidatePin(T pin)Function to validate given pin
-
-
-
Method Detail
-
validatePin
boolean validatePin(T pin)
Function to validate given pin- Parameters:
pin- The pin to validate- Returns:
- true if pin is valid
-
-