source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/PatientCorrelationDAO/src/gov/hhs/fha/nhinc/patientcorrelation/model/QualifiedPatientIdentifier.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: 682 bytes
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 rayj
11 */
12public class QualifiedPatientIdentifier {
13 private String assigningAuthorityId;
14 private String patientId;
15
16 public String getAssigningAuthorityId() {
17 return assigningAuthorityId;
18 }
19
20 public void setAssigningAuthority(String assigningAuthorityId) {
21 this.assigningAuthorityId = assigningAuthorityId;
22 }
23
24 public String getPatientId() {
25 return patientId;
26 }
27
28 public void setPatientId(String patientId) {
29 this.patientId = patientId;
30 }
31}
Note: See TracBrowser for help on using the repository browser.