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

org.hibernate.validator.constraints.ConstraintComposition Maven / Gradle / Ivy

Go to download

JSR 380's RI, Hibernate Validator version ${hibernate-validator.version} and its dependencies repackaged as OSGi bundle

There is a newer version: 5.1.0
Show newest version
/*
 * Hibernate Validator, declare and validate application constraints
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or .
 */

package org.hibernate.validator.constraints;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import static org.hibernate.validator.constraints.CompositionType.AND;

/**
 * Boolean operator that is applied to all constraints of a composing constraint annotation.
 * 

* A composed constraint annotation can define a boolean combination of the constraints composing it, * by using {@code @ConstraintComposition}. *

* @author Dag Hovland * @author Federico Mancini */ @Documented @Target({ ANNOTATION_TYPE }) @Retention(RUNTIME) public @interface ConstraintComposition { /** * The value of this element specifies the boolean operator, * namely disjunction (OR), negation of the conjunction (ALL_FALSE), * or, the default, simple conjunction (AND). * * @return the {@code CompositionType} value */ CompositionType value() default AND; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy