Added a test that reuses classes and mappings from a real project
[jpa-converters] / src / test / resources / META-INF / date.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <entity-mappings
3     xmlns="http://java.sun.com/xml/ns/persistence/orm"
4     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5     xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_2_1.xsd"
6     version="2.1">
7
8   <package>de.juplo.yourshouter.api.model</package>
9   <entity class="Date">
10     <discriminator-value>17</discriminator-value>
11     <attributes>
12       <transient name="event"/>
13       <transient name="location"/>
14       <transient name="subunit"/>
15       <transient name="contributors"/>
16       <transient name="emails"/>
17       <transient name="links"/>
18       <transient name="numbers"/>
19       <transient name="media"/>
20       <transient name="prices"/>
21     </attributes>
22   </entity>
23
24 </entity-mappings>