<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!-- Generated 2008. 9. 1 ???? 1:00:43 by Hibernate Tools 3.2.1.GA -->
<hibernate-mapping>
	<class name="anyframe.sample.model.unidirection.generator.CountryWithIdentity"
		table="COUNTRY_IDENTITY" lazy="true" schema="PUBLIC">
		<id name="countryCode" column="COUNTRY_CODE" type="int">
			<generator class="identity" />
		</id>
		<property name="countryId" type="string">
			<column name="COUNTRY_ID" length="2" not-null="true" />
		</property>
		<property name="countryName" type="string">
			<column name="COUNTRY_NAME" length="50" not-null="true" />
		</property>
	</class>
</hibernate-mapping>

