-
Notifications
You must be signed in to change notification settings - Fork 0
/
bindings.xjb
23 lines (19 loc) · 1.19 KB
/
bindings.xjb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<jxb:bindings xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" jxb:version="2.0" jxb:extensionBindingPrefixes="xjc">
<jxb:bindings>
<jxb:globalBindings underscoreBinding="asCharInWord">
<xjc:javaType name="java.time.LocalDateTime" xmlType="xs:dateTime" adapter="org.rutebanken.util.LocalDateTimeISO8601XmlAdapter" />
<xjc:javaType name="java.time.LocalTime" xmlType="xs:time" adapter="org.rutebanken.util.LocalTimeISO8601XmlAdapter" />
<xjc:javaType name="java.time.LocalDateTime" xmlType="xs:date" adapter="org.rutebanken.util.LocalDateXmlAdapter" />
<xjc:javaType name="java.time.Duration" xmlType="xs:duration" adapter="com.migesok.jaxb.adapter.javatime.DurationXmlAdapter" />
</jxb:globalBindings>
</jxb:bindings>
<!-- See the script bin/version_updater.sh It updates version in schema locations-->
<jxb:bindings schemaLocation="./src/main/resources/xsd/8.1.0.1/kv1index-810.xsd">
<jxb:schemaBindings>
<jxb:package name="nl.connekt.bison.kv1index" />
</jxb:schemaBindings>
</jxb:bindings>
</jxb:bindings>