![JAR search and dependency download from the Maven repository](/logo.png)
de.codecentric.spring.boot.chaos.monkey.configuration.AssaultPropertiesLatencyRangeConstraint Maven / Gradle / Ivy
package de.codecentric.spring.boot.chaos.monkey.configuration;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import javax.validation.Constraint;
import javax.validation.Payload;
@Constraint(validatedBy = AssaultPropertiesLatencyRangeValidator.class)
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface AssaultPropertiesLatencyRangeConstraint {
String message() default
"Invalid range parameters. Value of latencyRangeStart must not be greater than value of latencyRangeEnd!";
Class>[] groups() default {};
Class extends Payload>[] payload() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy