source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Adapters/General/MpiLib/src/gov/hhs/fha/nhinc/mpilib/Address.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.2 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.mpilib;
7
8import org.apache.commons.logging.Log;
9import org.apache.commons.logging.LogFactory;
10
11/**
12 *
13 * @author dunnek
14 */
15public class Address
16{
17 private static Log log = LogFactory.getLog(Address.class);
18 private String street1 = "";
19 private String street2 = "";
20 private String city = "";
21 private String state = "";
22 private String zip = "";
23
24 public String getStreet1()
25 {
26 return street1;
27 }
28 public void setStreet1(String value)
29 {
30 street1 = value;
31 }
32 public void setStreet2(String value)
33 {
34 street2 = value;
35 }
36
37 public String getStreet2()
38 {
39 return street2;
40 }
41 public void setCity(String value)
42 {
43 city = value;
44 }
45 public String getCity()
46 {
47 return city;
48 }
49 public void setState(String value)
50 {
51 state = value;
52 }
53 public String getState()
54 {
55 return state;
56 }
57 public void setZip(String value)
58 {
59 zip = value;
60 }
61 public String getZip()
62 {
63 return zip;
64 }
65}
Note: See TracBrowser for help on using the repository browser.