source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/PatientCorrelationDAO/conf/CorrelatedIdentifers.hbm.xml@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 1.1 KB
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 Document : CorrelatedIdentifers.hbm.xml
7 Created on : January 27, 2009, 3:57 PM
8 Author : svalluripalli
9 Description:
10 Purpose of the document follows.
11-->
12<hibernate-mapping package="gov.hhs.fha.nhinc.patientcorrelation.model">
13 <class name="CorrelatedIdentifiers" table="correlatedidentifiers">
14 <id name="correlationId" column="correlationid" type="long">
15 <generator class="increment" />
16 </id>
17 <property name="patientAssigningAuthorityId" column="PatientAssigningAuthorityId" type="string" length="45" not-null="true" />
18 <property name="patientId" column="PatientId" type="string" length="45" not-null="true" />
19 <property name="correlatedPatientAssigningAuthorityId" column="CorrelatedPatientAssigningAuthorityId" type="string" length="45" not-null="true" />
20 <property name="correlatedPatientId" column="CorrelatedPatientId" type="string" length="45" not-null="true" />
21 </class>
22
23</hibernate-mapping>
Note: See TracBrowser for help on using the repository browser.