| 1234567891011121314151617181920212223242526 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE hibernate-mapping
- PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
- <hibernate-mapping auto-import="false" default-cascade="all-delete-orphan" default-lazy="false">
- <class discriminator-value="[magoffin.matt.ieat.domain.RecipeStep]"
- name="magoffin.matt.ieat.domain.RecipeStep"
- table="recipestep">
- <cache usage="read-write"/>
- <id access="org.jvnet.hyperjaxb2.runtime.hibernate.accessor.CheckingPropertyAccessor"
- name="Hjid"
- type="org.hibernate.type.LongType"
- unsaved-value="null">
- <column name="stepid" not-null="true"/>
- <generator class="native"/>
- </id>
- <discriminator formula="'magoffin.matt.ieat.domain.RecipeStep'"
- type="org.hibernate.type.StringType"/>
- <property access="org.jvnet.hyperjaxb2.runtime.hibernate.accessor.CheckingPropertyAccessor"
- name="Value">
- <column name="Value_"/>
- <type name="org.hibernate.type.StringType"/>
- </property>
- <subclass discriminator-value="magoffin.matt.ieat.domain.RecipeStep"
- name="magoffin.matt.ieat.domain.impl.RecipeStepImpl"/>
- </class>
- </hibernate-mapping>
|