home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 2 / Windows / Provisioning / schemas / mspeapuserpropertiesv1.xsd < prev   
Extensible Markup Language  |  2006-09-18  |  1KB  |  37 lines

  1. <?xml version="1.0" ?>
  2. <xs:schema 
  3.       targetNamespace="http://www.microsoft.com/provisioning/MsPeapUserPropertiesV1" 
  4.       elementFormDefault="qualified" 
  5.       xmlns="http://www.microsoft.com/provisioning/MsPeapUserPropertiesV1" 
  6.       xmlns:xs="http://www.w3.org/2001/XMLSchema" 
  7.       xmlns:baseEap="http://www.microsoft.com/provisioning/BaseEapUserPropertiesV1" 
  8.       version="1.0"
  9.    >
  10.    <xs:import 
  11.          namespace="http://www.microsoft.com/provisioning/BaseEapUserPropertiesV1" 
  12.          schemaLocation="BaseEapUserPropertiesV1.xsd" 
  13.    />
  14.    <xs:element name="RoutingIdentity" substitutionGroup="baseEap:Identity"/>
  15.    <xs:element name="EapType" substitutionGroup="baseEap:EapType">
  16.       <xs:complexType>
  17.          <xs:complexContent>
  18.             <xs:extension base="baseEap:BaseEapTypeParameters">
  19.                <xs:sequence>
  20.                   <xs:element ref="RoutingIdentity" minOccurs="0"/>
  21.                   <xs:element ref="baseEap:Eap" minOccurs="0" maxOccurs="unbounded" />
  22.  
  23.                   <xs:element name="PeapExtensions" type="PeapExtensionsType" minOccurs="0" />
  24.                </xs:sequence>
  25.             </xs:extension>
  26.          </xs:complexContent>
  27.       </xs:complexType>
  28.    </xs:element>   
  29.  
  30.    <xs:complexType name="PeapExtensionsType">
  31.       <xs:sequence>
  32.          <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded" namespace="##other"/>
  33.       </xs:sequence>
  34.    </xs:complexType>
  35.  
  36. </xs:schema>
  37.