| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE hibernate-mapping PUBLIC
- "-//Hibernate/Hibernate Mapping DTD 2.0//EN"
- "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
- <hibernate-mapping
- auto-import="false"
- >
- <class
- name="magoffin.matt.ieat.domain.impl.RecipeStepImpl"
- table="RecipeStep"
- >
- <cache usage="read-write" />
- <id
- name="idInternal"
- column="idInternal"
- type="java.lang.String"
- length="32"
- unsaved-value="null"
- >
- <generator class="uuid.hex">
- <!--
- To add non XDoclet generator parameters, create a file named
- hibernate-generator-params-RecipeStepImpl.xml
- containing the additional parameters and place it in your merge dir.
- -->
- </generator>
- </id>
- <property
- name="value"
- type="text"
- update="true"
- insert="true"
- column="value"
- not-null="true"
- />
- <!--
- To add non XDoclet property mappings, create a file named
- hibernate-properties-RecipeStepImpl.xml
- containing the additional properties and place it in your merge dir.
- -->
- </class>
- </hibernate-mapping>
|