mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-11 23:52:00 +01:00
89c73a0d81
* Add NuvoNet source communication Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com> * fix readme Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com> * remove commented code Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com> * Add startup/shutdown keypad messages Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com> * Minor cleanup before code review Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com> * Add configurable favorites labels Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com> * add new config item to i18n properties Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com> * Fix restart detection and improve version matching Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com> * review changes Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com> * Increment version number Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com> * remove repeated word in channels.xml Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com> * Review changes Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com> Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com>
31 lines
1.3 KiB
XML
31 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Created with Liquid Technologies Online Tools 1.0 (https://www.liquid-technologies.com) -->
|
|
<!-- To regenerate the NuvoMenu DTO from the XSD, use the following command: -->
|
|
<!-- xjc -d ../src/main/java -p org.openhab.binding.nuvo.internal.dto NuvoMenu.xsd -->
|
|
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.1">
|
|
<xs:element name="menu">
|
|
<xs:annotation>
|
|
<xs:appinfo>
|
|
<jaxb:class name="NuvoMenu"/>
|
|
</xs:appinfo>
|
|
</xs:annotation>
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element maxOccurs="unbounded" name="source">
|
|
<xs:complexType>
|
|
<xs:sequence minOccurs="0">
|
|
<xs:element maxOccurs="unbounded" name="topmenu">
|
|
<xs:complexType>
|
|
<xs:sequence minOccurs="0">
|
|
<xs:element maxOccurs="unbounded" name="item" type="xs:string" />
|
|
</xs:sequence>
|
|
<xs:attribute name="text" type="xs:string" use="required" />
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema> |