bump product version to 4.1.6.2
[LibreOffice.git] / jvmfwk / distributions / OpenOfficeorg / javavendors.xsd
blob34a0cd579ec86a2c60de0314991ca9457bb85aac
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 -->
19 <schema targetNamespace="http://openoffice.org/2004/java/framework/1.0"
20 xmlns:jf="http://openoffice.org/2004/java/framework/1.0"
21 xmlns="http://www.w3.org/2001/XMLSchema"
22 elementFormDefault="qualified">
23 <element name="javaSelection" type="jf:JavaSelectionType">
24 <unique name="dummy1">
25 <selector xpath="jf:plugins/jf:library"/>
26 <field xpath="@vendor"/>
27 </unique>
30 <keyref name="dummy2" refer="jf:pluginKey">
31 <selector xpath="jf:vendorInfos/jf:vendor"/>
32 <field xpath="@name"/>
33 </keyref>
35 <unique name="dummy3">
36 <selector xpath="jf:vendorInfos/jf:vendor"/>
37 <field xpath="@name"/>
38 </unique>
40 <key name="pluginKey">
41 <selector xpath="jf:plugins/jf:library"/>
42 <field xpath="@vendor"/>
43 </key>
44 </element>
46 <complexType name="JavaSelectionType">
47 <sequence>
48 <element name="updated" type="date"/>
49 <element name="vendorInfos" type="jf:VendorInfoType"/>
50 <element name="plugins" type="jf:PluginType"/>
51 </sequence>
52 </complexType>
55 <complexType name="VendorInfoType">
56 <sequence>
57 <element name="vendor" type="jf:VendorType" minOccurs="0" maxOccurs="unbounded"/>
58 </sequence>
59 </complexType>
61 <complexType name="PluginType">
62 <sequence>
63 <element name="library" type="jf:LibraryType" minOccurs="0" maxOccurs="unbounded"/>
64 </sequence>
65 </complexType>
67 <complexType name="LibraryType">
68 <simpleContent>
69 <extension base="string">
70 <attribute name="vendor" use="required" type="string"/>
71 </extension>
72 </simpleContent>
73 </complexType>
75 <complexType name="VendorType">
76 <sequence>
77 <element name="minVersion" type="string" minOccurs="0"/>
78 <element name="maxVersion" type="string" minOccurs="0"/>
79 <element name="excludeVersions" minOccurs="0">
80 <complexType>
81 <sequence>
82 <element name="version" type="string" minOccurs="0" maxOccurs="unbounded"/>
83 </sequence>
84 </complexType>
85 </element>
86 </sequence>
87 <attribute name="name" use="required" type="string"/>
88 </complexType>
92 </schema>