<?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 Oct 23, 2017 4:25:07 PM by Hibernate Tools 3.5.0.Final -->
<hibernate-mapping>
    <class name="hibernate.Jouer" table="JOUER" schema="CINEMA">
        <composite-id name="id" class="hibernate.JouerId">
            <key-property name="numInd" type="big_decimal">
                <column name="NUM_IND" precision="22" scale="0" />
            </key-property>
            <key-property name="numFilm" type="big_decimal">
                <column name="NUM_FILM" precision="22" scale="0" />
            </key-property>
            <key-property name="role" type="string">
                <column name="ROLE" length="30" />
            </key-property>
        </composite-id>
        <many-to-one name="film" class="hibernate.Film" update="false" insert="false" fetch="select">
            <column name="NUM_FILM" precision="22" scale="0" not-null="true" />
        </many-to-one>
        <many-to-one name="individu" class="hibernate.Individu" update="false" insert="false" fetch="select">
            <column name="NUM_IND" precision="22" scale="0" not-null="true" />
        </many-to-one>
    </class>
</hibernate-mapping>
