summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/demos/xml-bigbank/src/main/resources/customer.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'sca-java-1.x/trunk/demos/xml-bigbank/src/main/resources/customer.xsd')
-rw-r--r--sca-java-1.x/trunk/demos/xml-bigbank/src/main/resources/customer.xsd6
1 files changed, 3 insertions, 3 deletions
diff --git a/sca-java-1.x/trunk/demos/xml-bigbank/src/main/resources/customer.xsd b/sca-java-1.x/trunk/demos/xml-bigbank/src/main/resources/customer.xsd
index b22efb74c4..ba86fb44ee 100644
--- a/sca-java-1.x/trunk/demos/xml-bigbank/src/main/resources/customer.xsd
+++ b/sca-java-1.x/trunk/demos/xml-bigbank/src/main/resources/customer.xsd
@@ -17,15 +17,15 @@
* specific language governing permissions and limitations
* under the License.
-->
-<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://exmaple.com/customer"
- targetNamespace="http://exmaple.com/customer" elementFormDefault="qualified">
+<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://example.com/customer"
+ targetNamespace="http://example.com/customer" elementFormDefault="qualified">
<element name="customer" type="tns:Customer" />
<complexType name="Customer">
<sequence>
<element name="id" type="string"></element>
<element name="firstName" type="string"></element>
<element name="lastName" type="string"></element>
- <element name="accounts" type="string"></element>
+ <element name="accounts" type="tns:Accounts"></element>
</sequence>
</complexType>
<complexType name="Accounts">