-
Notifications
You must be signed in to change notification settings - Fork 71
/
bindings.xml
62 lines (58 loc) · 2.71 KB
/
bindings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!--
~ Copyright 2015 Jo Rabin
~
~ 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.
-->
<!--
Used by XJC to generate custom adapters for the relevant types from the Schema
-->
<bindings xmlns="http://java.sun.com/xml/ns/jaxb"
xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc"
version="2.1" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<bindings schemaLocation="../KDBX.4.xsd">
<bindings node="//xs:simpleType[@name='keepassBoolean']">
<javaType name="Boolean"
parseMethod="org.linguafranca.pwdb.kdbx.Helpers.toBoolean"
printMethod="org.linguafranca.pwdb.kdbx.Helpers.fromBoolean"
/>
</bindings>
<bindings node="//xs:simpleType[@name='keepassDateTime']">
<javaType name="java.util.Date"
parseMethod="org.linguafranca.pwdb.kdbx.jaxb.util.DateAdapter.fromString"
printMethod="org.linguafranca.pwdb.kdbx.jaxb.util.DateAdapter.toString"
/>
</bindings>
<bindings node="//xs:simpleType[@name='uuid']">
<javaType name="java.util.UUID"
parseMethod="org.linguafranca.pwdb.kdbx.Helpers.uuidFromBase64"
printMethod="org.linguafranca.pwdb.kdbx.Helpers.base64FromUuid"
/>
</bindings>
<bindings node = "//xs:complexType[@name='ValueExtender']">
<class implClass="org.linguafranca.pwdb.kdbx.jaxb.base.ValueBinding"/>
</bindings>
<bindings node = "//xs:complexType[@name='Parented']">
<class implClass="org.linguafranca.pwdb.kdbx.jaxb.base.AbstractJaxbParentedBinding">
<javadoc>This class, while generated, is not used see {@link
org.linguafranca.pwdb.kdbx.jaxb.org.linguafranca.pwdb.base.AbstractJaxbParentedBinding} which is the
actual implementation class.</javadoc>
</class>
</bindings>
<bindings node = "//xs:element[@name='Group']">
<class name="JaxbGroupBinding" />
</bindings>
<bindings node = "//xs:element[@name='Entry']">
<class name="JaxbEntryBinding" />
</bindings>
</bindings>
</bindings>