Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
  3. "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
  4. <hibernate-mapping>
  5.     <class name="test.oracle.xml.XMLBean" table="J_TEST">
  6.         <id name="id" type="long">
  7.             <column name="id" precision="12" scale="0" />
  8.             <generator class="increment"></generator>
  9.         </id>
  10.         <property name="xmlDoc" type="test.oracle.xml.OracleXMLType">
  11.             <column name="j_xml" />
  12.         </property>
  13.         </class>
  14. </hibernate-mapping>