Alternatively, a foreign key with a unique constraint, from Employee to Person, may be expressed as:
Code:
<many-to-one name="person" class="Person" column="PERSON_ID" unique="true"/>
And this association may be made bidirectional by adding the following to the Person mapping:
Code:
<one-to-one name"employee" class="Employee" property-ref="person"/>
Your database schema may have lead the tool to believe Borrower <--> GovernmentMonitoring is a bidirectional relationship. If it is, then the tools is actually correct.