File tree Expand file tree Collapse file tree 4 files changed +6
-10
lines changed
hibernate-validator/src/main/java/org/hibernate/validator Expand file tree Collapse file tree 4 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 2222import java .util .List ;
2323import java .util .Set ;
2424import javax .validation .ConstraintDeclarationException ;
25- import javax .validation .Valid ;
2625
2726import org .hibernate .validator .metadata .core .ConstraintHelper ;
2827import org .hibernate .validator .metadata .core .MetaConstraint ;
@@ -271,7 +270,7 @@ private ConstraintDeclarationException checkParameterConstraints() {
271270 /**
272271 * Returns a set with those methods from the given pile of methods that have
273272 * at least one constrained parameter or at least one parameter annotated
274- * with {@link Valid}.
273+ * with {@link javax.validation. Valid}.
275274 *
276275 * @param methods The methods to search in.
277276 *
Original file line number Diff line number Diff line change 1717package org .hibernate .validator .method .metadata ;
1818
1919import java .util .List ;
20- import javax .validation .Valid ;
2120import javax .validation .metadata .ElementDescriptor ;
2221
2322/**
@@ -52,7 +51,7 @@ public interface MethodDescriptor extends ElementDescriptor {
5251 /**
5352 * Whether a cascaded validation for this method's return value shall be
5453 * performed or not. This is the case if this method is marked for a
55- * cascaded validation (e.g. by annotating it with the {@link Valid}
54+ * cascaded validation (e.g. by annotating it with the {@link javax.validation. Valid}
5655 * annotation) either locally or in the inheritance hierarchy.
5756 *
5857 * @return <code>True</code>, if this method's return value shall be
Original file line number Diff line number Diff line change 1616*/
1717package org .hibernate .validator .method .metadata ;
1818
19- import javax .validation .Valid ;
2019import javax .validation .metadata .ElementDescriptor ;
2120
2221/**
@@ -29,7 +28,7 @@ public interface ParameterDescriptor extends ElementDescriptor {
2928 /**
3029 * Whether cascaded validation for this parameter shall be
3130 * performed or not. This is the case if this parameter is annotated with the
32- * {@link Valid} annotation either locally or in the inheritance hierarchy.
31+ * {@link javax.validation. Valid} annotation either locally or in the inheritance hierarchy.
3332 *
3433 * @return <code>True</code>, if this parameter shall be
3534 * validated recursively, <code>false</code> otherwise.
Original file line number Diff line number Diff line change 1717package org .hibernate .validator .method .metadata ;
1818
1919import java .util .Set ;
20- import javax .validation .Valid ;
2120import javax .validation .metadata .BeanDescriptor ;
2221import javax .validation .metadata .ElementDescriptor ;
2322
@@ -36,15 +35,15 @@ public interface TypeDescriptor extends ElementDescriptor {
3635 * <li>a constraint is hosted on any of this type's bean properties
3736 * (represented by fields or getter methods),</li>
3837 * <li>any of this type's bean properties (represented by fields or getter
39- * methods) is marked for cascaded validation with the {@link Valid}
38+ * methods) is marked for cascaded validation with the {@link javax.validation. Valid}
4039 * annotation,</li>
4140 * <li>a constraint is hosted on any of this type's method's parameters,</li>
4241 * <li>any of this type's method's parameters is marked for cascaded
43- * validation with the {@link Valid} annotation,</li>
42+ * validation with the {@link javax.validation. Valid} annotation,</li>
4443 * <li>a constraint is hosted on the return value of any of this type's
4544 * methods or</li>
4645 * <li>the return value of any of this type's methods is marked for cascaded
47- * validation with the {@link Valid} annotation</li>
46+ * validation with the {@link javax.validation. Valid} annotation</li>
4847 * </ul>
4948 *
5049 * @return <code>True</code>, if this type has any constraints,
You can’t perform that action at this time.
0 commit comments