Ticket #713: ConceptWord.hbm.xml
| File ConceptWord.hbm.xml, 0.8 kB (added by akollegger, 8 months ago) |
|---|
| Line | |
|---|---|
| 1 | <?xml version="1.0"?> |
| 2 | <!DOCTYPE hibernate-mapping PUBLIC |
| 3 | "-//Hibernate/Hibernate Mapping DTD 3.0//EN" |
| 4 | "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" > |
| 5 | |
| 6 | <hibernate-mapping package="org.openmrs"> |
| 7 | |
| 8 | <class name="ConceptWord" table="concept_word"> |
| 9 | |
| 10 | <composite-id> |
| 11 | <key-many-to-one name="concept" column="concept_id" |
| 12 | class="Concept" /> |
| 13 | <key-property name="word" type="java.lang.String" length="255" /> |
| 14 | <key-property name="synonym" type="java.lang.String" length="255" /> |
| 15 | <key-property name="locale" type="java.util.Locale" length="255" /> |
| 16 | </composite-id> |
| 17 | |
| 18 | <many-to-one name="concept" column="concept_id" class="Concept" |
| 19 | update="false" insert="false" |
| 20 | outer-join="true" /> |
| 21 | |
| 22 | </class> |
| 23 | |
| 24 | </hibernate-mapping> |
Download in other formats:
Powered by Trac 0.10.5
By Edgewall Software.
Visit the Trac open source project at
http://trac.edgewall.com/