From 3afdcc05f3f595853836b363d3865e7845284103 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Fri, 18 Jul 2008 08:34:50 +0000 Subject: [PATCH] Javadoc --- .../interceptor/AbstractValidatingInterceptor.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java b/core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java index c23950df..44290e52 100644 --- a/core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java +++ b/core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java @@ -85,16 +85,18 @@ public abstract class AbstractValidatingInterceptor extends TransformerObjectSup } /** - * Sets the schema resource to use for validation. Setting either this property or schemas is - * required. + * Sets the schema resource to use for validation. Setting this property, {@link + * #setXsdSchemaCollection(XsdSchemaCollection) xsdSchemaCollection}, {@link #setSchema(Resource) schema}, or {@link + * #setSchemas(Resource[]) schemas} is required. */ public void setSchema(Resource schema) { setSchemas(new Resource[]{schema}); } /** - * Sets the schema resources to use for validation. Setting either this property or schema is - * required. + * Sets the schema resources to use for validation. Setting this property, {@link + * #setXsdSchemaCollection(XsdSchemaCollection) xsdSchemaCollection}, {@link #setSchema(Resource) schema}, or {@link + * #setSchemas(Resource[]) schemas} is required. */ public void setSchemas(Resource[] schemas) { Assert.notEmpty(schemas, "schemas must not be empty or null");