Uses of Interface
org.apache.logging.log4j.core.config.plugins.validation.ConstraintValidator
-
Packages that use ConstraintValidator Package Description org.apache.logging.log4j.core.config.plugins.validation Constraint validators for plugin factory methods.org.apache.logging.log4j.core.config.plugins.validation.validators ConstraintValidator implementations for the constraint annotations. -
-
Uses of ConstraintValidator in org.apache.logging.log4j.core.config.plugins.validation
Methods in org.apache.logging.log4j.core.config.plugins.validation that return ConstraintValidator Modifier and Type Method Description private static <A extends java.lang.annotation.Annotation>
ConstraintValidator<A>ConstraintValidators. getValidator(A annotation, java.lang.Class<? extends A> type)
Methods in org.apache.logging.log4j.core.config.plugins.validation that return types with arguments of type ConstraintValidator Modifier and Type Method Description static java.util.Collection<ConstraintValidator<?>>
ConstraintValidators. findValidators(java.lang.annotation.Annotation... annotations)
Finds all relevantConstraintValidator
objects from an array of annotations.java.lang.Class<? extends ConstraintValidator<? extends java.lang.annotation.Annotation>>
value()
ConstraintValidator
class that implements the validation logic for the annotated constraint annotation.Method parameters in org.apache.logging.log4j.core.config.plugins.validation with type arguments of type ConstraintValidator Modifier and Type Method Description private static java.lang.reflect.Type
ConstraintValidators. getConstraintValidatorAnnotationType(java.lang.Class<? extends ConstraintValidator<?>> type)
-
Uses of ConstraintValidator in org.apache.logging.log4j.core.config.plugins.validation.validators
Classes in org.apache.logging.log4j.core.config.plugins.validation.validators that implement ConstraintValidator Modifier and Type Class Description class
RequiredValidator
Validator that checks an object for emptiness.class
ValidHostValidator
Validator that checks an object to verify it is a valid hostname or IP address.class
ValidPortValidator
Validator that checks an object to verify it is a valid port number (an integer between 0 and 65535).
-