Skip to content

Commit 5ef9c4b

Browse files
committed
SWS-162
1 parent 17196eb commit 5ef9c4b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

core/src/main/java/org/springframework/ws/wsdl/wsdl11/builder/XsdBasedSoap11Wsdl4jDefinitionBuilder.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@
5757
* property is set, an XSD <code>import</code> is used instead. As such, the imported schema file can contain further
5858
* imports, which will be resolved correctly in accordance with the schema location.
5959
* <p/>
60+
* To create messages from imported and included schemas, set the <code>followIncludeImport</code> property to
61+
* <code>true</code>.
62+
* <p/>
6063
* Typically used within a {@link DynamicWsdl11Definition}, like so:
6164
* <pre>
6265
* &lt;bean id=&quot;airline&quot; class=&quot;org.springframework.ws.wsdl.wsdl11.DynamicWsdl11Definition&quot;&gt;
@@ -195,7 +198,7 @@ public void setSchemaLocation(String schemaLocation) {
195198

196199
/**
197200
* Indicates whether schema <code>&lt;xsd:include/&gt;</code> and <code>&lt;xsd:import/&gt;</code> should be
198-
* followed.
201+
* followed. Default is <code>false</code>.
199202
*/
200203
public void setFollowIncludeImport(boolean followIncludeImport) {
201204
this.followIncludeImport = followIncludeImport;

0 commit comments

Comments
 (0)