123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ################################################################################
- # HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- ################################################################################
- -->
- <!-- edited with XMLSPY v5 rel. 4 U (http://www.xmlspy.com) by Rajeev Moondhra (Seisint, Inc.) -->
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
- <xs:include schemaLocation="environment.xsd"/>
- <xs:element name="GABConfig">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="entry" maxOccurs="unbounded">
- <xs:complexType>
- <xs:attribute name="name" type="xs:string" use="required">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>name of a configuration entry</tooltip>
- <title>Entry</title>
- <colIndex>1</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="daliServer" type="daliServersType" use="required">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>Dali Server</tooltip>
- <colIndex>2</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="eclServer" type="eclServerType" use="required">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>ECL server</tooltip>
- <colIndex>3</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="eclWatch" type="espProcessType" use="required">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>ESP server running ECL watch service</tooltip>
- <colIndex>4</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- </xs:complexType>
- </xs:element>
- <xs:element name="Instance" maxOccurs="unbounded">
- <xs:annotation>
- <xs:appinfo>
- <viewType>instance</viewType>
- </xs:appinfo>
- </xs:annotation>
- <xs:complexType>
- <xs:attribute name="computer" type="computerType" use="required">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>computer on which this configuration has to be deployed</tooltip>
- <colIndex>1</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="netAddress" type="ipAddress" use="optional">
- <xs:annotation>
- <xs:appinfo>
- <viewType>readonly</viewType>
- <tooltip>IP address of the computer</tooltip>
- <colIndex>2</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="directory" type="absolutePath" use="optional">
- <xs:annotation>
- <xs:appinfo>
- <viewType>hidden</viewType>
- <tooltip>directory where the configuration has to be deployed</tooltip>
- <colIndex>3</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- <xs:attribute name="name" type="xs:string" use="required">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>name of the listener</tooltip>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- </xs:complexType>
- </xs:element>
- </xs:schema>
|