| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?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.SystemImpl"
- table="System"
- >
- <cache usage="read-write" />
- <id
- name="systemId"
- column="systemId"
- type="java.lang.Integer"
- unsaved-value="null"
- >
- <generator class="assigned">
- <!--
- To add non XDoclet generator parameters, create a file named
- hibernate-generator-params-SystemImpl.xml
- containing the additional parameters and place it in your merge dir.
- -->
- </generator>
- </id>
- <property
- name="value"
- type="java.lang.String"
- update="true"
- insert="true"
- column="value"
- length="32"
- not-null="true"
- unique="true"
- />
- <!--
- To add non XDoclet property mappings, create a file named
- hibernate-properties-SystemImpl.xml
- containing the additional properties and place it in your merge dir.
- -->
- </class>
- </hibernate-mapping>
|