BACnetAccessRule

<< Clique para Mostrar o Sumário >>

 

BACnetAccessRule

Esta representação de dados complexos via XML é utilizada internamente em outros XMLs suportados pelo driver.

Esquema XML

<xs:complexType name="BACnetAccessRule">
  <xs:sequence>
    <xs:element name="TimeRangeSpecifier" type="BACnetAccessRule_TimeRangeSpecifier" />
    <xs:element minOccurs="0" name="TimeRange" type="BACnetDeviceObjectPropertyReference" />
    <xs:element name="LocationSpecifier" type="BACnetAccessRule_LocationSpecifier" />
    <xs:element minOccurs="0" name="Location" type="BACnetDeviceObjectReference" />
    <xs:element name="Enable" type="Boolean" />
  </xs:sequence>
</xs:complexType>

Exemplos

Exemplo 1:

<BACnetAccessRule>
  <TimeRangeSpecifier>specified</TimeRangeSpecifier>
  <TimeRange>
    <ObjectIdentifier>device-502</ObjectIdentifier>
    <PropertyIdentifier>action</PropertyIdentifier>
    <PropertyArrayIndex>1237</PropertyArrayIndex>
    <DeviceIdentifier>device-505</DeviceIdentifier>
  </TimeRange>
  <LocationSpecifier>all</LocationSpecifier>
  <Location>
    <DeviceIdentifier>device-507</DeviceIdentifier>
    <ObjectIdentifier>device-508</ObjectIdentifier>
  </Location>
  <Enable>true</Enable>
</BACnetAccessRule>

Exemplo 2:

<BACnetAccessRule>
  <TimeRangeSpecifier>specified</TimeRangeSpecifier>
  <LocationSpecifier>all</LocationSpecifier>
  <Enable>true</Enable>
</BACnetAccessRule>

Esta página foi útil?