source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/PatientCorrelationDAO/src/gov/hhs/fha/nhinc/patientcorrelation/model/CorrelatedIdentifiers.java@ 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.5 KB
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6package gov.hhs.fha.nhinc.patientcorrelation.model;
7
8/**
9 *
10 * @author svalluripalli
11 */
12public class CorrelatedIdentifiers {
13 private Long correlationId;
14 private String patientAssigningAuthorityId;
15 private String patientId;
16 private String CorrelatedPatientAssigningAuthorityId;
17 private String CorrelatedPatientId;
18
19 public String getCorrelatedPatientAssigningAuthorityId() {
20 return CorrelatedPatientAssigningAuthorityId;
21 }
22
23 public void setCorrelatedPatientAssigningAuthorityId(String CorrelatedPatientAssigningAuthority) {
24 this.CorrelatedPatientAssigningAuthorityId = CorrelatedPatientAssigningAuthority;
25 }
26
27 public String getCorrelatedPatientId() {
28 return CorrelatedPatientId;
29 }
30
31 public void setCorrelatedPatientId(String CorrelatedPatientId) {
32 this.CorrelatedPatientId = CorrelatedPatientId;
33 }
34
35 public Long getCorrelationId() {
36 return correlationId;
37 }
38
39 public void setCorrelationId(Long correlationId) {
40 this.correlationId = correlationId;
41 }
42
43 public String getPatientAssigningAuthorityId() {
44 return patientAssigningAuthorityId;
45 }
46
47 public void setPatientAssigningAuthorityId(String patientAssigningAuthority) {
48 this.patientAssigningAuthorityId = patientAssigningAuthority;
49 }
50
51 public String getPatientId() {
52 return patientId;
53 }
54
55 public void setPatientId(String patientId) {
56 this.patientId = patientId;
57 }
58}
Note: See TracBrowser for help on using the repository browser.