All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.schegge.phone.validation.AbstractGermanDramaValidator Maven / Gradle / Ivy

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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy