home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 5 / Windows / System32 / NAPMONTR.DLL / SCHEMA / 100 next >
Extensible Markup Language  |  2008-01-19  |  3KB  |  56 lines

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <xsd:schema 
  3.     targetNamespace="http://www.microsoft.com/networking/quarantine/hcs"
  4.     elementFormDefault="qualified" 
  5.     xmlns="http://www.microsoft.com/networking/quarantine/hcs"
  6.     xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  7.  
  8.     <xsd:complexType name="PKAConfigType">
  9.         <xsd:attribute name="PKAName" type="xsd:string"/>
  10.         <xsd:attribute name="MinKeyLength" type="xsd:integer"/>
  11.         <xsd:attribute name="MaxKeyLength" type="xsd:integer"/>
  12.     </xsd:complexType>
  13.  
  14.     <xsd:complexType name="HKAConfigType">
  15.         <xsd:attribute name="HKAName" type="xsd:string"/>
  16.     </xsd:complexType>
  17.  
  18.     <xsd:complexType name="CSPConfigType">
  19.         <xsd:attribute name="CSPName" type="xsd:string"/>
  20.     </xsd:complexType>
  21.     
  22.     <xsd:complexType name="ClientAgentConfigType">
  23.         <xsd:attribute name="AgentName" type="xsd:string"/>
  24.     </xsd:complexType>
  25.  
  26.     <xsd:complexType name="CAConfigType">
  27.         <xsd:attribute name="CAName" type="xsd:string"/>
  28.         <xsd:attribute name="CAOrder" type="xsd:integer"/>
  29.     </xsd:complexType>
  30.  
  31.     <xsd:complexType name="CMCConfigType">
  32.         <xsd:attribute name="CertLifeTime" type="xsd:integer" use="optional"/>
  33.         <xsd:attribute name="AuthTemplate" type="xsd:string" use="optional"/>
  34.         <xsd:attribute name="UnAuthTemplate" type="xsd:string" use="optional"/>
  35.     </xsd:complexType>
  36.  
  37.     <xsd:complexType name="HCSConfigType">
  38.         <xsd:sequence>    
  39.             <xsd:element name="HCSVersion" type="xsd:integer"/>
  40.             <xsd:element name="BlackoutIntervalMinutes" type="xsd:integer"/>
  41.             <xsd:element name="TimeoutSeconds" type="xsd:integer"/>
  42.             <xsd:element name="CAWarningTimeDays" type="xsd:integer"/> 
  43.             <xsd:element name="PolicyExtensionOn" type="xsd:integer"/> 
  44.             <xsd:element name="OpMode" type="xsd:integer"/> 
  45.             <xsd:element minOccurs="0" maxOccurs="1"         name="CMCConfig" type="CMCConfigType" />
  46.             <xsd:element minOccurs="0" maxOccurs="unbounded" name="PKAConfig" type="PKAConfigType" />
  47.             <xsd:element minOccurs="0" maxOccurs="unbounded" name="HKAConfig" type="HKAConfigType" />
  48.             <xsd:element minOccurs="0" maxOccurs="unbounded" name="CSPConfig" type="CSPConfigType" />
  49.             <xsd:element minOccurs="0" maxOccurs="unbounded" name="ClientAgentConfig" type="ClientAgentConfigType" />
  50.             <xsd:element minOccurs="0" maxOccurs="unbounded" name="CAConfig" type="CAConfigType" />
  51.         </xsd:sequence>
  52.     </xsd:complexType>
  53.  
  54.     <xsd:element name="HCSConfig" type="HCSConfigType"/>
  55. </xsd:schema>
  56.