source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Adapters/General/MpiLib/src/gov/hhs/fha/nhinc/mpilib/Identifier.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: 982 bytes
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5package gov.hhs.fha.nhinc.mpilib;
6
7import org.apache.commons.logging.Log;
8import org.apache.commons.logging.LogFactory;
9
10/**
11 *
12 * @author rayj
13 */
14public class Identifier implements java.io.Serializable {
15 private static Log log = LogFactory.getLog(Identifier.class);
16 static final long serialVersionUID = -4713959967816233116L;
17
18 public Identifier() {
19 }
20
21 public Identifier(String id, String organizationId)
22 {
23 this.id = id;
24 this.organizationId = organizationId;
25 }
26
27 private String id = "";
28 private String organizationId = "";
29
30 public String getOrganizationId()
31 {
32 return organizationId;
33 }
34 public void setOrganizationId(String id)
35 {
36 organizationId = id;
37 }
38 public String getId() {
39 return id;
40 }
41
42 public void setId(String id) {
43 this.id = id;
44 }
45
46
47
48}
Note: See TracBrowser for help on using the repository browser.