RelationKindImpl.hbm.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC
  3. "-//Hibernate/Hibernate Mapping DTD 2.0//EN"
  4. "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
  5. <hibernate-mapping
  6. auto-import="false"
  7. >
  8. <class
  9. name="magoffin.matt.ieat.domain.impl.RelationKindImpl"
  10. table="RelationKind"
  11. >
  12. <cache usage="read-write" />
  13. <id
  14. name="relationKindId"
  15. column="relationKindId"
  16. type="java.lang.Integer"
  17. unsaved-value="null"
  18. >
  19. <generator class="assigned">
  20. <!--
  21. To add non XDoclet generator parameters, create a file named
  22. hibernate-generator-params-RelationKindImpl.xml
  23. containing the additional parameters and place it in your merge dir.
  24. -->
  25. </generator>
  26. </id>
  27. <property
  28. name="value"
  29. type="java.lang.String"
  30. update="true"
  31. insert="true"
  32. column="value"
  33. length="64"
  34. not-null="true"
  35. unique="true"
  36. />
  37. <!--
  38. To add non XDoclet property mappings, create a file named
  39. hibernate-properties-RelationKindImpl.xml
  40. containing the additional properties and place it in your merge dir.
  41. -->
  42. </class>
  43. </hibernate-mapping>