<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping
PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
<hibernate-mapping>
<class
name="org.hibernate.auction.model.Category"
table="CATEGORY">
<id
name="id"
column="CATEGORY_ID"
type="long">
<generator class="native"/>
</id>
<property
name="name"
column="NAME"
type="string"/>
</class>
</hibernate-mapping>
|