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

org.hibernate.validator.internal.metadata.raw.ConstrainedElement 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.internal.metadata.raw;

import java.util.Set;

import javax.validation.Valid;
import javax.validation.groups.ConvertGroup;

import org.hibernate.validator.internal.metadata.aggregated.CascadingMetaDataBuilder;
import org.hibernate.validator.internal.metadata.core.MetaConstraint;

/**
 * Represents a (potentially) constrained Java element such as a type, field or
 * method. Such an element has a set of {@link org.hibernate.validator.internal.metadata.core.MetaConstraint}s and can be
 * marked for a cascaded validation. Furthermore each constrained element has a
 * {@link ConfigurationSource configuration source} which determines its origin.
 * 

* The hierarchy of constrained elements resembles the physical structure of the * represented Java types. In particular it doesn't provide the notion of * properties and it doesn't aggregate meta data for overridden elements in an * inheritance hierarchy. *

*

* Identity of implementations is based on the element location and constraint * source. That means that for instance in a set there can be two configurations * for one and the same Java field created by two different configuration * sources (e.g. via annotation and XML) but not two configurations for the same * field originating from one configuration source. *

*

* Implementations are strictly read-only. *

* * @author Gunnar Morling */ public interface ConstrainedElement extends Iterable> { /** * The kind of a {@link ConstrainedElement}. Can be used to determine an * element's type when traversing over a collection of constrained elements. * * @author Gunnar Morling */ enum ConstrainedElementKind { TYPE, FIELD, CONSTRUCTOR, METHOD, PARAMETER } /** * Returns the kind of this constrained element. * * @return The kind of this constrained element. */ ConstrainedElementKind getKind(); /** * Returns a set containing the constraints specified for this constrained * element. * * @return A set with this constrained element's constraints. May be empty, * but never {@code null}. */ Set> getConstraints(); /** * Returns the type argument constraints of this element, if any. */ Set> getTypeArgumentConstraints(); /** * Returns the cascading metadata (e.g. {@link Valid} and {@link ConvertGroup}) for the element and the potential * container elements. */ CascadingMetaDataBuilder getCascadingMetaDataBuilder(); /** * Whether this element is constrained or not. This is the case, if this * element has at least one constraint or a cascaded validation shall be * performed for it. * * @return {@code True}, if this element is constrained, * {@code false} otherwise. */ boolean isConstrained(); /** * Returns the configuration source contributing this constrained element. */ ConfigurationSource getSource(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy