source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Common/AssigningAuthoritiesToHomeCommunityMappingDAO/src/gov/hhs/fha/nhinc/common/connectionmanager/model/AssigningAuthorityToHomeCommunityMapping.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: 909 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.common.connectionmanager.model;
7
8/**
9 *
10 * @author svalluripalli
11 */
12public class AssigningAuthorityToHomeCommunityMapping {
13 private Long id;
14 private String assigningAuthorityId = "";
15 private String homeCommunityId = "";
16
17 public Long getId(){
18 return id;
19 }
20
21 public void setId(Long id){
22 this.id = id;
23 }
24
25 public String getAssigningAuthorityId() {
26 return assigningAuthorityId;
27 }
28
29 public void setAssigningAuthorityId(String assigningAuthorityId) {
30 this.assigningAuthorityId = assigningAuthorityId;
31 }
32
33 public String getHomeCommunityId() {
34 return homeCommunityId;
35 }
36
37 public void setHomeCommunityId(String homeCommunityId) {
38 this.homeCommunityId = homeCommunityId;
39 }
40
41}
Note: See TracBrowser for help on using the repository browser.