summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/customer.xsd
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-09-26 20:17:07 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-09-26 20:17:07 +0000
commitf394e0b2cf9ff798ca295a98314b3b39c7e09267 (patch)
tree0b3ba2cc95a216ded6912b7ca26cc11866323c68 /sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/customer.xsd
parent79b356e26198f908c8e35a2ff9fe4e49f4273db9 (diff)
Fix typos
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1001501 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/customer.xsd6
1 files changed, 3 insertions, 3 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/customer.xsd b/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/customer.xsd
index b22efb74c4..ba86fb44ee 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/customer.xsd
+++ b/sca-java-1.x/branches/sca-java-1.6.1/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">