Skip to content

Commit 3afdcc0

Browse files
committed
Javadoc
1 parent d2ca97a commit 3afdcc0

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,18 @@ public Resource[] getSchemas() {
8585
}
8686

8787
/**
88-
* Sets the schema resource to use for validation. Setting either this property or <code>schemas</code> is
89-
* required.
88+
* Sets the schema resource to use for validation. Setting this property, {@link
89+
* #setXsdSchemaCollection(XsdSchemaCollection) xsdSchemaCollection}, {@link #setSchema(Resource) schema}, or {@link
90+
* #setSchemas(Resource[]) schemas} is required.
9091
*/
9192
public void setSchema(Resource schema) {
9293
setSchemas(new Resource[]{schema});
9394
}
9495

9596
/**
96-
* Sets the schema resources to use for validation. Setting either this property or <code>schema</code> is
97-
* required.
97+
* Sets the schema resources to use for validation. Setting this property, {@link
98+
* #setXsdSchemaCollection(XsdSchemaCollection) xsdSchemaCollection}, {@link #setSchema(Resource) schema}, or {@link
99+
* #setSchemas(Resource[]) schemas} is required.
98100
*/
99101
public void setSchemas(Resource[] schemas) {
100102
Assert.notEmpty(schemas, "schemas must not be empty or null");

0 commit comments

Comments
 (0)