home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 2 / Windows / L2Schemas / LAN_policy_v1.xsd next >
Extensible Markup Language  |  2006-09-18  |  3KB  |  64 lines

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <xs:schema targetNamespace="http://www.microsoft.com/networking/LAN/policy/v1"
  3.    xmlns="http://www.microsoft.com/networking/LAN/policy/v1"
  4.    xmlns:xs="http://www.w3.org/2001/XMLSchema"
  5.    elementFormDefault="qualified">
  6.  
  7.   <!-- type definitions section -->
  8.   <!-- type definition for name and description -->
  9.   <xs:simpleType name="nameType">
  10.     <xs:restriction base="xs:string">
  11.       <xs:minLength value="1" />
  12.       <xs:maxLength value="255" />
  13.     </xs:restriction>
  14.   </xs:simpleType>
  15.  
  16.   <!-- element definitions section -->
  17.   <xs:element name="LANPolicy">
  18.     <xs:complexType>
  19.       <xs:sequence>
  20.         <!-- this is the name of the policy -->
  21.         <xs:element name="name" type="nameType" />
  22.         <!-- brief description of the policy, optional -->
  23.         <xs:element name="description" type="nameType" minOccurs="0" />
  24.  
  25.         <!-- A/C flags, currently there is only one -->
  26.         <xs:element name="globalFlags">
  27.           <xs:complexType>
  28.             <xs:sequence>
  29.               <xs:element name="enableAutoConfig" type="xs:boolean" />
  30.               
  31.               <!-- extension point for other namespaces -->
  32.               <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
  33.             </xs:sequence>
  34.           </xs:complexType>
  35.         </xs:element>
  36.  
  37.         <!--
  38.             List of profiles within the policy. It is optional. 
  39.             When enableAutoConfig is set to "false", this element SHALL be absent.
  40.             When present, the list shall contain at least one profile.
  41.         -->
  42.         <xs:element name="profileList" minOccurs="0">
  43.           <xs:complexType>
  44.             <xs:sequence>
  45.               <!--
  46.                   Placeholder to hook in profile namespace, code must enforce only the profile
  47.                   namespace is imported here. All other namespaces shall be ignored.
  48.                   Current implementation only allows one profile in the list. Code must enforce
  49.                   that only one profile exists in the policy. If more than one profile exists
  50.                   in the policy, only the first one in the list will be applied.
  51.               -->
  52.               <xs:any namespace="##other" processContents="lax" maxOccurs="unbounded" />
  53.             </xs:sequence>
  54.           </xs:complexType>
  55.         </xs:element>
  56.  
  57.         <!-- extension placeholder for future LAN policy settings, not used in this version -->
  58.         <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
  59.  
  60.       </xs:sequence>
  61.     </xs:complexType>
  62.   </xs:element>
  63. </xs:schema>
  64.