From 5ef9c4b9a2b088efb45cdc2c6a695ec15fcfe73a Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Mon, 29 Oct 2007 01:55:41 +0000 Subject: [PATCH] SWS-162 --- .../builder/XsdBasedSoap11Wsdl4jDefinitionBuilder.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/ws/wsdl/wsdl11/builder/XsdBasedSoap11Wsdl4jDefinitionBuilder.java b/core/src/main/java/org/springframework/ws/wsdl/wsdl11/builder/XsdBasedSoap11Wsdl4jDefinitionBuilder.java index 21b71d1b..3ed2fe1d 100644 --- a/core/src/main/java/org/springframework/ws/wsdl/wsdl11/builder/XsdBasedSoap11Wsdl4jDefinitionBuilder.java +++ b/core/src/main/java/org/springframework/ws/wsdl/wsdl11/builder/XsdBasedSoap11Wsdl4jDefinitionBuilder.java @@ -57,6 +57,9 @@ import org.xml.sax.SAXException; * property is set, an XSD import is used instead. As such, the imported schema file can contain further * imports, which will be resolved correctly in accordance with the schema location. *

+ * To create messages from imported and included schemas, set the followIncludeImport property to + * true. + *

* Typically used within a {@link DynamicWsdl11Definition}, like so: *

  * <bean id="airline" class="org.springframework.ws.wsdl.wsdl11.DynamicWsdl11Definition">
@@ -195,7 +198,7 @@ public class XsdBasedSoap11Wsdl4jDefinitionBuilder extends AbstractSoap11Wsdl4jD
 
     /**
      * Indicates whether schema <xsd:include/> and <xsd:import/> should be
-     * followed.
+     * followed. Default is false.
      */
     public void setFollowIncludeImport(boolean followIncludeImport) {
         this.followIncludeImport = followIncludeImport;