RecipeStepImpl.hbm.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.RecipeStepImpl"
  10. table="RecipeStep"
  11. >
  12. <cache usage="read-write" />
  13. <id
  14. name="idInternal"
  15. column="idInternal"
  16. type="java.lang.String"
  17. length="32"
  18. unsaved-value="null"
  19. >
  20. <generator class="uuid.hex">
  21. <!--
  22. To add non XDoclet generator parameters, create a file named
  23. hibernate-generator-params-RecipeStepImpl.xml
  24. containing the additional parameters and place it in your merge dir.
  25. -->
  26. </generator>
  27. </id>
  28. <property
  29. name="value"
  30. type="text"
  31. update="true"
  32. insert="true"
  33. column="value"
  34. not-null="true"
  35. />
  36. <!--
  37. To add non XDoclet property mappings, create a file named
  38. hibernate-properties-RecipeStepImpl.xml
  39. containing the additional properties and place it in your merge dir.
  40. -->
  41. </class>
  42. </hibernate-mapping>