Newer
Older
CosmosServer / src / test / resources / Request.hbm.xml
n-kande on 13 Jun 2019 959 bytes typo
  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4. ~ Hibernate, Relational Persistence for Idiomatic Java
  5. ~
  6. ~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
  7. ~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
  8. -->
  9. <!DOCTYPE hibernate-mapping PUBLIC
  10. "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
  11. "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
  12.  
  13. <hibernate-mapping package="hibernateTest.entities">
  14.  
  15. <class name="Request" table="REQUESTS">
  16. <id name="rId" column="RID">
  17. </id>
  18. <property name="uri" column="URI"/>
  19. <property name="date" column="DATE"/>
  20. <property name="issuerUid" column="ISSUERUID"/>
  21. <property name="product" column="PRODUCT"/>
  22. <property name="deadline" column="DEADLINE"/>
  23. <property name="location" column="LOCATION"/>
  24. <property name="done" column="DONE"/>
  25. </class>
  26.  
  27. </hibernate-mapping>