Mapping.hbm.xml 831 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
  3. <hibernate-mapping package="id.co.hanoman.service.config">
  4. <class name="Mapping" table="mapping" lazy="false" >
  5. <id name="id" column="id" type="string" length="256"/>
  6. <property name="description" column="description" type="string" length="32700" not-null="false"/>
  7. <property name="modifiedBy" column="modified_by" type="string" length="64" not-null="false"/>
  8. <property name="timestamp" column="timestamp" type="java.util.Calendar" not-null="false"/>
  9. <bag name="mappingGroups" cascade="all-delete-orphan">
  10. <key column="mapping_id"/>
  11. <one-to-many class="MappingGroup"/>
  12. </bag>
  13. </class>
  14. </hibernate-mapping>