comparison _test/Resources/person.xsd @ 361:eff7f75a4408

added cookie support for the request language detection
author cin
date Wed, 27 Nov 2013 17:12:38 +0400
parents 77a9934a44af
children
comparison
equal deleted inserted replaced
360:39842eedd923 361:eff7f75a4408
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <xs:schema 2 <xs:schema
3 targetNamespace="http://implab.org/person/" 3 targetNamespace="http://implab.org/person/"
4 xmlns:xs="http://www.w3.org/2001/XMLSchema" 4 xmlns:xs="http://www.w3.org/2001/XMLSchema"
5 xmlns:tns="http://implab.org/person/" 5 xmlns:tns="http://implab.org/person/"
6 xmlns:impl="http://implab.org/schemas/impl-bindings"
6 elementFormDefault="qualified" 7 elementFormDefault="qualified"
7 > 8 >
8 <xs:complexType name="personInfo"> 9 <xs:complexType name="personInfo" impl:bind-type="Person" >
9 <xs:sequence> 10 <xs:sequence>
10 <xs:element name="firstName" type="xs:string" /> 11 <xs:element name="firstName" type="xs:string" />
11 <xs:element name="lastName" type="xs:string" /> 12 <xs:element name="lastName" type="xs:string" />
12 <xs:element name="address" type="tns:addressType" minOccurs="0" maxOccurs="unbounded"/> 13 <xs:element name="address" type="tns:addressType" minOccurs="0" maxOccurs="unbounded"/>
13 </xs:sequence> 14 </xs:sequence>