<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<classname="com.hibernate.rqq.Husband_XML"table="husband_xml">
<idname="id">
<generator class="foreign">
<paramname="property">wife</param>
</generator>
</id>
<property name="name"/>
<one-to-one name="wife" constrained="true" />
</class>
</hibernate-mapping>
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<classname="com.hibernate.rqq.Wife_XML" table="wife_xml">
<idname="id">
<generator class="native" />
</id>
<property name="name" />
</class>
</hibernate-mapping>