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

  1. <?xml version="1.0" ?>
  2. <xs:schema 
  3.  targetNamespace="http://www.microsoft.com/provisioning/EapHostUserCredentials"
  4.  elementFormDefault="qualified" 
  5.  xmlns="http://www.microsoft.com/provisioning/EapHostUserCredentails"
  6.  xmlns:xs="http://www.w3.org/2001/XMLSchema"
  7.  xmlns:baseEap="http://www.microsoft.com/provisioning/BaseEapMethodUserCredentials"
  8.  xmlns:eapCommon="http://www.microsoft.com/provisioning/EapCommon"
  9.  version="1.0" >
  10.  
  11.   <xs:import 
  12.    namespace="http://www.microsoft.com/provisioning/BaseEapMethodUserCredentials"
  13.    schemaLocation="BaseEapMethodUserCredentials.xsd" />
  14.  
  15.   <xs:import 
  16.    namespace="http://www.microsoft.com/provisioning/EapCommon"
  17.    schemaLocation="EapCommon.xsd"/>
  18.  
  19.    <xs:element name="EapHostUserCredentials">
  20.       <xs:complexType>
  21.          <xs:sequence>
  22.             <xs:element name="EapMethod" type="eapCommon:EapMethodType"/>
  23.             <xs:choice>
  24.                <xs:element name="Credentials" type="baseEap:BaseEapMethodUserCredentials"/>
  25.                <xs:element name="CredentialsBlob" type="xs:hexBinary"/>
  26.             </xs:choice>
  27.             <!-- extension point for other namespaces -->
  28.             <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded" namespace="##other"/>
  29.          </xs:sequence>
  30.       </xs:complexType>
  31.    </xs:element>
  32.    
  33. </xs:schema>
  34.  
  35.