de.schegge.phone.validation.AbstractGermanDramaValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telephone Show documentation
Show all versions of telephone Show documentation
A Java API for national and international phone numbers
The newest version!
package de.schegge.phone.validation;
import de.schegge.phone.PhoneNumber;
import jakarta.validation.ConstraintValidator;
public abstract class AbstractGermanDramaValidator implements ConstraintValidator {
protected boolean allowed;
@Override
public void initialize(GermanDramaNumber constraintAnnotation) {
allowed = constraintAnnotation.allowed();
}
}